/* ========================================
   PREMIUM FIRE SAFETY WEBSITE
   Fattan Safetindo Alarm
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* ========================================
   ROOT VARIABLES - RED & WHITE THEME
   ======================================== */

:root {
    /* Colors - Red & White Theme */
    --primary-red: #DC143C;
    --secondary-red: #B22222;
    --dark-red: #8B0000;
    --light-red: #FF6B6B;
    
    /* Neutral Colors */
    --white: #FFFFFF;
    --off-white: #F8F9FA;
    --light-gray: #ECF0F1;
    --gray: #95A5A6;
    --dark-gray: #34495E;
    --black: #2C3E50;
    
    /* Background */
    --bg-primary: #FFFFFF;
    --bg-secondary: #F8F9FA;
    --bg-tertiary: #ECF0F1;
    
    /* Text */
    --text-primary: #2C3E50;
    --text-secondary: #7F8C8D;
    --text-light: #95A5A6;
    
    /* Border */
    --border-color: #ECF0F1;
    
    /* Effects */
    --shadow: 0 5px 20px rgba(220, 20, 60, 0.1);
    --shadow-hover: 0 10px 40px rgba(220, 20, 60, 0.2);
    --shadow-large: 0 20px 60px rgba(0, 0, 0, 0.15);
    
    /* Gradients */
    --gradient-red: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    --gradient-light: linear-gradient(135deg, #FFFFFF, #F8F9FA);
}

[data-theme="dark"] {
    /* Dark Mode - Red & Dark Gray */
    --bg-primary: #1A1A2E;
    --bg-secondary: #16213E;
    --bg-tertiary: #0F3460;
    
    --text-primary: #EAEAEA;
    --text-secondary: #AAA;
    --text-light: #888;
    
    --border-color: #2C3E50;
    
    --shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    --shadow-hover: 0 10px 40px rgba(0, 0, 0, 0.7);
    
    --white: #2C3E50;
    --off-white: #16213E;
    --light-gray: #0F3460;
}

/* ========================================
   GLOBAL STYLES
   ======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    overflow-x: hidden;
    transition: background 0.3s ease, color 0.3s ease;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   LOADING SCREEN
   ======================================== */

.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-red);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    text-align: center;
    color: white;
}

.fire-icon {
    font-size: 4rem;
    animation: fireFlicker 1s infinite;
}

@keyframes fireFlicker {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.loader h2 {
    font-size: 1.5rem;
    margin: 1rem 0;
}

.loading-bar {
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    overflow: hidden;
    margin: 0 auto;
}

.loading-bar::after {
    content: '';
    display: block;
    width: 50%;
    height: 100%;
    background: white;
    border-radius: 10px;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(300%); }
}

/* ========================================
   NAVIGATION
   ======================================== */

.navbar {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.8rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
    height: 70px;
    display: flex;
    align-items: center;
}

[data-theme="dark"] .navbar {
    background: rgba(26, 26, 46, 0.95);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    height: 65px;
}

.navbar .container {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 1rem;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.logo-img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: contain;
    padding: 5px;
    background: white;
    box-shadow: var(--shadow);
    flex-shrink: 0;
    display: block;
}

[data-theme="dark"] .logo-img {
    background: var(--bg-tertiary);
    border: 2px solid var(--primary-red);
}

.brand-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1px;
}

.brand-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-red);
    letter-spacing: -0.5px;
    line-height: 1.1;
    white-space: nowrap;
}

.brand-tagline {
    font-size: 0.65rem;
    color: var(--text-secondary);
    line-height: 1.1;
    white-space: nowrap;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.2rem;
    margin: 0 auto;
    padding: 0 0.8rem;
}
.nav-menu a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-menu a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
    white-space: nowrap;
    padding: 0.3rem 0;
    font-size: 0.9rem;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-red);
}

/* Theme Toggle */
.theme-toggle {
    background: transparent;
    border: 2px solid var(--primary-red);
    color: var(--primary-red);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    flex-shrink: 0;
    margin-left: 0.5rem;
}
.theme-toggle:hover {
    background: var(--primary-red);
    transform: rotate(20deg);
}

