/* ========================================
   PREMIUM COMPONENTS
   ======================================== */
.blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid rgba(212, 175, 55, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}
.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.3);
}

.whatsapp-float {
    position: fixed;
    bottom: 90px;
    right: 30px;
    z-index: 39;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
    animation: whatsappPulse 2s ease-in-out infinite;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}
@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7); }
}
.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: white;
    color: #075E54;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

.sticky-quote-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(30, 41, 59, 0.95));
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding: 12px 20px;
    z-index: 30;
    display: none;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}
.sticky-quote-bar.visible {
    display: block;
    transform: translateY(0);
}
/* Advanced Glassmorphism Header */
        .glassmorphism {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        /* ========================================
           ADVANCED HEADER/NAVIGATION STYLES
           ======================================== */
        .nav-container {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.88) 0%, rgba(248, 250, 252, 0.85) 50%, rgba(255, 255, 255, 0.9) 100%);
            backdrop-filter: blur(25px) saturate(180%);
            -webkit-backdrop-filter: blur(25px) saturate(180%);
            border-bottom: 1px solid rgba(212, 175, 55, 0.12);
            box-shadow: 
                0 4px 30px rgba(0, 0, 0, 0.06),
                0 0 0 1px rgba(255, 255, 255, 0.6) inset,
                0 1px 0 rgba(212, 175, 55, 0.1) bottom;
            position: relative;
        }

        /* Golden glow effect behind nav */
        .nav-glow {
            position: absolute;
            top: -50%;
            left: 50%;
            transform: translateX(-50%);
            width: 60%;
            height: 200%;
            background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
            pointer-events: none;
            z-index: -1;
        }

        .nav-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent 0%, #D4AF37 20%, #F0C419 50%, #D4AF37 80%, transparent 100%);
            background-size: 200% 100%;
            animation: shimmer 3s ease-in-out infinite;
            box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
        }

        @keyframes shimmer {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        .nav-link {
            position: relative;
            color: #374151;
            font-weight: 600;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            padding: 0.5rem 1rem;
            letter-spacing: 0.01em;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 4px;
            left: 50%;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #D4AF37, #F0C419);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            transform: translateX(-50%);
            border-radius: 2px;
            box-shadow: 0 0 8px rgba(212, 175, 55, 0.6);
        }

        .nav-link:hover {
            color: #D4AF37;
            text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
        }

        .nav-link:hover::after {
            width: 70%;
        }

        /* Active nav link */
        .nav-link.active {
            color: #D4AF37;
        }

        .nav-link.active::after {
            width: 60%;
        }

        /* Nav icons (search, notification) */
        .nav-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 10px;
            color: #6B7280;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            cursor: pointer;
        }

        .nav-icon:hover {
            background: rgba(212, 175, 55, 0.1);
            color: #D4AF37;
            transform: translateY(-2px);
        }

        .nav-icon::after {
            content: '';
            position: absolute;
            top: 8px;
            right: 8px;
            width: 8px;
            height: 8px;
            background: #D4AF37;
            border-radius: 50%;
            border: 2px solid white;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .nav-icon.has-notification::after {
            opacity: 1;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 1; }
            50% { transform: scale(1.2); opacity: 0.8; }
        }

        /* Nav divider */
        .nav-divider {
            width: 1px;
            height: 24px;
            background: linear-gradient(180deg, transparent, rgba(212, 175, 55, 0.3), transparent);
            margin: 0 8px;
        }

        .nav-logo {
            position: relative;
        }

        .nav-logo::after {
            content: '';
            position: absolute;
            right: -12px;
            top: 50%;
            transform: translateY(-50%);
            width: 4px;
            height: 4px;
            background: #D4AF37;
            border-radius: 50%;
            box-shadow: 0 0 10px rgba(212, 175, 55, 0.8);
        }

        .nav-logo span {
            background: linear-gradient(135deg, #D4AF37 0%, #F0AD4E 50%, #D4AF37 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 800;
            letter-spacing: 0.5px;
            text-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
        }

        /* Dropdown Enhancement */
        .nav-dropdown {
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(212, 175, 55, 0.2);
            box-shadow: 
                0 20px 50px rgba(0, 0, 0, 0.1),
                0 0 0 1px rgba(255, 255, 255, 0.8) inset;
            border-radius: 16px;
            overflow: hidden;
        }

        .nav-dropdown::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, #D4AF37, transparent);
        }

        .nav-dropdown a {
            color: #374151;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .nav-dropdown a::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 3px;
            background: linear-gradient(180deg, #D4AF37, #F0C419);
            transform: scaleY(0);
            transition: transform 0.3s ease;
        }

        .nav-dropdown a:hover {
            color: #D4AF37;
            background: linear-gradient(90deg, rgba(212, 175, 55, 0.08), transparent);
            padding-left: 1.25rem;
        }

        .nav-dropdown a:hover::before {
            transform: scaleY(1);
        }

        /* Premium CTA Button with Golden Shine */
        .nav-cta {
            background: linear-gradient(135deg, #D4AF37 0%, #F0C419 25%, #E5C158 50%, #F0C419 75%, #D4AF37 100%);
            background-size: 200% 100%;
            color: #0F172A;
            font-weight: 700;
            letter-spacing: 0.5px;
            border: none;
            position: relative;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 
                0 4px 15px rgba(212, 175, 55, 0.3),
                0 0 0 0 rgba(212, 175, 55, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.4);
        }

        .nav-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
            transition: left 0.5s ease;
        }

        .nav-cta::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, #fff, transparent);
            opacity: 0.5;
        }

        .nav-cta:hover {
            background-position: 100% 0;
            transform: translateY(-2px) scale(1.02);
            box-shadow: 
                0 10px 30px rgba(212, 175, 55, 0.4),
                0 0 30px rgba(212, 175, 55, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.5);
        }

        .nav-cta:hover::before {
            left: 100%;
        }

        /* CTA button icon */
        .nav-cta-icon {
            display: inline-flex;
            align-items: center;
            margin-left: 8px;
            transition: transform 0.3s ease;
        }

        .nav-cta:hover .nav-cta-icon {
            transform: translateX(4px);
        }

        /* Mobile Menu Enhancement */
        .nav-mobile-menu {
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(30px);
            border-bottom: 1px solid rgba(212, 175, 55, 0.2);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
        }

        .nav-mobile-toggle {
            color: #D4AF37;
            transition: all 0.3s ease;
        }

        .nav-mobile-toggle:hover {
            color: #F0AD4E;
            transform: scale(1.1);
        }

        /* Hamburger Animation */
        .hamburger-line {
            background: #D4AF37;
            transition: all 0.3s ease;
        }

        .nav-mobile-toggle.active .hamburger-line:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .nav-mobile-toggle.active .hamburger-line:nth-child(2) {
            opacity: 0;
        }

        .nav-mobile-toggle.active .hamburger-line:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

        /* Scroll Effect - Enhanced */
        .nav-scrolled {
            padding: 0.5rem 0;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(252, 252, 252, 0.92) 100%) !important;
            backdrop-filter: blur(30px) saturate(180%);
            -webkit-backdrop-filter: blur(30px) saturate(180%);
            box-shadow: 
                0 10px 40px rgba(0, 0, 0, 0.08),
                0 0 0 1px rgba(212, 175, 55, 0.15) inset,
                0 1px 0 rgba(212, 175, 55, 0.1) bottom;
        }

        .nav-scrolled::before {
            height: 3px;
        }

        /* Hide decorations when scrolled for cleaner look */
        .nav-scrolled .nav-decoration {
            opacity: 0;
            transform: scale(0.8);
        }

        .nav-scrolled .nav-glow {
            opacity: 0.3;
        }

        /* Decorative Elements - Premium */
        .nav-decoration {
            position: absolute;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
            pointer-events: none;
            transition: all 0.5s ease;
        }

        .nav-decoration-left {
            left: -150px;
            top: -100px;
            animation: float 6s ease-in-out infinite;
        }

        .nav-decoration-right {
            right: -150px;
            bottom: -100px;
            animation: float 6s ease-in-out infinite reverse;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(5deg); }
        }

        /* Nav badge/tag */
        .nav-badge {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            padding: 2px 8px;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(240, 196, 25, 0.1));
            border: 1px solid rgba(212, 175, 55, 0.3);
            border-radius: 20px;
            font-size: 10px;
            font-weight: 600;
            color: #D4AF37;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .nav-badge::before {
            content: '';
            width: 4px;
            height: 4px;
            background: #D4AF37;
            border-radius: 50%;
            animation: blink 2s infinite;
        }

        @keyframes blink {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.3; }
        }

        /* ========================================
           ENHANCED HERO SECTION STYLES
           ======================================== */
        
        /* Hero Video Container */
        .hero-video-container {
            position: absolute;
            inset: 0;
            overflow: hidden;
        }

        .hero-video-container video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transform: scale(1.1);
            animation: heroVideoZoom 20s ease-in-out infinite alternate;
        }

        @keyframes heroVideoZoom {
            0% { transform: scale(1.1); }
            100% { transform: scale(1); }
        }

        /* Hero Overlay */
        .hero-overlay {
            position: absolute;
            inset: 0;
            background: 
                linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.6) 100%),
                radial-gradient(circle at 30% 20%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 40%);
        }

        /* Hero Content */
        .hero-content {
            position: relative;
            z-index: 10;
        }

        /* Hero Title */
        .hero-title {
            font-family: 'Playfair Display', Georgia, serif;
            font-size: clamp(2.5rem, 6vw, 4.5rem);
            font-weight: 800;
            line-height: 1.1;
            letter-spacing: -0.02em;
            background: linear-gradient(135deg, #FFFFFF 0%, #E5C158 50%, #D4AF37 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 60px rgba(212, 175, 55, 0.3);
            animation: heroTitleReveal 1s ease-out forwards;
            opacity: 0;
            transform: translateY(30px);
        }

        @keyframes heroTitleReveal {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Hero Subtitle */
        .hero-subtitle {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            font-size: clamp(1rem, 2vw, 1.35rem);
            font-weight: 400;
            color: rgba(255, 255, 255, 0.85);
            letter-spacing: 0.02em;
            line-height: 1.6;
            max-width: 650px;
            animation: heroSubtitleReveal 1s ease-out 0.3s forwards;
            opacity: 0;
            transform: translateY(20px);
        }

        @keyframes heroSubtitleReveal {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Hero Description */
        .hero-description {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            font-size: clamp(0.875rem, 1.5vw, 1rem);
            color: rgba(255, 255, 255, 0.65);
            max-width: 550px;
            animation: heroDescReveal 1s ease-out 0.5s forwards;
            opacity: 0;
            transform: translateY(20px);
        }

        @keyframes heroDescReveal {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Hero Buttons */
        .hero-buttons {
            animation: heroButtonsReveal 1s ease-out 0.7s forwards;
            opacity: 0;
            transform: translateY(20px);
        }

        @keyframes heroButtonsReveal {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-btn-primary {
            background: linear-gradient(135deg, #D4AF37 0%, #E5C158 50%, #D4AF37 100%);
            background-size: 200% 100%;
            color: #0F172A;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            font-weight: 700;
            font-size: 1rem;
            letter-spacing: 0.03em;
            padding: 1rem 2.5rem;
            border-radius: 50px;
            border: none;
            position: relative;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            box-shadow: 
                0 10px 40px rgba(212, 175, 55, 0.4),
                0 0 0 0 rgba(212, 175, 55, 0.4);
        }

        .hero-btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.6s ease;
        }

        .hero-btn-primary:hover {
            background-position: 100% 0;
            transform: translateY(-4px) scale(1.02);
            box-shadow: 
                0 20px 50px rgba(212, 175, 55, 0.5),
                0 0 30px rgba(212, 175, 55, 0.3);
        }

        .hero-btn-primary:hover::before {
            left: 100%;
        }

        .hero-btn-secondary {
            background: transparent;
            color: #FFFFFF;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            font-weight: 600;
            font-size: 1rem;
            letter-spacing: 0.03em;
            padding: 1rem 2.5rem;
            border-radius: 50px;
            border: 2px solid rgba(255, 255, 255, 0.3);
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
        }

        .hero-btn-secondary::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), transparent);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .hero-btn-secondary:hover {
            border-color: #D4AF37;
            color: #D4AF37;
            transform: translateY(-4px);
        }

        .hero-btn-secondary:hover::before {
            opacity: 1;
        }

        /* Hero Scroll Indicator */
        .hero-scroll-indicator {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            animation: scrollBounce 2s ease-in-out infinite;
        }

        @keyframes scrollBounce {
            0%, 100% { transform: translateX(-50%) translateY(0); }
            50% { transform: translateX(-50%) translateY(10px); }
        }

        .hero-scroll-indicator .mouse {
            width: 26px;
            height: 40px;
            border: 2px solid rgba(255, 255, 255, 0.5);
            border-radius: 20px;
            position: relative;
        }

        .hero-scroll-indicator .mouse::before {
            content: '';
            position: absolute;
            top: 8px;
            left: 50%;
            transform: translateX(-50%);
            width: 4px;
            height: 8px;
            background: #D4AF37;
            border-radius: 2px;
            animation: scrollWheel 1.5s ease-in-out infinite;
        }

        @keyframes scrollWheel {
            0% { opacity: 1; transform: translateX(-50%) translateY(0); }
            100% { opacity: 0; transform: translateX(-50%) translateY(16px); }
        }

        /* Hero Decorative Elements */
        .hero-decoration {
            position: absolute;
            pointer-events: none;
        }

        .hero-decoration-1 {
            top: 20%;
            left: 5%;
            width: 120px;
            height: 120px;
            border: 1px solid rgba(212, 175, 55, 0.2);
            border-radius: 50%;
            animation: heroFloat 6s ease-in-out infinite;
        }

        .hero-decoration-2 {
            bottom: 30%;
            right: 8%;
            width: 80px;
            height: 80px;
            background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
            animation: heroFloat 8s ease-in-out infinite reverse;
        }

        .hero-decoration-3 {
            top: 40%;
            right: 15%;
            width: 6px;
            height: 6px;
            background: #D4AF37;
            border-radius: 50%;
            box-shadow: 
                0 0 10px #D4AF37,
                0 0 20px #D4AF37,
                0 0 40px rgba(212, 175, 55, 0.5);
            animation: heroGlow 2s ease-in-out infinite alternate;
        }

        @keyframes heroFloat {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(5deg); }
        }

        @keyframes heroGlow {
            0% { opacity: 0.5; transform: scale(1); }
            100% { opacity: 1; transform: scale(1.2); }
        }

        /* Hero Stats */
        .hero-stats {
            display: flex;
            gap: 3rem;
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            animation: heroStatsReveal 1s ease-out 0.9s forwards;
            opacity: 0;
        }

        @keyframes heroStatsReveal {
            to {
                opacity: 1;
            }
        }

        .hero-stat-item {
            text-align: left;
        }

        .hero-stat-number {
            font-family: 'Playfair Display', Georgia, serif;
            font-size: 2rem;
            font-weight: 700;
            color: #D4AF37;
            line-height: 1;
        }

        .hero-stat-label {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            font-size: 0.75rem;
            color: rgba(255, 255, 255, 0.5);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-top: 0.25rem;
        }

        /* Responsive Hero */
        @media (max-width: 768px) {
            .hero-stats {
                gap: 1.5rem;
                justify-content: center;
            }
            
            .hero-stat-number {
                font-size: 1.5rem;
            }
            
            .hero-decoration-1,
            .hero-decoration-2 {
                display: none;
            }
        }

        /* ========================================
           INFINITE HORIZONTAL SCROLL SERVICES
           ======================================== */
        
        /* Services Scroll Container */
        .services-scroll-container {
            overflow: hidden;
            position: relative;
            padding: 2rem 0;
        }

        .services-scroll-wrapper {
            display: flex;
            gap: 1.5rem;
            width: max-content;
        }

        .services-scroll-wrapper:hover {
            animation-play-state: paused;
        }

        /* Scroll Animation - Right to Left */
        @keyframes scrollLeft {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(calc(-50% - 0.75rem));
            }
        }

        .services-scroll-animate {
            animation: scrollLeft 25s linear infinite;
        }

        /* Enhanced Service Cards */
        .service-card-enhanced {
            flex-shrink: 0;
            width: 320px;
            background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
            border-radius: 20px;
            padding: 2rem;
            position: relative;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            border: 1px solid rgba(212, 175, 55, 0.15);
            box-shadow: 
                0 4px 20px rgba(0, 0, 0, 0.06),
                0 0 0 1px rgba(255, 255, 255, 0.8) inset;
        }

        .service-card-enhanced::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #D4AF37, #E5C158, #D4AF37);
            background-size: 200% 100%;
            animation: shimmer 3s ease-in-out infinite;
        }

        .service-card-enhanced::after {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 100% 0%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
            pointer-events: none;
        }

        .service-card-enhanced:hover {
            transform: translateY(-12px) scale(1.02);
            box-shadow: 
                0 25px 50px rgba(212, 175, 55, 0.2),
                0 0 0 2px rgba(212, 175, 55, 0.3);
        }

        /* Service Icon */
        .service-icon-enhanced {
            width: 70px;
            height: 70px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, #D4AF37 0%, #E5C158 100%);
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
        }

        .service-icon-enhanced::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(255,255,255,0.3), transparent);
        }

        .service-card-enhanced:hover .service-icon-enhanced {
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
        }

        /* Service Title */
        .service-title-enhanced {
            font-family: 'Playfair Display', Georgia, serif;
            font-size: 1.35rem;
            font-weight: 700;
            color: #1F2937;
            margin-bottom: 0.75rem;
            transition: color 0.3s ease;
        }

        .service-card-enhanced:hover .service-title-enhanced {
            color: #D4AF37;
        }

        /* Service Description */
        .service-desc-enhanced {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            font-size: 0.9rem;
            color: #64748B;
            line-height: 1.7;
            margin-bottom: 1.25rem;
        }

        /* Service Learn More Link */
        .service-link-enhanced {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: #D4AF37;
            font-weight: 600;
            font-size: 0.875rem;
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
        }

        .service-link-enhanced::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: #D4AF37;
            transition: width 0.3s ease;
        }

        .service-link-enhanced:hover {
            gap: 0.75rem;
        }

        .service-link-enhanced:hover::after {
            width: 100%;
        }

        /* Services Section Header */
        .services-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .services-header h2 {
            font-family: 'Playfair Display', Georgia, serif;
            font-size: clamp(2rem, 5vw, 3rem);
            font-weight: 800;
            color: #1F2937;
            margin-bottom: 1rem;
        }

        .services-header p {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            font-size: 1.1rem;
            color: #64748B;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Gradient Fade Edges */
        .services-fade-left,
        .services-fade-right {
            position: absolute;
            top: 0;
            bottom: 0;
            width: 150px;
            z-index: 10;
            pointer-events: none;
        }

        .services-fade-left {
            left: 0;
            background: linear-gradient(90deg, #ffffff 0%, transparent 100%);
        }

        .services-fade-right {
            right: 0;
            background: linear-gradient(-90deg, #ffffff 0%, transparent 100%);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .service-card-enhanced {
                width: 280px;
                padding: 1.5rem;
            }
            
            .service-icon-enhanced {
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
            }
        }

        /* ========================================
           ENHANCED ABOUT SECTION
           ======================================== */
        
        /* About Section Container */
        .about-section {
            background: linear-gradient(135deg, #F8FAFC 0%, #F1F5F9 100%);
            position: relative;
            overflow: hidden;
        }

        .about-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 10% 20%, rgba(212, 175, 55, 0.08) 0%, transparent 40%),
                radial-gradient(circle at 90% 80%, rgba(212, 175, 55, 0.06) 0%, transparent 40%);
            pointer-events: none;
        }

        /* About Content Wrapper */
        .about-content {
            position: relative;
            z-index: 1;
        }

        /* About Tagline */
        .about-tagline {
            font-family: 'Inter', sans-serif;
            font-size: 0.875rem;
            font-weight: 600;
            color: #D4AF37;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            margin-bottom: 1rem;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .about-tagline::before,
        .about-tagline::after {
            content: '';
            width: 30px;
            height: 2px;
            background: linear-gradient(90deg, #D4AF37, transparent);
        }

        .about-tagline::before {
            background: linear-gradient(-90deg, #D4AF37, transparent);
        }

        /* About Title */
        .about-title {
            font-family: 'Playfair Display', Georgia, serif;
            font-size: clamp(2rem, 5vw, 3.5rem);
            font-weight: 800;
            color: #1F2937;
            line-height: 1.15;
            margin-bottom: 1.5rem;
            position: relative;
        }

        .about-title span {
            background: linear-gradient(135deg, #D4AF37 0%, #F0AD4E 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* About Description */
        .about-description {
            font-family: 'Inter', sans-serif;
            font-size: 1.05rem;
            color: #64748B;
            line-height: 1.8;
            margin-bottom: 1.25rem;
        }

        /* About Highlight Box */
        .about-highlight {
            background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
            border-radius: 20px;
            padding: 2rem;
            margin: 2rem 0;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(212, 175, 55, 0.15);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
        }

        .about-highlight::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background: linear-gradient(180deg, #D4AF37, #E5C158, #D4AF37);
        }

        .about-highlight::after {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 150px;
            height: 150px;
            background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
            pointer-events: none;
        }

        .about-highlight-title {
            font-family: 'Playfair Display', Georgia, serif;
            font-size: 1.35rem;
            font-weight: 700;
            color: #1F2937;
            margin-bottom: 0.75rem;
        }

        .about-highlight-text {
            font-family: 'Inter', sans-serif;
            font-size: 0.95rem;
            color: #64748B;
            line-height: 1.75;
        }

        /* Stats Grid */
        .about-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            margin: 2rem 0;
            padding: 1.5rem 0;
            border-top: 1px solid rgba(212, 175, 55, 0.15);
            border-bottom: 1px solid rgba(212, 175, 55, 0.15);
        }

        .about-stat-item {
            text-align: center;
            position: relative;
        }

        .about-stat-item:not(:last-child)::after {
            content: '';
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 1px;
            height: 60%;
            background: linear-gradient(180deg, transparent, rgba(212, 175, 55, 0.3), transparent);
        }

        .about-stat-number {
            font-family: 'Playfair Display', Georgia, serif;
            font-size: 2.5rem;
            font-weight: 800;
            background: linear-gradient(135deg, #D4AF37 0%, #F0AD4E 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1;
            margin-bottom: 0.5rem;
        }

        .about-stat-label {
            font-family: 'Inter', sans-serif;
            font-size: 0.8rem;
            color: #64748B;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            font-weight: 500;
        }

        /* About CTA Button */
        .about-cta {
            display: inline-block;
            background: linear-gradient(135deg, #D4AF37 0%, #E5C158 50%, #D4AF37 100%);
            background-size: 200% 100%;
            color: #0F172A;
            font-family: 'Inter', sans-serif;
            font-weight: 700;
            font-size: 1rem;
            padding: 1rem 2.5rem;
            border-radius: 50px;
            border: none;
            position: relative;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
            text-decoration: none;
        }

        .about-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.6s ease;
        }

        .about-cta:hover {
            background-position: 100% 0;
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
        }

        .about-cta:hover::before {
            left: 100%;
        }

        /* About Right Side Card */
        .about-features-card {
            background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
            border-radius: 24px;
            padding: 2.5rem;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(212, 175, 55, 0.15);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
        }

        .about-features-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 6px;
            background: linear-gradient(90deg, #D4AF37, #E5C158, #F0AD4E, #D4AF37);
            background-size: 200% 100%;
            animation: shimmer 3s ease-in-out infinite;
        }

        .about-features-card::after {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
            pointer-events: none;
        }

        .about-features-title {
            font-family: 'Playfair Display', Georgia, serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: #1F2937;
            margin-bottom: 2rem;
            text-align: center;
        }

        /* Feature Items */
        .about-feature {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            padding: 1.25rem 0;
            border-bottom: 1px solid rgba(212, 175, 55, 0.1);
            transition: all 0.3s ease;
        }

        .about-feature:last-child {
            border-bottom: none;
        }

        .about-feature:hover {
            padding-left: 0.5rem;
        }

        .about-feature-icon {
            width: 50px;
            height: 50px;
            border-radius: 12px;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.05) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            border: 1px solid rgba(212, 175, 55, 0.2);
            transition: all 0.3s ease;
        }

        .about-feature:hover .about-feature-icon {
            background: linear-gradient(135deg, #D4AF37 0%, #E5C158 100%);
            transform: scale(1.1);
        }

        .about-feature-icon svg {
            width: 24px;
            height: 24px;
            color: #D4AF37;
            transition: color 0.3s ease;
        }

        .about-feature:hover .about-feature-icon svg {
            color: white;
        }

        .about-feature-content h4 {
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
            font-weight: 700;
            color: #1F2937;
            margin-bottom: 0.35rem;
        }

        .about-feature-content p {
            font-family: 'Inter', sans-serif;
            font-size: 0.85rem;
            color: #64748B;
            line-height: 1.6;
            margin: 0;
        }

        /* Responsive About */
        @media (max-width: 768px) {
            .about-stats {
                grid-template-columns: repeat(3, 1fr);
                gap: 1rem;
            }
            
            .about-stat-number {
                font-size: 1.75rem;
            }
            
            .about-stat-label {
                font-size: 0.7rem;
            }
            
            .about-highlight {
                padding: 1.5rem;
            }
            
            .about-features-card {
                padding: 1.5rem;
            }
        }

        /* ========================================
           TESTIMONIALS SECTION WITH INFINITE SCROLL
           ======================================== */
        
        /* Testimonials Section */
        .testimonials-section {
            background: linear-gradient(135deg, #FFFFFF 0%, #F8FAFC 100%);
            position: relative;
            overflow: hidden;
        }

        .testimonials-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 5% 50%, rgba(212, 175, 55, 0.06) 0%, transparent 50%),
                radial-gradient(circle at 95% 50%, rgba(212, 175, 55, 0.06) 0%, transparent 50%);
            pointer-events: none;
        }

        /* Testimonials Header */
        .testimonials-header {
            text-align: center;
            margin-bottom: 3rem;
            position: relative;
            z-index: 1;
        }

        .testimonials-tagline {
            font-family: 'Inter', sans-serif;
            font-size: 0.875rem;
            font-weight: 600;
            color: #D4AF37;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            margin-bottom: 1rem;
        }

        .testimonials-title {
            font-family: 'Playfair Display', Georgia, serif;
            font-size: clamp(2rem, 5vw, 3rem);
            font-weight: 800;
            color: #1F2937;
            margin-bottom: 1rem;
        }

        .testimonials-subtitle {
            font-family: 'Inter', sans-serif;
            font-size: 1.05rem;
            color: #64748B;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Testimonials Scroll Container */
        .testimonials-scroll-container {
            overflow: hidden;
            position: relative;
            padding: 2rem 0;
        }

        .testimonials-scroll-wrapper {
            display: flex;
            gap: 1.5rem;
            width: max-content;
        }

        .testimonials-scroll-wrapper:hover {
            animation-play-state: paused;
        }

        /* Scroll Animation */
        @keyframes testimonialsScroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(calc(-50% - 0.75rem));
            }
        }

        .testimonials-scroll-animate {
            animation: testimonialsScroll 30s linear infinite;
        }

        /* Testimonial Card */
        .testimonial-card-enhanced {
            flex-shrink: 0;
            width: 400px;
            background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
            border-radius: 24px;
            padding: 2rem;
            position: relative;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            border: 1px solid rgba(212, 175, 55, 0.1);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
        }

        .testimonial-card-enhanced::before {
            content: '"';
            position: absolute;
            top: 10px;
            right: 25px;
            font-family: Georgia, serif;
            font-size: 8rem;
            color: rgba(212, 175, 55, 0.08);
            line-height: 1;
            pointer-events: none;
        }

        .testimonial-card-enhanced::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #D4AF37, #E5C158, #D4AF37);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }

        .testimonial-card-enhanced:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(212, 175, 55, 0.15);
            border-color: rgba(212, 175, 55, 0.2);
        }

        .testimonial-card-enhanced:hover::after {
            transform: scaleX(1);
        }

        /* Testimonial Header */
        .testimonial-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.25rem;
        }

        .testimonial-avatar {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: linear-gradient(135deg, #D4AF37 0%, #E5C158 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Playfair Display', serif;
            font-size: 1.25rem;
            font-weight: 700;
            color: white;
            position: relative;
            overflow: hidden;
            flex-shrink: 0;
        }

        .testimonial-avatar::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(255,255,255,0.3), transparent);
        }

        .testimonial-info h4 {
            font-family: 'Inter', sans-serif;
            font-size: 1.05rem;
            font-weight: 700;
            color: #1F2937;
            margin-bottom: 0.25rem;
        }

        .testimonial-info p {
            font-family: 'Inter', sans-serif;
            font-size: 0.85rem;
            color: #64748B;
            margin: 0;
        }

        /* Star Rating */
        .testimonial-stars {
            display: flex;
            gap: 0.25rem;
            margin-bottom: 1rem;
        }

        .testimonial-stars svg {
            width: 18px;
            height: 18px;
            color: #D4AF37;
            fill: #D4AF37;
        }

        /* Testimonial Quote */
        .testimonial-quote {
            font-family: 'Inter', sans-serif;
            font-size: 0.95rem;
            color: #64748B;
            line-height: 1.8;
            font-style: italic;
            position: relative;
            z-index: 1;
        }

        /* Gradient Fades */
        .testimonials-fade-left,
        .testimonials-fade-right {
            position: absolute;
            top: 0;
            bottom: 0;
            width: 150px;
            z-index: 10;
            pointer-events: none;
        }

        .testimonials-fade-left {
            left: 0;
            background: linear-gradient(90deg, #ffffff 0%, transparent 100%);
        }

        .testimonials-fade-right {
            right: 0;
            background: linear-gradient(-90deg, #ffffff 0%, transparent 100%);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .testimonial-card-enhanced {
                width: 320px;
                padding: 1.5rem;
            }
        }

        /* ========================================
           ENHANCED PORTFOLIO SECTION
           ======================================== */
        
        /* Portfolio Section */
        .portfolio-section {
            background: linear-gradient(135deg, #FFFFFF 0%, #F8FAFC 100%);
            position: relative;
            overflow: hidden;
        }

        .portfolio-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 0% 0%, rgba(212, 175, 55, 0.08) 0%, transparent 40%),
                radial-gradient(circle at 100% 100%, rgba(212, 175, 55, 0.08) 0%, transparent 40%);
            pointer-events: none;
        }

        /* Portfolio Header */
        .portfolio-header {
            text-align: center;
            margin-bottom: 3rem;
            position: relative;
            z-index: 1;
        }

        .portfolio-title-main {
            font-family: 'Playfair Display', Georgia, serif;
            font-size: clamp(2rem, 5vw, 3rem);
            font-weight: 800;
            color: #1F2937;
            margin-bottom: 1rem;
        }

        .portfolio-subtitle {
            font-family: 'Inter', sans-serif;
            font-size: 1.05rem;
            color: #64748B;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Portfolio Filter Buttons */
        .portfolio-filters {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 0.75rem;
            margin-bottom: 2.5rem;
            position: relative;
            z-index: 1;
        }

        .portfolio-filter-btn {
            font-family: 'Inter', sans-serif;
            font-size: 0.9rem;
            font-weight: 600;
            padding: 0.75rem 1.5rem;
            border: 2px solid rgba(212, 175, 55, 0.2);
            background: white;
            color: #64748B;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .portfolio-filter-btn:hover,
        .portfolio-filter-btn.active {
            background: linear-gradient(135deg, #D4AF37 0%, #E5C158 100%);
            color: #0F172A;
            border-color: #D4AF37;
            box-shadow: 0 8px 25px rgba(212, 175, 55, 0.35);
            transform: translateY(-2px);
        }

        /* Portfolio Grid Enhanced */
        .portfolio-grid-enhanced {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            position: relative;
            z-index: 1;
        }

        /* Portfolio Card */
        .portfolio-card-enhanced {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
        }

        .portfolio-card-enhanced:nth-child(1) {
            grid-column: span 2;
            grid-row: span 1;
        }

        .portfolio-card-enhanced:nth-child(4) {
            grid-column: span 1;
            grid-row: span 2;
        }

        .portfolio-card-enhanced:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 30px 60px rgba(212, 175, 55, 0.25);
        }

        /* Portfolio Image/Video */
        .portfolio-card-enhanced img,
        .portfolio-card-enhanced video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.5s ease;
            min-height: 280px;
        }

        .portfolio-card-enhanced:hover img,
        .portfolio-card-enhanced:hover video {
            transform: scale(1.1);
            filter: brightness(0.9) saturate(1.2);
        }

        /* Portfolio Overlay */
        .portfolio-overlay-enhanced {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 1.5rem;
            opacity: 0;
            transition: all 0.4s ease;
        }

        .portfolio-card-enhanced:hover .portfolio-overlay-enhanced {
            opacity: 1;
        }

        /* Portfolio Content */
        .portfolio-content {
            transform: translateY(20px);
            transition: all 0.4s ease;
        }

        .portfolio-card-enhanced:hover .portfolio-content {
            transform: translateY(0);
        }

        .portfolio-category-tag {
            display: inline-block;
            font-family: 'Inter', sans-serif;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: #D4AF37;
            background: rgba(212, 175, 55, 0.2);
            padding: 0.35rem 0.75rem;
            border-radius: 20px;
            margin-bottom: 0.75rem;
            width: fit-content;
        }

        .portfolio-item-title {
            font-family: 'Playfair Display', Georgia, serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: white;
            margin-bottom: 0.5rem;
        }

        .portfolio-item-desc {
            font-family: 'Inter', sans-serif;
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.6;
        }

        /* Portfolio Play Button */
        .portfolio-play-btn {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(0.8);
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #D4AF37 0%, #E5C158 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: all 0.4s ease;
            box-shadow: 0 10px 40px rgba(212, 175, 55, 0.5);
        }

        .portfolio-card-enhanced:hover .portfolio-play-btn {
            opacity: 1;
            transform: translate(-50%, -50%) scale(1);
        }

        .portfolio-play-btn::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background: linear-gradient(135deg, #D4AF37 0%, #E5C158 100%);
            animation: playButtonPulse 2s ease-in-out infinite;
            z-index: -1;
        }

        @keyframes playButtonPulse {
            0%, 100% { transform: scale(1); opacity: 0.5; }
            50% { transform: scale(1.3); opacity: 0; }
        }

        .portfolio-play-btn svg {
            width: 28px;
            height: 28px;
            color: #0F172A;
            margin-left: 4px;
        }

        /* Portfolio CTA */
        .portfolio-cta {
            text-align: center;
            margin-top: 4rem;
            position: relative;
            z-index: 1;
        }

        .portfolio-cta-btn {
            display: inline-block;
            background: linear-gradient(135deg, #D4AF37 0%, #E5C158 50%, #D4AF37 100%);
            background-size: 200% 100%;
            color: #0F172A;
            font-family: 'Inter', sans-serif;
            font-weight: 700;
            font-size: 1.05rem;
            padding: 1.25rem 3rem;
            border-radius: 50px;
            border: none;
            position: relative;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            box-shadow: 0 10px 40px rgba(212, 175, 55, 0.35);
            text-decoration: none;
        }

        .portfolio-cta-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.6s ease;
        }

        .portfolio-cta-btn:hover {
            background-position: 100% 0;
            transform: translateY(-4px) scale(1.02);
            box-shadow: 0 20px 50px rgba(212, 175, 55, 0.45);
        }

        .portfolio-cta-btn:hover::before {
            left: 100%;
        }

        .portfolio-cta-count {
            font-family: 'Inter', sans-serif;
            font-size: 0.95rem;
            color: #64748B;
            margin-top: 1.5rem;
        }

        /* Responsive Portfolio */
        @media (max-width: 1024px) {
            .portfolio-grid-enhanced {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .portfolio-card-enhanced:nth-child(1) {
                grid-column: span 2;
            }
            
            .portfolio-card-enhanced:nth-child(4) {
                grid-column: span 1;
                grid-row: span 1;
            }
        }

        @media (max-width: 768px) {
            .portfolio-grid-enhanced {
                grid-template-columns: 1fr;
            }
            
            .portfolio-card-enhanced:nth-child(1),
            .portfolio-card-enhanced:nth-child(4) {
                grid-column: span 1;
                grid-row: span 1;
            }
            
            .portfolio-filter-btn {
                padding: 0.6rem 1.2rem;
                font-size: 0.85rem;
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideInFromLeft {
            from {
                opacity: 0;
                transform: translateX(-40px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .fade-in-up {
            animation: fadeInUp 0.6s ease-out forwards;
            opacity: 0;
        }

        .fade-in-up.reveal {
            opacity: 1;
            animation: fadeInUp 0.6s ease-out;
        }

        .slide-in-left {
            animation: slideInFromLeft 0.8s ease-out forwards;
            opacity: 0;
        }

        .slide-in-left.reveal {
            opacity: 1;
            animation: slideInFromLeft 0.8s ease-out;
        }

        .service-card {
            transition: all 0.3s ease;
            border: 2px solid transparent;
            animation: slideInFromLeft 0.8s ease-out forwards;
            opacity: 0;
        }

        .service-card.reveal {
            opacity: 1;
            animation: slideInFromLeft 0.8s ease-out;
        }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15);
            border-color: #D4AF37;
        }

        .service-icon {
            transition: all 0.3s ease;
            background: linear-gradient(135deg, #D4AF37, #E5C158);
        }

        .service-card:hover .service-icon {
            transform: scale(1.1) rotate(5deg);
        }

        .learn-more {
            transition: all 0.3s ease;
            color: #D4AF37;
            opacity: 0;
            max-height: 0;
            overflow: hidden;
        }

        .service-card:hover .learn-more {
            opacity: 1;
            max-height: 50px;
        }

        /* Portfolio Masonry Styles */
        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 12px;
            grid-auto-rows: 280px;
        }

        @media (min-width: 768px) {
            .portfolio-grid {
                grid-template-columns: repeat(4, 1fr);
                grid-auto-rows: 300px;
            }

            .portfolio-item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
            .portfolio-item:nth-child(2) { grid-column: span 2; grid-row: span 1; }
            .portfolio-item:nth-child(3) { grid-column: span 1; grid-row: span 2; }
            .portfolio-item:nth-child(4) { grid-column: span 1; grid-row: span 1; }
            .portfolio-item:nth-child(5) { grid-column: span 1; grid-row: span 1; }
            .portfolio-item:nth-child(6) { grid-column: span 2; grid-row: span 1; }
            .portfolio-item:nth-child(7) { grid-column: span 2; grid-row: span 1; }
            .portfolio-item:nth-child(8) { grid-column: span 2; grid-row: span 1; }
        }

        .portfolio-item {
            position: relative;
            overflow: hidden;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            opacity: 0;
        }

        .portfolio-item.reveal {
            opacity: 1;
            animation: fadeInUp 0.6s ease-out;
        }

        .portfolio-item img,
        .portfolio-item video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.4s ease;
            filter: brightness(0.9);
        }

        .portfolio-item:hover img,
        .portfolio-item:hover video {
            transform: scale(1.05);
            filter: brightness(1) saturate(1.2);
        }

        .portfolio-overlay {
            position: absolute;
            inset: 0;
            background: rgba(212, 175, 55, 0.2);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 16px;
            opacity: 0;
            transition: all 0.3s ease;
        }

        .portfolio-item:hover .portfolio-overlay {
            opacity: 1;
        }

        .portfolio-title {
            color: white;
            font-weight: 600;
            font-size: 16px;
            margin-bottom: 4px;
            transform: translateY(20px);
            transition: transform 0.3s ease;
        }

        .portfolio-category {
            color: #D4AF37;
            font-size: 12px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
            transform: translateY(20px);
            transition: transform 0.3s ease 0.1s;
        }

        .portfolio-item:hover .portfolio-title,
        .portfolio-item:hover .portfolio-category {
            transform: translateY(0);
        }

        /* Lightbox */
        .lightbox-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.9);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 999;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
        }

        .lightbox-overlay.active {
            opacity: 1;
            pointer-events: auto;
        }

        .lightbox-content {
            position: relative;
            max-width: 90vw;
            max-height: 85vh;
            border-radius: 8px;
            overflow: hidden;
            animation: zoomIn 0.3s ease;
        }

        @keyframes zoomIn {
            from {
                transform: scale(0.9);
                opacity: 0;
            }
            to {
                transform: scale(1);
                opacity: 1;
            }
        }

        .lightbox-content img,
        .lightbox-content video {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .lightbox-close {
            position: absolute;
            top: 20px;
            right: 20px;
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid rgba(255, 255, 255, 0.3);
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 24px;
            transition: all 0.3s ease;
            z-index: 1000;
        }

        .lightbox-close:hover {
            background: rgba(255, 255, 255, 0.2);
            border-color: #D4AF37;
            color: #D4AF37;
            transform: rotate(90deg);
        }

        /* Filter Buttons */
        .filter-btn {
            padding: 10px 24px;
            border: 2px solid #E2E8F0;
            background: white;
            color: #64748B;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 600;
            font-size: 14px;
        }

        .filter-btn:hover,
        .filter-btn.active {
            border-color: #D4AF37;
            color: #D4AF37;
            background: rgba(212, 175, 55, 0.1);
        }

        /* Brands Section Styles - Enhanced */
        .brands-section {
            background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
            position: relative;
            overflow: hidden;
        }

        .brands-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(ellipse at 20% 30%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 70%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
            pointer-events: none;
        }

        .brands-title {
            font-family: 'Playfair Display', serif;
            font-size: 3.5rem;
            font-weight: 700;
            background: linear-gradient(135deg, #D4AF37 0%, #f0d78c 50%, #D4AF37 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.02em;
            margin-bottom: 1rem;
        }

        .brands-subtitle {
            font-family: 'Inter', sans-serif;
            font-size: 1.125rem;
            color: rgba(15, 23, 42, 0.6);
            font-weight: 400;
            letter-spacing: 0.01em;
        }

        .brands-label {
            font-family: 'Inter', sans-serif;
            font-size: 0.875rem;
            font-weight: 600;
            color: #D4AF37;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            margin-bottom: 1rem;
        }

        /* Infinite scroll container */
        .brands-scroll-container {
            position: relative;
            width: 100%;
            overflow: hidden;
            padding: 20px 0;
        }

        .brands-scroll-container::before,
        .brands-scroll-container::after {
            content: '';
            position: absolute;
            top: 0;
            width: 200px;
            height: 100%;
            z-index: 2;
            pointer-events: none;
        }

        .brands-scroll-container::before {
            left: 0;
            background: linear-gradient(90deg, #f8f9fa 0%, transparent 100%);
        }

        .brands-scroll-container::after {
            right: 0;
            background: linear-gradient(270deg, #f8f9fa 0%, transparent 100%);
        }

        .brands-track {
            display: flex;
            gap: 32px;
            animation: brandsScroll 25s linear infinite;
            width: max-content;
        }

        .brands-track:hover {
            animation-play-state: paused;
        }

        @keyframes brandsScroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(calc(-50% - 16px));
            }
        }

        .brand-card {
            flex-shrink: 0;
            background: linear-gradient(145deg, #ffffff, #f8f9fa);
            border: 2px solid rgba(212, 175, 55, 0.3);
            border-radius: 20px;
            padding: 40px 48px;
            text-align: center;
            transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
            cursor: pointer;
            position: relative;
            overflow: hidden;
            min-width: 260px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
        }

        .brand-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
            transition: left 0.7s ease;
        }

        .brand-card::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 60%);
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .brand-card:hover::before {
            left: 100%;
        }

        .brand-card:hover::after {
            opacity: 1;
        }

        .brand-card:hover {
            border-color: #D4AF37;
            background: linear-gradient(145deg, #ffffff, #fffbeb);
            transform: translateY(-12px) scale(1.02);
            box-shadow: 
                0 25px 50px rgba(212, 175, 55, 0.2),
                0 0 0 1px rgba(212, 175, 55, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
        }

        .brand-logo-wrapper {
            position: relative;
            width: 90px;
            height: 90px;
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .brand-logo-img {
            max-width: 70px;
            max-height: 70px;
            object-fit: contain;
            position: relative;
            z-index: 2;
            transition: all 0.4s ease;
        }

        .brand-card:hover .brand-logo-img {
            transform: scale(1.15);
            filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
        }

        .brand-logo-bg {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.08));
            border-radius: 16px;
            border: 2px solid rgba(212, 175, 55, 0.4);
            transition: all 0.5s ease;
        }

        .brand-card:hover .brand-logo-bg {
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.25), rgba(212, 175, 55, 0.1));
            border-color: #D4AF37;
            transform: scale(1.1) rotate(3deg);
            box-shadow: 0 8px 32px rgba(212, 175, 55, 0.3);
        }

        .brand-logo-text {
            font-family: 'Playfair Display', serif;
            font-size: 22px;
            font-weight: 800;
            background: linear-gradient(135deg, #D4AF37 0%, #f5d78e 50%, #D4AF37 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
            z-index: 1;
            letter-spacing: 2px;
        }

        .brand-name {
            font-family: 'Playfair Display', serif;
            color: #1a1a1a;
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 8px;
            letter-spacing: 0.02em;
        }

        .brand-category {
            font-family: 'Inter', sans-serif;
            color: #D4AF37;
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 600;
        }

        /* Brand Card Glow Effect */
        .brand-glow {
            position: absolute;
            width: 150px;
            height: 150px;
            background: radial-gradient(circle, rgba(212, 175, 55, 0.4) 0%, transparent 70%);
            border-radius: 50%;
            filter: blur(30px);
            opacity: 0;
            transition: opacity 0.5s ease;
            pointer-events: none;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

        .brand-card:hover .brand-glow {
            opacity: 1;
        }

        /* Floating animation for brand cards */
        @keyframes brandFloat {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-8px);
            }
        }

        .brand-card {
            animation: brandFloat 4s ease-in-out infinite;
        }

        .brand-card:nth-child(2n) {
            animation-delay: -2s;
        }

        .brand-card:nth-child(3n) {
            animation-delay: -1s;
        }

        .brand-card:nth-child(4n) {
            animation-delay: -3s;
        }

        .brand-card:hover {
            animation: none;
        }

        /* Responsive Styles */
        @media (max-width: 1024px) {
            .brands-title {
                font-size: 2.75rem;
            }
            
            .brand-card {
                padding: 32px 36px;
                min-width: 220px;
            }
        }

        @media (max-width: 768px) {
            .brands-title {
                font-size: 2.25rem;
            }
            
            .brands-subtitle {
                font-size: 1rem;
            }
            
            .brands-scroll-container::before,
            .brands-scroll-container::after {
                width: 80px;
            }
            
            .brand-card {
                padding: 28px 32px;
                min-width: 200px;
            }
            
            .brand-logo-wrapper {
                width: 70px;
                height: 70px;
            }
            
            .brand-logo-text {
                font-size: 18px;
            }
            
            .brand-name {
                font-size: 18px;
            }
            
            .brands-track {
                gap: 20px;
            }
        }

        @media (max-width: 480px) {
            .brands-title {
                font-size: 1.875rem;
            }
            
            .brand-card {
                padding: 24px 28px;
                min-width: 180px;
            }
            
            .brand-logo-wrapper {
                width: 60px;
                height: 60px;
            }
            
            .brand-logo-text {
                font-size: 16px;
            }
            
            .brand-name {
                font-size: 16px;
            }
            
            .brand-category {
                font-size: 10px;
            }
        }

        /* FAQ Section Styles - Light Theme with Gold */
        .faq-section {
            background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
            position: relative;
            overflow: hidden;
        }

        .faq-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(ellipse at 20% 20%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 80%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
            pointer-events: none;
        }

        .faq-title {
            font-family: 'Playfair Display', serif;
            font-size: 3.5rem;
            font-weight: 700;
            color: #1F2937;
            letter-spacing: -0.02em;
            margin-bottom: 1rem;
        }

        .faq-subtitle {
            font-family: 'Inter', sans-serif;
            font-size: 1.125rem;
            color: #6B7280;
            font-weight: 400;
            letter-spacing: 0.01em;
        }

        .faq-label {
            font-family: 'Inter', sans-serif;
            font-size: 0.875rem;
            font-weight: 600;
            color: #D4AF37;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            margin-bottom: 1rem;
        }

        .faq-container {
            position: relative;
            z-index: 1;
            max-width: 900px;
            margin: 0 auto;
        }

        .faq-grid {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .faq-item {
            background: #FFFFFF;
            border: 2px solid rgba(212, 175, 55, 0.2);
            border-radius: 16px;
            overflow: hidden;
            transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
            opacity: 0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            position: relative;
        }

        .faq-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background: linear-gradient(180deg, #D4AF37, #f0d78c);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .faq-item.reveal {
            opacity: 1;
            animation: fadeInUp 0.6s ease-out forwards;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .faq-item:hover {
            border-color: #D4AF37;
            background: #FFFCF5;
            box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
            transform: translateY(-4px);
        }

        .faq-item:hover::before {
            opacity: 1;
        }

        .faq-item.active {
            border-color: #D4AF37;
            box-shadow: 0 20px 50px rgba(212, 175, 55, 0.2);
        }

        .faq-item.active::before {
            opacity: 1;
        }

        .faq-question {
            width: 100%;
            padding: 24px 28px;
            background: transparent;
            border: none;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
            transition: all 0.3s ease;
            font-family: inherit;
            border-radius: 12px;
        }

        .faq-question:hover {
            background: rgba(212, 175, 55, 0.08);
        }

        .faq-question-text {
            font-family: 'Playfair Display', serif;
            color: #1F2937;
            font-size: 18px;
            font-weight: 600;
            text-align: left;
            letter-spacing: 0.02em;
            line-height: 1.5;
            flex: 1;
        }

        .faq-icon {
            color: #D4AF37;
            font-size: 28px;
            font-weight: 300;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            flex-shrink: 0;
            position: relative;
            width: 28px;
            height: 28px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(212, 175, 55, 0.15);
            border-radius: 50%;
        }

        .faq-icon::before,
        .faq-icon::after {
            content: '';
            position: absolute;
            background: #D4AF37;
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        .faq-icon::before {
            width: 14px;
            height: 3px;
        }

        .faq-icon::after {
            width: 3px;
            height: 14px;
        }

        .faq-item.active .faq-icon {
            transform: rotate(45deg);
            background: #D4AF37;
        }

        .faq-item.active .faq-icon::before,
        .faq-item.active .faq-icon::after {
            background: #ffffff;
        }

        .faq-item.active .faq-icon::after {
            opacity: 0;
        }

        .faq-item:hover .faq-question-text {
            color: #D4AF37;
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            display: none;
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
            display: block;
        }

        .faq-answer-content {
            padding: 0 28px 24px 28px;
            opacity: 0;
            transform: translateY(-10px);
            transition: opacity 0.4s ease 0.1s, transform 0.4s ease 0.1s;
        }

        .faq-item.active .faq-answer-content {
            opacity: 1;
            transform: translateY(0);
        }

        .faq-answer p {
            font-family: 'Inter', sans-serif;
            color: #4B5563;
            font-size: 15px;
            line-height: 1.8;
            padding: 0;
            margin: 0;
            letter-spacing: 0.2px;
        }

        /* Enhanced FAQ Numbered Pattern */
        .faq-item-number {
            position: absolute;
            top: 20px;
            left: 24px;
            font-family: 'Playfair Display', serif;
            font-size: 48px;
            font-weight: 700;
            color: rgba(212, 175, 55, 0.12);
            line-height: 1;
            pointer-events: none;
            z-index: 0;
        }

        .faq-question {
            position: relative;
            z-index: 1;
        }

        /* Responsive FAQ */
        @media (max-width: 1024px) {
            .faq-title {
                font-size: 2.75rem;
            }
        }

        @media (max-width: 768px) {
            .faq-title {
                font-size: 2.25rem;
            }
            
            .faq-subtitle {
                font-size: 1rem;
            }
            
            .faq-item-number {
                font-size: 36px;
                top: 16px;
                left: 20px;
            }

            .faq-question {
                padding: 20px 24px;
                padding-left: 60px;
            }

            .faq-question-text {
                font-size: 16px;
            }

            .faq-icon {
                font-size: 24px;
            }

            .faq-answer-content {
                padding: 0 24px 20px 60px;
            }

            .faq-answer p {
                font-size: 14px;
            }
        }

        @media (max-width: 480px) {
            .faq-title {
                font-size: 1.875rem;
            }
            
            .faq-label {
                font-size: 0.75rem;
            }
            
            .faq-item-number {
                font-size: 28px;
                top: 14px;
                left: 16px;
            }

            .faq-question {
                padding: 16px 20px;
                padding-left: 48px;
            }

            .faq-question-text {
                font-size: 15px;
            }

            .faq-icon {
                width: 24px;
                height: 24px;
                font-size: 20px;
            }

            .faq-answer-content {
                padding: 0 20px 16px 48px;
            }

            .faq-answer p {
                font-size: 13px;
            }
        }

        /* FAQ reveal class for light theme */
        .faq-item.reveal {
            opacity: 1;
            animation: fadeInUp 0.6s ease-out forwards;
        }

        /* Old brands-grid styles - keeping for fallback */
        @media (max-width: 768px) {
            .brands-grid {
                grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
                gap: 16px;
            }

            .brand-card {
                padding: 20px;
            }

            .brand-logo-wrapper {
                width: 80px;
                height: 80px;
                margin-bottom: 12px;
            }

            .brand-logo-text {
                font-size: 14px;
            }

            .brand-name {
                font-size: 16px;
            }

            .brand-category {
                font-size: 11px;
            }
        }

        @media (max-width: 480px) {
            .brands-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }

            .brand-card {
                padding: 16px;
            }

            .brand-logo-wrapper {
                width: 70px;
                height: 70px;
            }

            .brand-name {
                font-size: 14px;
            }

            .faq-question {
                padding: 14px;
            }

            .faq-question-text {
                font-size: 14px;
            }
        }

        /* Contact Section Styles - Light Mode */
        .contact-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%),
                        radial-gradient(circle at 100% 0%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
                        radial-gradient(circle at 0% 100%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
            position: relative;
            overflow: hidden;
        }

        .contact-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(100, 116, 139, 0.05) 0%, transparent 50%);
            pointer-events: none;
        }

        .contact-wrapper {
            position: relative;
            z-index: 1;
        }

        .contact-info h3 {
            background: linear-gradient(135deg, #D4AF37 0%, #f0ad4e 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 800;
            letter-spacing: -0.5px;
            animation: fadeInUp 0.8s ease 0.2s both;
        }

        .contact-info p:nth-of-type(1) {
            color: #D4AF37;
            animation: fadeInUp 0.8s ease 0.3s both;
        }

        .contact-details {
            animation: fadeInUp 0.8s ease 0.4s both;
        }

        .contact-details > div {
            transition: transform 0.3s ease, color 0.3s ease;
        }

        .contact-details > div:hover {
            transform: translateX(8px);
            color: #D4AF37;
        }

        .contact-details > a {
            display: inline-block;
            animation: fadeInUp 0.8s ease 0.5s both;
        }

        .contact-details > a:hover {
            text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
            transform: translateX(4px);
        }

        .contact-form-wrapper {
            background: rgba(255, 255, 255, 0.06);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 24px;
            padding: 40px;
            box-shadow: 0 8px 32px rgba(212, 175, 55, 0.1);
            animation: fadeInUp 0.8s ease 0.3s both;
            position: relative;
        }

        .contact-form {
            display: flex;
            flex-direction: column;
        }

        .contact-form input,
        .contact-form textarea {
            font-family: inherit;
            color: black;
            transition: all 0.3s ease;
        }

        .contact-form input::placeholder,
        .contact-form textarea::placeholder {
            color: black;
        }

        .contact-form input:focus,
        .contact-form textarea:focus {
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.3), inset 0 0 10px rgba(0, 0, 0, 0.1);
        }

        .contact-send-btn {
            background: linear-gradient(135deg, #D4AF37 0%, #f0ad4e 100%);
            font-size: 16px;
            font-weight: 700;
            letter-spacing: 0.5px;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            box-shadow: 0 10px 25px rgba(212, 175, 55, 0.2);
            border: none;
            position: relative;
            overflow: hidden;
        }

        .contact-send-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.2);
            transition: left 0.4s ease;
            z-index: 0;
        }

        .contact-send-btn:hover::before {
            left: 100%;
        }

        .contact-send-btn:hover {
            transform: translateY(-4px) scale(1.02);
            box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
        }

        .contact-send-btn:active {
            transform: translateY(-2px) scale(0.98);
        }

        .bg-size-200 {
            background-size: 200% 200%;
        }

        .group-link {
            display: inline-flex;
            align-items: center;
            margin-top: 0.5rem;
            padding: 0.75rem 1.5rem;
            background: rgba(212, 175, 55, 0.05);
            border: 1px solid rgba(212, 175, 55, 0.2);
            border-radius: 9999px;
            transition: all 0.3s ease;
        }

        .group-link:hover {
            background: rgba(212, 175, 55, 0.15);
            border-color: rgba(212, 175, 55, 0.4);
            transform: translateX(8px);
        }

        /* Responsive Contact Section */
        @media (max-width: 768px) {
            .contact-section {
                padding-top: 60px;
                padding-bottom: 60px;
            }

            .contact-wrapper {
                grid-template-columns: 1fr !important;
            }

            .contact-info {
                order: 2;
            }

            .contact-form-wrapper {
                order: 1;
                padding: 24px;
                margin-bottom: 32px;
            }

            .contact-info h3 {
                font-size: 28px;
                margin-top: 24px;
            }

            .contact-details {
                margin-bottom: 16px;
            }
        }

        /* Chat Support Widget Styles */
        

        @keyframes pulse {
            0% {
                transform: scale(1);
                opacity: 1;
            }
            100% {
                transform: scale(1.3);
                opacity: 0;
            }
        }

        /* Responsive Chat Button */
        @media (max-width: 768px) {
            .chat-toggle-btn {
                bottom: 25px;
                right: 20px;
                padding: 10px 16px 10px 14px;
            }

            .chat-toggle-btn:hover {
                padding: 10px 18px 10px 14px;
            }

            .chat-label {
                font-size: 13px;
            }

            .chat-icon-wrapper {
                width: 30px;
                height: 30px;
            }

            .chat-icon-wrapper svg {
                width: 16px;
                height: 16px;
            }
        }

        @media (max-width: 480px) {
            .chat-toggle-btn {
                bottom: 20px;
                right: 15px;
                padding: 10px 14px 10px 12px;
                gap: 8px;
            }

            .chat-toggle-btn:hover {
                padding: 10px 16px 10px 12px;
            }

            .chat-label {
                font-size: 12px;
            }

            .chat-icon-wrapper {
                width: 28px;
                height: 28px;
            }

            .chat-icon-wrapper svg {
                width: 14px;
                height: 14px;
            }
        }

        /* Chat Page Styles */
        .chat-page-container {
            display: flex;
            flex-direction: column;
            height: calc(100vh - 80px);
            background: linear-gradient(135deg, #f8fafb 0%, #ffffff 100%);
            position: relative;
        }

        .chat-page-header {
            background: linear-gradient(135deg, #D4AF37 0%, #f0ad4e 100%);
            color: white;
            padding: 16px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 10;
        }

        .chat-page-header-left {
            display: flex;
            align-items: center;
            gap: 12px;
            flex: 1;
        }

        .chat-back-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            color: white;
            text-decoration: none;
            transition: all 0.2s ease;
            border: none;
            cursor: pointer;
        }

        .chat-back-btn:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: scale(1.05);
        }

        .chat-page-header-info {
            display: flex;
            flex-direction: column;
        }

        .chat-page-header-title {
            font-size: 18px;
            font-weight: 700;
            margin: 0;
            color: white;
            letter-spacing: -0.3px;
        }

        .chat-page-header-status {
            font-size: 12px;
            color: rgba(17, 24, 39, 0.85);
            margin: 2px 0 0 0;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .online-indicator {
            display: inline-block;
            width: 8px;
            height: 8px;
            background: #10b981;
            border-radius: 50%;
            box-shadow: 0 0 4px rgba(16, 185, 129, 0.6);
        }

        .chat-page-home-btn {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            color: white;
            transition: all 0.2s ease;
            text-decoration: none;
            border: none;
            cursor: pointer;
        }

        .chat-page-home-btn:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: scale(1.05);
        }

        /* Chat Messages */
        .chat-page-messages {
            flex: 1;
            overflow-y: auto;
            padding: 20px;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .chat-page-messages::-webkit-scrollbar {
            width: 8px;
        }

        .chat-page-messages::-webkit-scrollbar-track {
            background: transparent;
        }

        .chat-page-messages::-webkit-scrollbar-thumb {
            background: rgba(212, 175, 55, 0.3);
            border-radius: 4px;
        }

        .chat-page-messages::-webkit-scrollbar-thumb:hover {
            background: rgba(212, 175, 55, 0.5);
        }

        .chat-message {
            display: flex;
            gap: 12px;
            animation: fadeInUp 0.4s ease;
        }

        .support-message {
            justify-content: flex-start;
        }

        .user-message {
            justify-content: flex-end;
            flex-direction: row-reverse;
        }

        .chat-message-content {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .support-message .chat-message-content {
            align-items: flex-start;
        }

        .user-message .chat-message-content {
            align-items: flex-end;
        }

        .chat-avatar-circle {
            width: 36px;
            height: 36px;
            min-width: 36px;
            border-radius: 50%;
            background: linear-gradient(135deg, #D4AF37 0%, #f0ad4e 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 12px;
            font-weight: 700;
            box-shadow: 0 2px 8px rgba(212, 175, 55, 0.2);
        }

        .user-message .chat-avatar-circle {
            background: linear-gradient(135deg, #64748B 0%, #475569 100%);
        }

        .chat-bubble {
            max-width: 500px;
            padding: 12px 16px;
            border-radius: 18px;
            word-wrap: break-word;
            font-size: 14px;
            line-height: 1.5;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
        }

        .support-bubble {
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.08));
            color: #111827;
            border: 1px solid rgba(212, 175, 55, 0.2);
            border-radius: 18px 18px 18px 4px;
        }

        .user-bubble {
            background: linear-gradient(135deg, #D4AF37 0%, #f0ad4e 100%);
            color: white;
            border-radius: 18px 18px 4px 18px;
        }

        .chat-bubble p {
            margin: 0;
        }

        .chat-time {
            font-size: 11px;
            color: #94a3b8;
        }

        /* Typing Indicator */
        .chat-typing-indicator {
            display: flex;
            margin-bottom: 16px;
        }

        .chat-typing-bubble {
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.08));
            border: 1px solid rgba(212, 175, 55, 0.2);
            border-radius: 18px 18px 18px 4px;
            padding: 12px 16px;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
        }

        .typing-dots {
            display: flex;
            gap: 4px;
            align-items: center;
        }

        .typing-dots span {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: #D4AF37;
            animation: typing 1.4s infinite ease-in-out;
        }

        .typing-dots span:nth-child(1) { animation-delay: -0.32s; }
        .typing-dots span:nth-child(2) { animation-delay: -0.16s; }

        @keyframes typing {
            0%, 80%, 100% { transform: scale(0.8); opacity: 0.5; }
            40% { transform: scale(1); opacity: 1; }
        }

        .chat-avatar-image {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            object-fit: cover;
        }

        /* Chat Input Area */
        .chat-page-input-area {
            padding: 16px 20px;
            background: white;
            border-top: 1px solid #e2e8f0;
            box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.02);
        }

        .chat-page-input-form {
            display: flex;
            flex-direction: column;
        }

        .chat-page-input-wrapper {
            display: flex;
            gap: 8px;
            align-items: flex-end;
        }

        .chat-page-input {
            flex: 1;
            padding: 12px 16px;
            border: 2px solid #e2e8f0;
            border-radius: 24px;
            font-size: 14px;
            font-family: inherit;
            resize: none;
            transition: all 0.2s ease;
            background: #f8fafb;
            max-height: 100px;
        }

        .chat-page-input:focus {
            outline: none;
            border-color: #D4AF37;
            background: #ffffff;
            box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
        }

        .chat-page-input::placeholder {
            color: #cbd5e1;
        }

        .chat-page-send-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: linear-gradient(135deg, #D4AF37 0%, #f0ad4e 100%);
            color: white;
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s ease;
            flex-shrink: 0;
            box-shadow: 0 2px 8px rgba(212, 175, 55, 0.2);
        }

        .chat-page-send-btn:hover {
            transform: scale(1.08);
            box-shadow: 0 4px 16px rgba(212, 175, 55, 0.3);
        }

        .chat-page-send-btn:active {
            transform: scale(0.95);
        }

        /* Portfolio Page Styles */
        .portfolio-page-header {
            background: linear-gradient(135deg, rgba(30, 27, 27, 0.98), rgba(15, 23, 42, 0.95)),
                        radial-gradient(circle at 100% 0%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
                        radial-gradient(circle at 0% 100%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
            position: relative;
            overflow: hidden;
        }

        .portfolio-page-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(100, 116, 139, 0.05) 0%, transparent 50%);
            pointer-events: none;
        }

        .portfolio-page-header h1 {
            position: relative;
            z-index: 1;
            background: linear-gradient(135deg, #D4AF37 0%, #f0ad4e 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: fadeInUp 0.8s ease 0.2s both;
        }

        .portfolio-page-header p {
            position: relative;
            z-index: 1;
            animation: fadeInUp 0.8s ease 0.3s both;
        }

        /* Portfolio Filters */
        .portfolio-page-filters {
            background: white;
            border-bottom: 1px solid #e2e8f0;
            position: sticky;
            top: 80px;
            z-index: 20;
        }

        .filter-buttons-container {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            justify-content: center;
            animation: fadeInUp 0.6s ease 0.3s both;
        }

        .filter-btn {
            padding: 10px 24px;
            border: 2px solid #e2e8f0;
            background: white;
            color: #111827;
            border-radius: 50px;
            cursor: pointer;
            font-weight: 600;
            font-size: 14px;
            transition: all 0.3s ease;
            letter-spacing: -0.3px;
        }

        .filter-btn:hover {
            border-color: #D4AF37;
            color: #D4AF37;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(212, 175, 55, 0.1);
        }

        .filter-btn.active {
            background: linear-gradient(135deg, #D4AF37 0%, #f0ad4e 100%);
            color: white;
            border-color: #D4AF37;
            box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
        }

        /* Portfolio Grid */
        .portfolio-page-content {
            background: white;
            min-height: 80vh;
        }

        .portfolio-page-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 24px;
        }

        .portfolio-page-item {
            position: relative;
            overflow: hidden;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            cursor: pointer;
            transition: all 0.3s ease;
            height: 320px;
            animation: fadeInUp 0.6s ease;
        }

        .portfolio-page-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 40px rgba(212, 175, 55, 0.2);
        }

        .portfolio-page-item-media {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.4s ease;
        }

        .portfolio-page-item:hover .portfolio-page-item-media {
            transform: scale(1.08);
        }

        .portfolio-page-item-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 60%);
            display: flex;
            align-items: flex-end;
            padding: 20px;
            opacity: 0;
            transition: all 0.3s ease;
        }

        .portfolio-page-item:hover .portfolio-page-item-overlay {
            opacity: 1;
        }

        .portfolio-page-item-content {
            width: 100%;
        }

        .portfolio-page-item-title {
            color: white;
            font-size: 18px;
            font-weight: 700;
            margin: 0 0 4px 0;
            letter-spacing: -0.3px;
        }

        .portfolio-page-item-category {
            color: #D4AF37;
            font-size: 12px;
            font-weight: 600;
            margin: 0 0 8px 0;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .portfolio-page-item-description {
            color: rgba(255, 255, 255, 0.8);
            font-size: 13px;
            margin: 0 0 12px 0;
            line-height: 1.4;
        }

        .portfolio-page-item-expand {
            background: linear-gradient(135deg, #D4AF37 0%, #f0ad4e 100%);
            color: white;
            border: none;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .portfolio-page-item-expand:hover {
            transform: scale(1.1);
            box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
        }

        /* Portfolio Lightbox */
        .portfolio-lightbox {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.95);
            backdrop-filter: blur(8px);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 100;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
            padding: 20px;
        }

        .portfolio-lightbox.active {
            opacity: 1;
            pointer-events: auto;
        }

        .portfolio-lightbox-close {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.1);
            border: none;
            border-radius: 50%;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.2s ease;
            z-index: 101;
        }

        .portfolio-lightbox-close:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: scale(1.05);
        }

        .portfolio-lightbox-content {
            width: 90%;
            max-width: 900px;
            height: 80vh;
            max-height: 600px;
            border-radius: 12px;
            overflow: hidden;
            animation: zoomIn 0.3s ease;
        }

        @keyframes zoomIn {
            from {
                transform: scale(0.9);
                opacity: 0;
            }
            to {
                transform: scale(1);
                opacity: 1;
            }
        }

        .portfolio-lightbox-nav {
            position: absolute;
            left: 0;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            display: flex;
            justify-content: space-between;
            padding: 0 20px;
            pointer-events: none;
            z-index: 101;
        }

        .portfolio-lightbox-prev,
        .portfolio-lightbox-next {
            width: 50px;
            height: 50px;
            background: rgba(212, 175, 55, 0.8);
            border: none;
            border-radius: 50%;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.2s ease;
            pointer-events: auto;
        }

        .portfolio-lightbox-prev:hover,
        .portfolio-lightbox-next:hover {
            background: rgba(212, 175, 55, 1);
            transform: scale(1.1);
        }

        .portfolio-lightbox-info {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            color: white;
            text-align: center;
            max-width: 600px;
            z-index: 101;
            animation: slideUp 0.3s ease;
        }

        @keyframes slideUp {
            from {
                transform: translateX(-50%) translateY(20px);
                opacity: 0;
            }
            to {
                transform: translateX(-50%) translateY(0);
                opacity: 1;
            }
        }

        .portfolio-lightbox-info h3 {
            font-size: 24px;
            margin: 0 0 4px 0;
            letter-spacing: -0.5px;
        }

        .portfolio-lightbox-info p:nth-child(2) {
            color: #D4AF37;
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
            margin: 0 0 8px 0;
            letter-spacing: 0.5px;
        }

        .portfolio-lightbox-info p:nth-child(3) {
            color: rgba(255, 255, 255, 0.8);
            font-size: 14px;
            margin: 0;
            line-height: 1.5;
        }

        /* Responsive Portfolio */
        @media (max-width: 1024px) {
            .portfolio-page-grid {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
                gap: 20px;
            }

            .portfolio-page-item {
                height: 280px;
            }
        }

        @media (max-width: 768px) {
            .portfolio-page-header {
                padding-top: 80px;
                padding-bottom: 60px;
            }

            .portfolio-page-header h1 {
                font-size: 36px;
            }

            .portfolio-page-filters {
                top: 60px;
            }

            .filter-buttons-container {
                gap: 8px;
            }

            .filter-btn {
                padding: 8px 16px;
                font-size: 13px;
            }

            .portfolio-page-grid {
                grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
                gap: 16px;
            }

            .portfolio-page-item {
                height: 240px;
            }

            .portfolio-lightbox-content {
                width: 95%;
                height: 70vh;
                max-height: 500px;
            }

            .portfolio-lightbox-prev,
            .portfolio-lightbox-next {
                width: 40px;
                height: 40px;
                font-size: 18px;
            }

            .portfolio-lightbox-info {
                bottom: 20px;
            }

            .portfolio-lightbox-info h3 {
                font-size: 20px;
            }

            .portfolio-lightbox-info p {
                font-size: 12px;
            }
        }

        @media (max-width: 480px) {
            .portfolio-page-grid {
                grid-template-columns: 1fr;
                gap: 12px;
            }

            .portfolio-page-item {
                height: 200px;
            }

            .filter-btn {
                font-size: 12px;
                padding: 6px 12px;
            }
        }

        /* Photo Gallery Styles */
        .photo-gallery-section {
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
            padding: 80px 0;
            border-top: 1px solid rgba(212, 175, 55, 0.1);
        }

        .gallery-section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .gallery-section-title {
            font-size: 42px;
            font-weight: 700;
            background: linear-gradient(135deg, #D4AF37 0%, #f4d03f 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin: 0 0 16px 0;
            letter-spacing: -0.5px;
        }

        .gallery-section-subtitle {
            color: rgba(255, 255, 255, 0.6);
            font-size: 18px;
            margin: 0;
        }

        .photo-gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 28px;
            padding: 0;
        }

        .photo-gallery-item {
            position: relative;
            aspect-ratio: 1 / 1;
            border-radius: 12px;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid rgba(212, 175, 55, 0.2);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .photo-gallery-item:hover {
            transform: translateY(-8px);
            border-color: rgba(212, 175, 55, 0.5);
            box-shadow: 0 20px 50px rgba(212, 175, 55, 0.15);
        }

        .photo-gallery-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .photo-gallery-item:hover .photo-gallery-image {
            transform: scale(1.08);
        }

        .photo-gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
            display: flex;
            align-items: flex-end;
            justify-content: flex-end;
            padding: 20px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .photo-gallery-item:hover .photo-gallery-overlay {
            opacity: 1;
        }

        .photo-gallery-expand {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: #D4AF37;
            color: #0f172a;
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
        }

        .photo-gallery-expand:hover {
            background: #f4d03f;
            transform: scale(1.15);
            box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
        }

        /* Responsive Photo Gallery */
        @media (max-width: 1024px) {
            .photo-gallery-grid {
                grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
                gap: 24px;
            }

            .gallery-section-title {
                font-size: 36px;
            }
        }

        @media (max-width: 768px) {
            .photo-gallery-section {
                padding: 60px 0;
            }

            .gallery-section-header {
                margin-bottom: 40px;
            }

            .gallery-section-title {
                font-size: 28px;
            }

            .gallery-section-subtitle {
                font-size: 16px;
            }

            .photo-gallery-grid {
                grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
                gap: 16px;
            }

            .photo-gallery-expand {
                width: 44px;
                height: 44px;
            }
        }

        @media (max-width: 480px) {
            .photo-gallery-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }

            .gallery-section-title {
                font-size: 22px;
            }

            .gallery-section-subtitle {
                font-size: 14px;
            }

            .photo-gallery-item {
                aspect-ratio: 1 / 1;
            }

            .photo-gallery-expand {
                width: 40px;
                height: 40px;
            }
        }

        /* Responsive Chat Page */
        @media (max-width: 768px) {
            .chat-page-container {
                height: calc(100vh - 60px);
            }

            .chat-page-header {
                padding: 12px 16px;
            }

            .chat-back-btn {
                width: 36px;
                height: 36px;
            }

            .chat-page-header-title {
                font-size: 16px;
            }

            .chat-page-header-status {
                font-size: 11px;
            }

            .chat-page-messages {
                padding: 16px;
                gap: 12px;
            }

            .chat-page-input-area {
                padding: 12px 16px;
            }

            .chat-bubble {
                max-width: 85%;
            }

            .chat-avatar-circle {
                width: 32px;
                height: 32px;
                font-size: 11px;
            }
        }

        /* Error states for form validation */
        .error {
            border-color: #ef4444 !important;
            box-shadow: 0 0 0 1px #ef4444 !important;
        }
        
        .error-message {
            color: #ef4444;
            font-size: 12px;
            margin-top: 4px;
        }
        
        /* Corporate Ecosystem Section - Light Mode */
        .ecosystem-section {
            background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
            position: relative;
            overflow: hidden;
        }

        .ecosystem-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(ellipse at 20% 30%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 70%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
            pointer-events: none;
        }

        .ecosystem-title {
            font-family: 'Playfair Display', serif;
            font-size: 3.5rem;
            font-weight: 700;
            color: #1a1a1a;
            letter-spacing: -0.02em;
            margin-bottom: 1rem;
        }

        .ecosystem-subtitle {
            font-family: 'Inter', sans-serif;
            font-size: 1.125rem;
            color: rgba(15, 23, 42, 0.6);
            font-weight: 400;
        }

        .ecosystem-label {
            font-family: 'Inter', sans-serif;
            font-size: 0.875rem;
            font-weight: 600;
            color: #D4AF37;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            margin-bottom: 1rem;
        }

        /* Featured Logos Container */
        .featured-logos {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 60px;
            margin-bottom: 60px;
            flex-wrap: wrap;
        }

        .featured-logo-card {
            background: linear-gradient(145deg, #ffffff, #f8f9fa);
            border: 2px solid rgba(212, 175, 55, 0.3);
            border-radius: 24px;
            padding: 40px 60px;
            text-align: center;
            position: relative;
            overflow: hidden;
            transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
            animation: slideFromLeft 1s ease-out forwards;
            opacity: 0;
            transform: translateX(-100px);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
        }

        .featured-logo-card:nth-child(2) {
            animation-delay: 0.3s;
            animation-name: slideFromRight;
            transform: translateX(100px);
        }

        @keyframes slideFromLeft {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideFromRight {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .featured-logo-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.15) 0%, transparent 60%);
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .featured-logo-card:hover {
            border-color: #D4AF37;
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 25px 50px rgba(212, 175, 55, 0.2);
        }

        .featured-logo-card:hover::before {
            opacity: 1;
        }

        .featured-logo-icon {
            font-family: 'Playfair Display', serif;
            font-size: 3rem;
            font-weight: 800;
            background: linear-gradient(135deg, #D4AF37 0%, #f0d78c 50%, #D4AF37 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 12px;
            letter-spacing: 2px;
            min-height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .featured-logo-img {
            max-width: 120px;
            max-height: 80px;
            object-fit: contain;
            filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
            transition: all 0.3s ease;
        }

        .featured-logo-card:hover .featured-logo-img {
            transform: scale(1.1);
            filter: drop-shadow(0 4px 8px rgba(212, 175, 55, 0.3));
        }

        .fallback-text {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .featured-logo-name {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 8px;
        }

        .featured-logo-type {
            font-family: 'Inter', sans-serif;
            font-size: 0.875rem;
            color: #D4AF37;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-weight: 600;
        }

        /* Subsidiary Companies */
        .subsidiary-label {
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
            font-weight: 600;
            color: #000000;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            text-align: center;
            margin-bottom: 40px;
        }

        .subsidiary-logos {
            display: flex;             /* Changed from grid to flex */
            flex-wrap: wrap;           /* Allows items to wrap on smaller screens */
            justify-content: center;   /* This is the magic that centers them */
            gap: 24px;
            max-width: 1200px;
            margin: 0 auto;            /* Centers the container itself */
            padding: 0 20px;           /* Adds some breathing room on mobile */
        }

        .subsidiary-logo {
            /* Set a width or flex-basis so they don't stretch too wide */
            flex: 0 1 180px;           
            min-width: 150px;
            
            /* Keep your existing styles below */
            background: linear-gradient(145deg, #ffffff, #f8f9fa);
            border: 2px solid rgba(212, 175, 55, 0.2);
            border-radius: 16px;
            padding: 28px 20px;
            text-align: center;
            transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
            position: relative;
            overflow: hidden;
            opacity: 0;
            transform: translateY(30px);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }

        .subsidiary-logo.reveal {
            opacity: 1;
            transform: translateY(0);
            animation: fadeInUp 0.6s ease-out forwards;
        }

        .subsidiary-logo:nth-child(1) { animation-delay: 0.1s; }
        .subsidiary-logo:nth-child(2) { animation-delay: 0.2s; }
        .subsidiary-logo:nth-child(3) { animation-delay: 0.3s; }
        .subsidiary-logo:nth-child(4) { animation-delay: 0.4s; }
        .subsidiary-logo:nth-child(5) { animation-delay: 0.5s; }
        .subsidiary-logo:nth-child(6) { animation-delay: 0.6s; }
        .subsidiary-logo:nth-child(7) { animation-delay: 0.7s; }

        .subsidiary-logo::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.15), transparent);
            transition: left 0.7s ease;
        }

        .subsidiary-logo:hover {
            border-color: #D4AF37;
            background: linear-gradient(145deg, rgba(40, 50, 70, 0.9), rgba(25, 35, 55, 0.95));
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
        }

        .subsidiary-logo:hover::before {
            left: 100%;
        }

        .subsidiary-logo-icon {
            font-family: 'Playfair Display', serif;
            font-size: 1.75rem;
            font-weight: 800;
            background: linear-gradient(135deg, #D4AF37 0%, #f0d78c 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 10px;
            letter-spacing: 1px;
            min-height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .subsidiary-logo-img {
            max-width: 60px;
            max-height: 50px;
            object-fit: contain;
            filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
            transition: all 0.3s ease;
        }

        .subsidiary-logo:hover .subsidiary-logo-img {
            transform: scale(1.1);
            filter: drop-shadow(0 4px 8px rgba(212, 175, 55, 0.3));
        }

        .subsidiary-logo-name {
            font-family: 'Inter', sans-serif;
            font-size: 0.8rem;
            color: rgba(15, 23, 42, 0.7);
            font-weight: 500;
            text-align: center;
        }

        .ecosystem-description {
            font-family: 'Inter', sans-serif;
            font-size: 1.125rem;
            color: rgba(15, 23, 42, 0.6);
            max-width: 800px;
            margin: 60px auto 0;
            line-height: 1.8;
            text-align: center;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .ecosystem-title {
                font-size: 2.75rem;
            }
            
            .featured-logos {
                gap: 40px;
            }
            
            .subsidiary-logos {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 768px) {
            .ecosystem-title {
                font-size: 2.25rem;
            }
            
            .featured-logo-card {
                padding: 30px 40px;
            }
            
            .featured-logo-icon {
                font-size: 2.5rem;
            }
            
            .featured-logo-name {
                font-size: 1.25rem;
            }
            
            .subsidiary-logos {
                grid-template-columns: repeat(2, 1fr);
                gap: 16px;
            }
            
            .subsidiary-logo {
                padding: 20px 16px;
            }
        }

        @media (max-width: 480px) {
            .ecosystem-title {
                font-size: 1.875rem;
            }
            
            .featured-logos {
                flex-direction: column;
                gap: 24px;
            }
            
            .featured-logo-card {
                width: 100%;
                padding: 24px 32px;
            }
            
            .subsidiary-logos {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* Ecosystem Logos Animation */
        .ecosystem-logo {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .ecosystem-logo.reveal {
            opacity: 1;
            transform: translateY(0);
        }


/* Gallery View-All Tile */
.gallery-view-all {
    cursor: pointer;
    background: linear-gradient(135deg, #1E293B, #0F172A);
    border: 2px dashed rgba(212, 175, 55, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    border-radius: 12px;
    transition: all 0.3s ease;
}
.gallery-view-all:hover {
    border-color: rgba(212, 175, 55, 0.7);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.15);
}
.gallery-view-all-text {
    font-size: 2rem;
    font-weight: 800;
    color: #D4AF37;
}
.gallery-view-all-label {
    font-size: 0.85rem;
    color: #94A3B8;
    margin-top: 4px;
}

/* Full Gallery Modal */
.gallery-modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.gallery-modal.active {
    opacity: 1;
}
.gallery-modal-bg {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
}
.gallery-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 2;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.gallery-modal-close:hover {
    background: rgba(255,255,255,0.2);
}
.gallery-modal-grid {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 60px 20px 20px;
    margin: 0 auto;
}
.gallery-modal-grid::-webkit-scrollbar {
    width: 6px;
}
.gallery-modal-grid::-webkit-scrollbar-track {
    background: transparent;
}
.gallery-modal-grid::-webkit-scrollbar-thumb {
    background: rgba(212, 175, 55, 0.3);
    border-radius: 3px;
}

/* Portfolio Video Wrapper */
.portfolio-page-item-video-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.portfolio-page-item-video-wrapper .portfolio-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.portfolio-video-play-btn {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.25);
    color: white;
    cursor: pointer;
    transition: opacity 0.3s ease;
    pointer-events: none;
}
.portfolio-video-play-btn svg {
    width: 56px;
    height: 56px;
    background: rgba(212, 175, 55, 0.9);
    border-radius: 50%;
    padding: 14px;
}


/* ========================================
   SERVICES PAGE COMPONENTS
   ======================================== */
.service-card {
    transition: all 0.3s ease;
}
.service-card:hover {
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

/* FAQ Accordion */
.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}
.faq-item.active .max-h-0 {
    max-height: 500px;
}

/* Line clamp utility */
.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Package card hover */
.package-card {
    transition: all 0.3s ease;
}
.package-card:hover {
    transform: translateY(-4px);
}

/* Gallery modal */
.gallery-modal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
}
.gallery-modal-grid .photo-gallery-item {
    min-height: 150px;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
}
.gallery-modal-grid .photo-gallery-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