.theme-toggle:hover .theme-icon {
    filter: brightness(0) invert(1);
}

.theme-icon {
    font-size: 1.2rem;
    position: absolute;
    transition: all 0.3s ease;
}

.theme-icon.sun {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

.theme-icon.moon {
    opacity: 0;
    transform: rotate(180deg) scale(0);
}

[data-theme="dark"] .theme-icon.sun {
    opacity: 0;
    transform: rotate(-180deg) scale(0);
}

[data-theme="dark"] .theme-icon.moon {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-red);
    transition: 0.3s;
    border-radius: 3px;
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #FFF 0%, #FFF5F5 100%);
    padding: 100px 0 50px;
}

[data-theme="dark"] .hero {
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.hero-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(220, 20, 60, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(220, 20, 60, 0.1) 0%, transparent 50%);
    animation: bgFloat 20s ease-in-out infinite;
}

@keyframes bgFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20px, -20px) scale(1.1); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background: var(--gradient-red);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    animation: slideDown 1s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--primary-red);
    margin-bottom: 1rem;
    animation: slideUp 1s ease 0.2s both;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.glitch {
    position: relative;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    animation: slideUp 1s ease 0.4s both;
}

.hero-features {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    animation: slideUp 1s ease 0.6s both;
}

.feature-badge {
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--text-primary);
    box-shadow: var(--shadow);
    font-weight: 500;
}

[data-theme="dark"] .feature-badge {
    background: var(--bg-tertiary);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    animation: slideUp 1s ease 0.8s both;
}

.hero-image {
    position: relative;
    height: 500px;
}

.floating-card {
    position: absolute;
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-large);
    animation: float 3s ease-in-out infinite;
}

[data-theme="dark"] .floating-card {
    background: var(--bg-tertiary);
}

.floating-card:nth-child(1) {
    top: 0;
    right: 100px;
    width: 200px;
}

.floating-card:nth-child(2) {
    top: 150px;
    right: 0;
    width: 180px;
    animation-delay: 0.5s;
}

.floating-card:nth-child(3) {
    bottom: 50px;
    right: 120px;
    width: 190px;
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.floating-card .card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.floating-card h3 {
    font-size: 1.1rem;
    color: var(--primary-red);
    margin-bottom: 0.5rem;
}

.floating-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--text-secondary);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, -10px); }
}

.scroll-arrow {
    font-size: 1.5rem;
    color: var(--primary-red);
}

/* ========================================
   BUTTONS
   ======================================== */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient-red);
    color: white;
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.btn-primary.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(220, 20, 60, 0.7); }
    50% { box-shadow: 0 0 0 20px rgba(220, 20, 60, 0); }
}

.btn-secondary {
    background: white;
    color: var(--primary-red);
    border: 2px solid var(--primary-red);
}

.btn-secondary:hover {
    background: var(--primary-red);
    color: white;
}

[data-theme="dark"] .btn-secondary {
    background: var(--bg-tertiary);
}

.btn-icon {
    font-size: 1.2rem;
}

/* ========================================
   STATS SECTION
   ======================================== */

.stats-section {
    padding: 4rem 0;
    background: var(--bg-primary);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

[data-theme="dark"] .stat-card {
    background: var(--bg-tertiary);
}

.stat-card:hover {
    transform: translateY(-10px);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.counter {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-red);
    margin-bottom: 0.5rem;
}

.stat-card p {
    color: var(--text-secondary);
    font-weight: 500;
}

/* ========================================
   SERVICES SECTION
   ======================================== */

.services-section {
    padding: 5rem 0;
    background: var(--bg-secondary);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-badge {
    display: inline-block;
    background: rgba(220, 20, 60, 0.1);
    color: var(--primary-red);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

[data-theme="dark"] .service-card {
    background: var(--bg-tertiary);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-red);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.service-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(220, 20, 60, 0.1);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.4rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.service-card > p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.service-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-list li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.service-link {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.service-link:hover {
    gap: 1rem;
}

/* ========================================
   BRANDS SECTION - WITH IMAGES
   ======================================== */

.brands-section {
    padding: 4rem 0;
    background: white;
    overflow: hidden;
}

[data-theme="dark"] .brands-section {
    background: var(--bg-primary);
}

.brands-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.brands-slider {
    display: flex;
    gap: 3rem;
    animation: brandSlide 30s linear infinite;
    padding: 2rem 0;
}

@keyframes brandSlide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.brand-logo-item {
    min-width: 200px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 15px;
    padding: 1rem 2rem;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

[data-theme="dark"] .brand-logo-item {
    background: var(--bg-tertiary);
}

.brand-logo-item:hover {
    transform: translateY(-5px);
}

.brand-logo {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s;
}

.brand-logo-item:hover .brand-logo {
    filter: grayscale(0%);
    opacity: 1;
}

[data-theme="dark"] .brand-logo {
    filter: grayscale(100%) invert(1);
}

[data-theme="dark"] .brand-logo-item:hover .brand-logo {
    filter: grayscale(0%) invert(0);
}

/* HAMBURGER */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    flex-shrink: 0;
    margin-left: 0.5rem;
}

.hamburger span {
    width: 22px;
    height: 2px;
    background: var(--primary-red);
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ========================================
   WHY US SECTION
   ======================================== */

.why-us-section {
    padding: 5rem 0;
    background: var(--bg-primary);
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.why-us-image {
    position: relative;
}

.image-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-large);
}

.image-card img {
    width: 100%;
    height: auto;
    display: block;
}

.why-us-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin: 1rem 0 2rem;
}

.advantages-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.advantage-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.advantage-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-red);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    flex-shrink: 0;
    box-shadow: var(--shadow);
}

.advantage-text h4 {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.advantage-text p {
    color: var(--text-secondary);
}

/* ========================================
   CTA SECTION
   ======================================== */

.cta-section {
    padding: 5rem 0;
    background: var(--gradient-red);
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-whatsapp {
    background: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    background: #1DA851;
    transform: translateY(-3px);
}

.btn-phone {
    background: white;
    color: var(--primary-red);
}

.btn-phone:hover {
    background: var(--off-white);
    transform: translateY(-3px);
}



/* ========================================
   PAGE HEADERS
   ======================================== */

.page-header-about,
.page-header-products,
.page-header-projects,
.page-header-services,
.page-header-contact {
    background: var(--gradient-red);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.page-header-about h1,
.page-header-products h1,
.page-header-projects h1,
.page-header-services h1,
.page-header-contact h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* ========================================
   PROFILE CAROUSEL (Tentang)
   ======================================== */

.profile-carousel-section {
    padding: 5rem 0;
}

.carousel-wrapper {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}

.profile-carousel {
    position: relative;
    min-height: 600px;
    overflow: hidden;
    border-radius: 20px;
}

.profile-slide {
    position: absolute;
    width: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.5s ease;
}

.profile-slide.active {
    opacity: 1;
    transform: translateX(0);
    position: relative;
}

.slide-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-large);
}

[data-theme="dark"] .slide-content {
    background: var(--bg-tertiary);
}

.slide-content-full {
    grid-template-columns: 1fr;
    text-align: center;
}

.slide-image img {
    width: 100%;
    border-radius: 15px;
}

.slide-badge {
    display: inline-block;
    background: rgba(220, 20, 60, 0.1);
    color: var(--primary-red);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.company-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.company-stat {
    text-align: center;
    padding: 1.5rem;
    background: var(--bg-secondary);
    border-radius: 15px;
}

.company-stat h3 {
    font-size: 2rem;
    color: var(--primary-red);
}

.vision-mission-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.vm-card-slide {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: 15px;
}

.vm-icon-slide {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.mission-list {
    list-style: none;
    padding: 0;
}

.mission-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.mission-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-weight: bold;
}

.certificates-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.cert-card {
    text-align: center;
    transition: transform 0.3s;
}

.cert-card:hover {
    transform: translateY(-10px);
}

.cert-image {
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 1rem;
    box-shadow: var(--shadow);
}

.cert-image img {
    width: 100%;
    height: auto;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-red);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
}

.carousel-nav:hover {
    background: var(--secondary-red);
    transform: translateY(-50%) scale(1.1);
}

.carousel-nav.prev {
    left: -25px;
}

.carousel-nav.next {
    right: -25px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    background: #ddd;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.dot:hover {
    background: var(--gray);
}

.dot.active {
    background: var(--primary-red);
    width: 35px;
    border-radius: 10px;
}

/* ========================================
   SCOPE SECTION
   ======================================== */

.scope-section {
    padding: 5rem 0;
    background: var(--bg-secondary);
}

.scope-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.scope-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s;
}

[data-theme="dark"] .scope-card {
    background: var(--bg-tertiary);
}

.scope-card:hover {
    transform: translateY(-10px);
}

.scope-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* ========================================
   COVERAGE SECTION
   ======================================== */

.coverage-section {
    padding: 5rem 0;
}

.coverage-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.coverage-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.coverage-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-secondary);
    border-radius: 10px;
}

.coverage-icon {
    font-size: 2rem;
}

.coverage-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-large);
}

/* ========================================
   VALUES SECTION
   ======================================== */

.values-section {
    padding: 5rem 0;
    background: var(--bg-secondary);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.value-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    position: relative;
    box-shadow: var(--shadow);
}

[data-theme="dark"] .value-card {
    background: var(--bg-tertiary);
}

.value-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(220, 20, 60, 0.1);
}

/* ========================================
   PRODUCTS PAGE
   ======================================== */

.filter-section {
    padding: 2rem 0;
    background: white;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 80px;
    z-index: 100;
}

[data-theme="dark"] .filter-section {
    background: var(--bg-secondary);
}

.filter-tabs {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.filter-tab {
    padding: 0.8rem 2rem;
    border: 2px solid var(--primary-red);
    background: transparent;
    color: var(--primary-red);
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.filter-tab:hover,
.filter-tab.active {
    background: var(--primary-red);
    color: white;
}

.products-section {
    padding: 5rem 0;
}

.product-category {
    margin-bottom: 5rem;
    transition: all 0.3s;
}

.category-header {
    text-align: center;
    margin-bottom: 3rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    position: relative;
}

[data-theme="dark"] .product-card {
    background: var(--bg-tertiary);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-red);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 1;
}

.product-image {
    height: 250px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-content {
    padding: 2rem;
}

.product-content h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.product-features {
    list-style: none;
    margin: 1.5rem 0;
}

.product-features li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.product-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-red);
}

.btn-product {
    padding: 0.7rem 1.5rem;
    background: var(--primary-red);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-product:hover {
    background: var(--secondary-red);
}

/* ========================================
   GALLERY CAROUSEL (Proyek)
   ======================================== */

.gallery-carousel-section {
    padding: 5rem 0;
}

.gallery-carousel-wrapper {
    position: relative;
    max-width: 1100px;
    margin: 2rem auto;
}

.gallery-carousel {
    position: relative;
    height: 600px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: var(--shadow-large);
}

.gallery-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s;
}

.gallery-slide.active {
    opacity: 1;
    position: relative;
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 3rem 2rem 2rem;
}

.gallery-caption h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(220, 20, 60, 0.9);
    color: white;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
}

.gallery-nav:hover {
    background: var(--primary-red);
    transform: translateY(-50%) scale(1.1);
}

.gallery-nav.prev {
    left: 20px;
}

.gallery-nav.next {
    right: 20px;
}

.gallery-indicators {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.gallery-dot {
    width: 15px;
    height: 15px;
    background: #ddd;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.gallery-dot:hover {
    background: var(--gray);
}

.gallery-dot.active {
    background: var(--primary-red);
    width: 40px;
    border-radius: 10px;
}

/* ========================================
   PROJECTS GRID
   ======================================== */

.projects-grid-section {
    padding: 5rem 0;
    background: var(--bg-secondary);
}

.filter-projects {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.8rem 2rem;
    border: 2px solid var(--primary-red);
    background: white;
    color: var(--primary-red);
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

[data-theme="dark"] .filter-btn {
    background: var(--bg-tertiary);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-red);
    color: white;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.project-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

[data-theme="dark"] .project-card {
    background: var(--bg-tertiary);
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.project-image {
    height: 250px;
    position: relative;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    top: 15px;
    left: 15px;
}

.project-category {
    background: var(--primary-red);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.project-info {
    padding: 2rem;
}

.project-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.project-location {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.project-desc {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ========================================
   CLIENTS SECTION
   ======================================== */

.clients-section {
    padding: 5rem 0;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.client-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    font-weight: 600;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

[data-theme="dark"] .client-item {
    background: var(--bg-tertiary);
}

.client-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

/* ========================================
   CONTACT PAGE STYLES
   ======================================== */

.quick-contact-section {
    padding: 4rem 0;
    background: var(--bg-secondary);
}

.quick-contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.quick-contact-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

[data-theme="dark"] .quick-contact-card {
    background: var(--bg-tertiary);
}

.quick-contact-card:hover {
    transform: translateY(-10px);
}

.quick-contact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.quick-contact-card h3 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.quick-contact-card p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.quick-contact-link {
    display: block;
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
    margin: 0.5rem 0;
    transition: color 0.3s;
}

.quick-contact-link:hover {
    color: var(--dark-red);
}

.contact-main-section {
    padding: 5rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-form-wrapper,
.contact-info-wrapper {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

[data-theme="dark"] .contact-form-wrapper,
[data-theme="dark"] .contact-info-wrapper {
    background: var(--bg-tertiary);
}

.contact-form-wrapper h2,
.contact-info-wrapper h2 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.form-subtitle {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s;
    background: var(--bg-primary);
    color: var(--text-primary);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-red);
}

.btn-submit {
    align-self: flex-start;
}

.form-note {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 1rem;
}

.contact-info-card {
    display: flex;
    gap: 1rem;
    padding: 2rem;
    background: var(--bg-secondary);
    border-radius: 15px;
    margin-bottom: 1.5rem;
}

.contact-info-card.highlight {
    background: rgba(220, 20, 60, 0.1);
    border-left: 4px solid var(--primary-red);
}

.info-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.info-content h3 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.info-content p {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.info-link {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
}

.highlight-text {
    color: var(--primary-red);
    font-weight: 600;
}

.social-media-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.social-media-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-primary);
    text-decoration: none;
    padding: 0.5rem;
    border-radius: 8px;
    transition: background 0.3s;
}

.social-media-link:hover {
    background: var(--bg-primary);
}

.maps-section {
    padding: 5rem 0;
    background: var(--bg-secondary);
}

.maps-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-large);
}

.faq-contact-section {
    padding: 5rem 0;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

[data-theme="dark"] .faq-item {
    background: var(--bg-tertiary);
}

.faq-question {
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    color: var(--text-primary);
    font-size: 1.1rem;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 2rem 2rem;
    color: var(--text-secondary);
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

/* ========================================
   SERVICES/PRODUCTS PAGE STYLES
   ======================================== */

.main-services-section,
.detailed-services-section,
.process-timeline-section,
.why-choose-services {
    padding: 5rem 0;
}

.main-services-section {
    background: var(--bg-secondary);
}

.main-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.main-service-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
    text-align: center;
}

[data-theme="dark"] .main-service-card {
    background: var(--bg-tertiary);
}

.main-service-card:hover {
    transform: translateY(-10px);
}

.service-icon-large {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.service-includes {
    text-align: left;
    margin: 2rem 0;
}

.service-includes h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.service-includes ul {
    list-style: none;
}

.service-includes li {
    padding: 0.3rem 0;
    color: var(--text-secondary);
}

.service-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin: 1.5rem 0;
}

.benefit-badge {
    background: rgba(220, 20, 60, 0.1);
    color: var(--primary-red);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.btn-service-contact {
    display: inline-block;
    background: var(--primary-red);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-service-contact:hover {
    background: var(--dark-red);
    transform: translateY(-3px);
}

.service-category-detail {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: var(--shadow);
}

[data-theme="dark"] .service-category-detail {
    background: var(--bg-tertiary);
}

.category-detail-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    background: var(--bg-secondary);
}

.category-icon {
    font-size: 3rem;
}

.category-title h3 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.category-title p {
    color: var(--text-secondary);
}

.category-detail-content {
    padding: 2rem;
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.detail-item h4 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.detail-item p {
    color: var(--text-secondary);
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-red);
}

.timeline-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.timeline-number {
    width: 60px;
    height: 60px;
    background: var(--primary-red);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.timeline-content {
    flex: 1;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

[data-theme="dark"] .timeline-content {
    background: var(--bg-tertiary);
}

.timeline-content h3 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.why-choose-item {
    text-align: center;
    padding: 2rem;
}

.why-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.why-choose-item h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.why-choose-item p {
    color: var(--text-secondary);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .main-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .quick-contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
    
    [data-theme="dark"] .nav-menu {
        background: var(--bg-secondary);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-image {
        display: none;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .why-us-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .main-services-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .quick-contact-grid {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .clients-grid {
        grid-template-columns: 1fr;
    }
    
    .coverage-content {
        grid-template-columns: 1fr;
    }
    
    .coverage-list {
        grid-template-columns: 1fr;
    }
    
    .vision-mission-cards {
        grid-template-columns: 1fr;
    }
    
    .certificates-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .scope-grid {
        grid-template-columns: 1fr;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
    }
    
    .detail-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .brands-slider {
        gap: 1rem;
    }
    
    .brand-logo-item {
        min-width: 150px;
    }
    
    .certificates-grid {
        grid-template-columns: 1fr;
    }
    
    .company-stats {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   FOOTER STYLES - COMPLETE & FIXED
   ======================================== */

.footer {
    background: var(--black);
    color: white;
    padding: 3rem 0 1.5rem;
    margin-top: auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

/* FOOTER BRAND */
.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.footer-brand .logo-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: contain;
    padding: 1px;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.footer-brand .logo-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 0;
    
}

.footer-brand h3 {
    font-size: 1.1rem;
    color: white;
    font-weight: 700;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 0.9rem;
}

/* SOCIAL LINKS */
.social-links {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.social-icon {
    width: 22px;
    height: 22px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    overflow: hidden;
    padding: 5px;
}

.social-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--primary-red);
    transform: translateY(-3px);
}

/* FOOTER SECTIONS */
.footer-section h3 {
    color: white;
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-section a:hover {
    color: var(--primary-red);
}

/* CONTACT INFO FOOTER */
.contact-info-footer {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.4;
}

.info-item .info-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-item .info-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.info-item span {
    flex: 1;
}

/* FOOTER BOTTOM */
.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

/* ========================================
   RESPONSIVE FOOTER
   ======================================== */

@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 2.5rem 0 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-brand {
        justify-content: center;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-brand .logo-img {
        width: 60px;
        height: 60px;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .social-icon {
        width: 44px;
        height: 44px;
    }
    
    .social-icon img {
        width: 24px;
        height: 24px;
    }
    
    .contact-info-footer {
        align-items: center;
    }
    
    .info-item {
        justify-content: center;
        text-align: center;
        max-width: 300px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-content {
        gap: 1.5rem;
    }
    
    .footer-brand .logo-img {
        width: 50px;
        height: 50px;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
    }
    
    .social-icon img {
        width: 20px;
        height: 20px;
    }
    
    .info-item {
        font-size: 0.85rem;
    }
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-brand .logo-img {
        width: 45px;
        height: 45px;
    }
    
    .social-icon {
        width: 38px;
        height: 38px;
    }
    
    .social-icon img {
        width: 18px;
        height: 18px;
    }
    
    .contact-info-footer {
        gap: 0.6rem;
    }
    
    .info-item {
        font-size: 0.85rem;
    }
}

/* ========================================
   CTA + FOOTER CONTINUOUS BACKGROUND
   ======================================== */

.cta-footer-combo {
    position: relative;
    margin-top: 3rem;
    overflow: hidden;
}

/* Background untuk seluruh area CTA+Footer */
.cta-footer-combo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('foto-foto/ctafooter/tentang.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed; /* Efek parallax */
    z-index: -1;
}

/* Overlay gelap untuk readability */
.cta-footer-combo::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, 
        rgba(220, 20, 60, 0.9) 0%, 
        rgba(220, 20, 60, 0.85) 20%, 
        rgba(26, 26, 46, 0.9) 60%, 
        rgba(26, 26, 46, 0.95) 100%);
    z-index: -1;
}

/* CTA Section dalam combo */
.cta-footer-combo .combo-cta {
    position: relative;
    background: transparent !important;
    color: white;
    padding: 5rem 0;
    z-index: 1;
}

.cta-footer-combo .combo-cta .cta-content h2 {
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.cta-footer-combo .combo-cta .cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Footer dalam combo */
.cta-footer-combo .combo-footer {
    position: relative;
    background: transparent !important;
    color: white;
    padding: 3rem 0 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1;
}

/* Warna text dalam combo footer */
.cta-footer-combo .combo-footer h3,
.cta-footer-combo .combo-footer .footer-brand h3 {
    color: white;
}

.cta-footer-combo .combo-footer p,
.cta-footer-combo .combo-footer .footer-section a,
.cta-footer-combo .combo-footer .contact-info-footer,
.cta-footer-combo .combo-footer .info-item {
    color: rgba(255, 255, 255, 0.8);
}

.cta-footer-combo .combo-footer .footer-section a:hover {
    color: white;
    padding-left: 5px;
}

/* Social icons dalam combo */
.cta-footer-combo .combo-footer .social-icon {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-footer-combo .combo-footer .social-icon:hover {
    background: var(--primary-red);
    transform: translateY(-3px);
}

/* Footer bottom dalam combo */
.cta-footer-combo .combo-footer .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* ========================================
   VARIASI BACKGROUND UNTUK SETIAP HALAMAN
   ======================================== */

/* Untuk index.html (Home) */
.home-combo.cta-footer-combo::before {
    background-image: url('https://images.unsplash.com/photo-1617196034183-421b4917c92d?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
}

/* Untuk tentang.html */
.tentang-combo.cta-footer-combo::before {
    background-image: url('https://images.unsplash.com/photo-1542744095-fcf48d80b0fd?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
}

/* Untuk jasa.html */
.jasa-combo.cta-footer-combo::before {
    background-image: url('https://images.unsplash.com/photo-1581092160562-40aa08e78837?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
}

/* Untuk proyek.html */
.proyek-combo.cta-footer-combo::before {
    background-image: url('https://images.unsplash.com/photo-1497366216548-37526070297c?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
}

/* Untuk kontak.html */
.kontak-combo.cta-footer-combo::before {
    background-image: url('https://images.unsplash.com/photo-1552664730-d307ca884978?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
}

/* Dark mode adjustment */
[data-theme="dark"] .cta-footer-combo::after {
    background: linear-gradient(to bottom, 
        rgba(139, 0, 0, 0.9) 0%, 
        rgba(139, 0, 0, 0.85) 20%, 
        rgba(0, 0, 0, 0.9) 60%, 
        rgba(0, 0, 0, 0.95) 100%);
}

/* Responsive */
@media (max-width: 768px) {
    .cta-footer-combo::before {
        background-attachment: scroll; /* Nonaktifkan parallax di mobile */
    }
    
    .cta-footer-combo .combo-cta {
        padding: 3rem 0;
    }
}