/* ===== CSS CUSTOM PROPERTIES ===== */
        :root {
            /* Brand Colors */
            --brand-red: #ec1a3c;
            --brand-yellow: #f3b54a;
            --brand-green: #01752d;
            --brand-teal: #02a69e;
            --brand-navy: #061531;
            --brand-white: #f4f4f4;
            --brand-black: #000000;
            --brand-blue: #1a3070;
            --brand-grey: #eaeaea;
            
            /* Metallic Foundation */
            --metal-pearl: #f8f9fa;
            --metal-platinum: #e8eaed;
            --metal-silver: #d1d5db;
            --metal-chrome: #9ca3af;
            --metal-red-tint: #f4f4f6;
            --metal-teal-tint: #f6f8f8;
            --metal-yellow-tint: #f9f8f6;
            --metal-navy-accent: #2d3748;
            
            /* Typography */
            --font-light: 300;
            --font-regular: 400;
            --font-medium: 500;
            --font-semibold: 600;
            --font-bold: 700;
            
            /* Spacing */
            --space-xs: 4px;
            --space-sm: 8px;
            --space-md: 16px;
            --space-lg: 24px;
            --space-xl: 32px;
            --space-2xl: 48px;
            --space-3xl: 64px;
            --space-4xl: 96px;
            
            /* Transitions */
            --transition-fast: 150ms ease-out;
            --transition-base: 200ms ease-out;
            --transition-smooth: 300ms ease-in-out;
        }
        
        /* ===== RESET & BASE ===== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            background: var(--metal-pearl);
            color: var(--brand-navy);
            line-height: 1.6;
            font-size: 16px;
            overflow-x: hidden;
        }
        
        /* ===== NAVIGATION ===== */
        .nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: transparent;
            backdrop-filter: none;
            border-bottom: 1px solid transparent;
            box-shadow: none;
            transition: all var(--transition-smooth);
        }
        
        .nav.scrolled {
            background: rgba(248, 249, 250, 0.95);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--metal-silver);
            box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
        }
        
        .nav__inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: var(--space-md) var(--space-lg);
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .nav__brand {
            display: flex;
            align-items: center;
            text-decoration: none;
            color: var(--brand-white);
            font-weight: var(--font-semibold);
            font-size: 1.25rem;
            transition: var(--transition-smooth);
        }
        
        .nav.scrolled .nav__brand {
            color: var(--brand-navy);
        }
        
        .nav__logo-img {
            height: 50px;
            width: auto;
            background: white;
            padding: 4px 8px;
            border-radius: 4px;
        }
        
        .nav__toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: var(--space-sm);
        }
        
        .nav__toggle-bar {
            width: 24px;
            height: 2px;
            background: var(--brand-white);
            transition: var(--transition-base);
        }
        
        .nav.scrolled .nav__toggle-bar {
            background: var(--brand-navy);
        }
        
        .nav__menu {
            display: flex;
            gap: var(--space-lg);
        }
        
        .nav__link {
            color: var(--brand-white);
            text-decoration: none;
            font-weight: var(--font-medium);
            padding: var(--space-sm) var(--space-md);
            border-radius: 6px;
            transition: var(--transition-base);
            position: relative;
        }
        
        .nav.scrolled .nav__link {
            color: var(--brand-navy);
        }
        
        .nav__link:hover {
            background: rgba(255, 255, 255, 0.1);
            color: var(--brand-teal);
        }
        
        .nav.scrolled .nav__link:hover {
            background: var(--metal-platinum);
            color: var(--brand-teal);
        }
        
        /* ===== HERO SECTION ===== */
        .hero {
            position: relative;
            min-height: 600px;
            display: flex;
            align-items: center;
            padding: 120px var(--space-lg) var(--space-4xl);
            background: linear-gradient(135deg, var(--brand-navy) 0%, var(--metal-navy-accent) 100%);
            overflow: hidden;
        }
        
        .hero__bg {
            position: absolute;
            inset: 0;
            background: 
                radial-gradient(circle at 20% 50%, rgba(2, 166, 158, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(236, 26, 60, 0.1) 0%, transparent 50%);
            z-index: 0;
        }
        
        .hero__grid {
            position: absolute;
            inset: 0;
            background-image: 
                linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
            background-size: 50px 50px;
            opacity: 0.3;
            animation: grid-flow 20s linear infinite;
        }
        
        @keyframes grid-flow {
            0% { transform: translate(0, 0); }
            100% { transform: translate(50px, 50px); }
        }
        
        .hero__content {
            position: relative;
            z-index: 1;
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: var(--space-4xl);
            align-items: center;
        }
        
        .hero__text h1 {
            font-size: clamp(2rem, 5vw, 3.5rem);
            font-weight: var(--font-bold);
            line-height: 1.1;
            margin-bottom: var(--space-lg);
            color: var(--brand-white);
        }
        
        .hero__subtitle {
            font-size: clamp(1.125rem, 2vw, 1.5rem);
            color: var(--brand-teal);
            font-weight: var(--font-semibold);
            margin-bottom: var(--space-md);
        }
        
        .hero__description {
            font-size: 1.125rem;
            color: var(--metal-platinum);
            margin-bottom: var(--space-2xl);
            line-height: 1.7;
        }
        
        .hero__cta {
            display: flex;
            gap: var(--space-md);
            flex-wrap: wrap;
        }
        
        .hero__visual {
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .hero__image {
            width: 100%;
            max-width: 500px;
            height: auto;
            border-radius: 16px;
            box-shadow: 
                0 20px 60px rgba(0, 0, 0, 0.4),
                0 0 0 1px rgba(255, 255, 255, 0.1);
            background: transparent;
            padding: 20px;
        }
        
        /* ===== BUTTONS ===== */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 12px 32px;
            border-radius: 8px;
            font-weight: var(--font-medium);
            font-size: 1rem;
            text-decoration: none;
            border: none;
            cursor: pointer;
            transition: all var(--transition-base);
            position: relative;
            overflow: hidden;
        }
        
        .btn--primary {
            background: linear-gradient(135deg, var(--metal-platinum), var(--metal-pearl));
            border: 1px solid var(--metal-silver);
            color: var(--brand-navy);
            box-shadow: 
                0 2px 8px rgba(0, 0, 0, 0.06),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
        }
        
        .btn--primary:hover {
            transform: translateY(-2px);
            box-shadow: 
                0 4px 16px rgba(2, 166, 158, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
            border-color: var(--brand-teal);
        }
        
        .btn--ghost {
            background: transparent;
            border: 2px solid var(--metal-silver);
            color: var(--brand-white);
        }
        
        .btn--ghost:hover {
            border-color: var(--brand-teal);
            background: var(--metal-teal-tint);
            color: var(--brand-teal);
        }
        
        /* ===== SERVICES SECTION ===== */
        .services {
            padding: var(--space-4xl) var(--space-lg);
            background: linear-gradient(135deg, #e8eaed 0%, #d1d5db 100%);
            position: relative;
            overflow: visible;
            z-index: auto;
        }
        
        /* Decorative Background Elements */
        .services__decoration {
            position: absolute;
            border-radius: 50%;
            opacity: 0.15;
            pointer-events: none;
        }
        
        .services__decoration--1 {
            width: 300px;
            height: 300px;
            background: var(--brand-teal);
            top: 10%;
            left: -5%;
        }
        
        .services__decoration--2 {
            width: 200px;
            height: 200px;
            background: var(--brand-red);
            top: 60%;
            right: -3%;
        }
        
        .services__decoration--3 {
            width: 250px;
            height: 250px;
            background: var(--brand-yellow);
            bottom: 15%;
            left: 50%;
            transform: translateX(-50%);
        }
        
        /* Overlapping circles like the example */
        .services__brand-circles {
            position: absolute;
            top: 5%;
            right: 10%;
            width: 400px;
            height: 200px;
            opacity: 0.2;
            pointer-events: none;
        }
        
        .brand-circle {
            position: absolute;
            border-radius: 50%;
            width: 180px;
            height: 180px;
        }
        
        .brand-circle--red {
            background: var(--brand-red);
            left: 0;
            top: 0;
        }
        
        .brand-circle--teal {
            background: var(--brand-teal);
            left: 100px;
            top: 0;
        }
        
        .brand-circle--yellow {
            background: var(--brand-yellow);
            left: 200px;
            top: 0;
        }
        
        .services__container {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: var(--space-4xl);
        }
        
        .section-title {
            font-size: clamp(2rem, 4vw, 2.5rem);
            font-weight: var(--font-bold);
            color: var(--brand-navy);
            margin-bottom: var(--space-md);
        }
        
        .section-subtitle {
            font-size: 1.125rem;
            color: var(--metal-navy-accent);
            max-width: 600px;
            margin: 0 auto;
        }
        
        .services__grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: var(--space-xl);
            justify-items: center;
        }
        
        /* ===== SERVICE CARDS ===== */
        .service-card {
            background: white;
            border: 2px solid var(--metal-silver);
            border-radius: 24px;
            padding: 0;
            box-shadow: 
                0 8px 32px rgba(0, 0, 0, 0.08),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
            transition: all var(--transition-smooth);
            position: relative;
            overflow: hidden;
            height: 100%;
            width: 100%;
            max-width: 450px;
            display: flex;
            flex-direction: column;
            cursor: pointer;
        }
        
        /* Card Image Container */
        .service-card__image-wrapper {
            position: relative;
            width: 100%;
            height: 220px;
            overflow: hidden;
            border-radius: 22px 22px 0 0;
        }
        
        .service-card__image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform var(--transition-smooth);
        }
        
        .service-card:hover .service-card__image {
            transform: scale(1.05);
        }
        
        /* Icon Badge in Content */
        .service-card__icon-badge {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: var(--card-accent);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
            margin: 0 auto var(--space-lg);
        }
        
        .service-card__icon-badge svg {
            width: 40px;
            height: 40px;
            stroke: white;
            fill: none;
            stroke-width: 2.5;
        }
        
        /* Card Content Area */
        .service-card__content {
            padding: var(--space-2xl);
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            position: relative;
        }
        
        /* Expanded card image height */
        .service-card.expanded .service-card__image-wrapper {
            height: 250px;
        }
        
        /* Interactive Grid Canvas */
        .service-card__grid-canvas {
            position: absolute;
            inset: 0;
            z-index: 10;
            pointer-events: auto;
            border-radius: 0 0 22px 22px;
        }
        
        /* Hide canvas and show static grid on expanded cards */
        .service-card.expanded .service-card__grid-canvas {
            display: none;
        }
        
        .service-card.expanded .service-card__content::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: 
                linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
            background-size: 40px 40px;
            opacity: 0.5;
            z-index: 0;
            pointer-events: none;
            border-radius: 0 0 22px 22px;
        }
        
        .service-card--filled.expanded .service-card__content::before {
            background-image: 
                linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
        }
        
        /* Content items above grid - clickable */
        .service-card__content > *:not(.service-card__grid-canvas) {
            position: relative;
            z-index: 20;
            pointer-events: auto;
        }
        
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--card-accent, var(--brand-teal));
            transform: scaleX(0);
            transition: transform var(--transition-smooth);
            transform-origin: left;
        }
        
        .service-card:hover::before {
            transform: scaleX(1);
        }
        
        .service-card:not(.expanded):hover {
            transform: translateY(-6px) scale(1.02);
            box-shadow: 
                0 16px 56px rgba(0, 0, 0, 0.12),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
            border-color: var(--card-accent, var(--brand-teal));
        }
        
        .service-card--filled:not(.expanded):hover {
            box-shadow: 
                0 16px 56px rgba(0, 0, 0, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
        }
        
        /* Expanded Card State */
        .service-card.expanded {
            position: fixed !important;
            top: 50% !important;
            left: 50% !important;
            transform: translate(-50%, -50%) scale(1) !important;
            z-index: 10001 !important;
            width: 90%;
            max-width: 700px;
            max-height: 85vh;
            overflow-y: auto;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            animation: cardExpand 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
            pointer-events: auto !important;
            isolation: isolate;
        }
        
        @keyframes cardExpand {
            0% {
                opacity: 0;
                transform: translate(-50%, -50%) scale(0.9);
            }
            100% {
                opacity: 1;
                transform: translate(-50%, -50%) scale(1);
            }
        }
        
        /* Card Overlay Backdrop */
        .card-overlay {
            position: fixed;
            inset: 0;
            background: rgba(6, 21, 49, 0.75);
            z-index: 10000;
            opacity: 0;
            pointer-events: none;
            transition: opacity var(--transition-smooth);
            isolation: isolate;
        }
        
        .card-overlay.active {
            opacity: 1;
            pointer-events: auto;
        }
        
        /* Card Color Variants - Using only 3 colors: Red, Teal, Yellow */
        .service-card--workshops {
            --card-accent: var(--brand-red);
        }
        
        .service-card--facilitation {
            --card-accent: var(--brand-teal);
        }
        
        .service-card--visualization {
            --card-accent: var(--brand-yellow);
        }
        
        .service-card--speaking {
            --card-accent: var(--brand-red);
        }
        
        .service-card--fiscal {
            --card-accent: var(--brand-teal);
        }
        
        .service-card--residencies {
            --card-accent: var(--brand-yellow);
        }
        
        .service-card--advising {
            --card-accent: var(--brand-red);
        }
        
        .service-card--research {
            --card-accent: var(--brand-teal);
        }
        
        /* Filled Card Styles */
        .service-card--filled .service-card__content {
            background: var(--card-accent);
            color: white;
            border-radius: 0 0 22px 22px;
        }
        
        .service-card--filled .service-card__icon-badge {
            background: rgba(255, 255, 255, 0.2);
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
        }
        
        .service-card--filled .service-card__icon-badge svg {
            stroke: white;
        }
        
        .service-card--filled .service-card__title {
            color: white;
        }
        
        .service-card--filled .service-card__description {
            color: rgba(255, 255, 255, 0.95);
        }
        
        .service-card--filled .service-card__learn-more {
            border-color: white;
            color: white;
        }
        
        .service-card--filled .service-card__learn-more:hover {
            background: white;
            color: var(--card-accent);
        }
        
        .service-card--filled .service-card__hint {
            color: rgba(255, 255, 255, 0.7);
        }
        
        .service-card--filled .service-card__btn {
            background: rgba(255, 255, 255, 0.15);
            border-color: rgba(255, 255, 255, 0.3);
            color: white;
        }
        
        .service-card--filled .service-card__btn:hover {
            background: rgba(255, 255, 255, 0.25);
            border-color: white;
        }
        
        .service-card--filled .service-card__btn--primary {
            background: white;
            border-color: white;
            color: var(--card-accent);
        }
        
        .service-card--filled .service-card__btn--primary:hover {
            background: rgba(255, 255, 255, 0.9);
        }
        
        .service-card--filled .service-card__actions {
            border-top-color: rgba(255, 255, 255, 0.2);
        }
        
        .service-card--filled .service-card__close {
            background: rgba(255, 255, 255, 0.2);
            border-color: rgba(255, 255, 255, 0.3);
            color: white;
        }
        
        .service-card--filled .service-card__close:hover {
            background: white;
            color: var(--card-accent);
        }
        
        /* Outline Card Styles */
        .service-card--outline {
            background: var(--metal-pearl);
            border-color: var(--card-accent);
        }
        
        .service-card--outline .service-card__icon-badge {
            background: var(--card-accent);
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
        }
        
        .service-card--outline .service-card__icon-badge svg {
            stroke: white;
        }
        
        .service-card--outline .service-card__learn-more {
            border-color: var(--card-accent);
            color: var(--card-accent);
        }
        
        .service-card--outline .service-card__learn-more:hover {
            background: var(--card-accent);
            color: white;
        }
        
        .service-card--outline .service-card__learn-more::before {
            border-color: var(--card-accent);
        }
        
        /* Legacy icon container removed - now using icon-badge */
        
        .service-card__title {
            font-size: 1.5rem;
            font-weight: var(--font-semibold);
            color: var(--brand-navy);
            margin-bottom: var(--space-md);
            text-align: center;
        }
        
        .service-card__description {
            color: var(--metal-navy-accent);
            line-height: 1.7;
            flex: 1;
            display: none;
            margin-bottom: var(--space-lg);
            text-align: left;
        }
        
        .service-card.expanded .service-card__description {
            display: block;
        }
        
        .service-card.expanded .service-card__content {
            align-items: stretch;
            text-align: left;
        }
        
        .service-card.expanded .service-card__title {
            text-align: left;
        }
        
        /* Learn More Button - Default State */
        .service-card__learn-more {
            padding: 12px 32px;
            border-radius: 8px;
            font-weight: var(--font-medium);
            font-size: 1rem;
            text-decoration: none;
            border: 2px solid var(--card-accent, var(--brand-teal));
            background: transparent;
            color: var(--card-accent, var(--brand-teal));
            cursor: pointer;
            transition: all var(--transition-base);
            text-align: center;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: var(--space-sm);
            position: relative;
            overflow: hidden;
            margin-top: auto;
        }
        
        .service-card__learn-more::after {
            content: '→';
            transition: transform var(--transition-base);
        }
        
        .service-card__learn-more:hover {
            background: var(--card-accent, var(--brand-teal));
            color: white;
            transform: scale(1.05);
        }
        
        .service-card__learn-more:hover::after {
            transform: translateX(4px);
        }
        
        /* Pulse animation for learn more button */
        @keyframes pulse-ring {
            0% {
                transform: scale(1);
                opacity: 1;
            }
            100% {
                transform: scale(1.3);
                opacity: 0;
            }
        }
        
        .service-card__learn-more::before {
            content: '';
            position: absolute;
            inset: -2px;
            border: 2px solid var(--card-accent, var(--brand-teal));
            border-radius: 8px;
            animation: pulse-ring 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
        }
        
        .service-card.expanded .service-card__learn-more {
            display: none;
        }
        
        /* Mobile Click Hint */
        .service-card__hint {
            display: none;
            font-size: 0.875rem;
            color: var(--metal-chrome);
            margin-top: var(--space-md);
            font-style: italic;
            transition: all var(--transition-smooth);
        }
        
        .service-card--filled .service-card__hint {
            color: rgba(255, 255, 255, 0.7);
        }
        
        @media (max-width: 768px) {
            .service-card__hint {
                display: block;
            }
        }
        
        /* Desktop Hover Hint */
        @media (min-width: 769px) {
            .service-card:hover .service-card__hint {
                display: block;
                animation: hintFadeIn 0.3s ease-out;
            }
        }
        
        @keyframes hintFadeIn {
            0% {
                opacity: 0;
                transform: translateY(-5px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .service-card.expanded .service-card__hint {
            display: none;
        }
        
        /* Expanded Card Actions */
        .service-card__actions {
            display: none;
            margin-top: var(--space-xl);
            padding-top: var(--space-xl);
            border-top: 1px solid var(--metal-silver);
            grid-template-columns: repeat(3, 1fr);
            gap: var(--space-sm);
        }
        
        .service-card.expanded .service-card__actions {
            display: grid;
        }
        
        .service-card__btn {
            padding: 12px 20px;
            border-radius: 6px;
            font-weight: var(--font-medium);
            font-size: 0.875rem;
            text-decoration: none;
            border: 1px solid var(--metal-silver);
            background: var(--metal-pearl);
            color: var(--brand-navy);
            cursor: pointer;
            transition: all var(--transition-base);
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
            white-space: nowrap;
        }
        
        .service-card__btn:hover {
            transform: translateY(-2px);
            border-color: var(--card-accent, var(--brand-teal));
            color: var(--card-accent, var(--brand-teal));
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        }
        
        .service-card__btn--primary {
            background: linear-gradient(135deg, var(--card-accent, var(--brand-teal)), rgba(255, 255, 255, 0.1));
            border-color: var(--card-accent, var(--brand-teal));
            color: white;
        }
        
        .service-card__btn--primary:hover {
            opacity: 0.9;
            color: white;
        }
        
        /* Close button for expanded card */
        .service-card__close {
            display: none;
            position: absolute;
            top: var(--space-lg);
            right: var(--space-lg);
            background: var(--metal-pearl);
            border: 1px solid var(--metal-silver);
            border-radius: 50%;
            width: 36px;
            height: 36px;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: var(--brand-navy);
            cursor: pointer;
            transition: all var(--transition-base);
            z-index: 10;
        }
        
        .service-card.expanded .service-card__close {
            display: flex;
        }
        
        .service-card__close:hover {
            background: var(--brand-red);
            color: white;
            transform: rotate(90deg);
        }
        
        /* ===== MODAL ===== */
        .modal {
            display: none;
            position: fixed;
            inset: 0;
            z-index: 2000;
            background: rgba(6, 21, 49, 0.5);
            backdrop-filter: blur(8px);
            align-items: center;
            justify-content: center;
            padding: var(--space-lg);
            opacity: 0;
            transition: opacity var(--transition-smooth);
        }
        
        .modal.active {
            display: flex;
            opacity: 1;
        }
        
        .modal__content {
            background: var(--metal-pearl);
            border: 1px solid var(--metal-silver);
            border-radius: 16px;
            padding: var(--space-2xl);
            max-width: 600px;
            width: 100%;
            max-height: 90vh;
            overflow-y: auto;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
            transform: scale(0.9);
            transition: transform var(--transition-smooth);
        }
        
        .modal.active .modal__content {
            transform: scale(1);
        }
        
        .modal__header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: var(--space-xl);
            padding-bottom: var(--space-md);
            border-bottom: 1px solid var(--metal-silver);
        }
        
        .modal__title {
            font-size: 1.5rem;
            font-weight: var(--font-semibold);
            color: var(--brand-navy);
        }
        
        .modal__close {
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--metal-chrome);
            padding: var(--space-sm);
            line-height: 1;
            transition: var(--transition-base);
        }
        
        .modal__close:hover {
            color: var(--brand-navy);
            transform: scale(1.1);
        }
        
        /* ===== FORM ===== */
        .form-group {
            margin-bottom: var(--space-lg);
        }
        
        .form-group label {
            display: block;
            margin-bottom: var(--space-sm);
            font-weight: var(--font-medium);
            color: var(--brand-navy);
        }
        
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px 16px;
            border: 1px solid var(--metal-silver);
            border-radius: 6px;
            background: var(--metal-pearl);
            font-family: inherit;
            font-size: 1rem;
            color: var(--brand-navy);
            transition: var(--transition-base);
        }
        
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--brand-teal);
            box-shadow: 0 0 0 2px rgba(2, 166, 158, 0.1);
        }
        
        .form-group textarea {
            resize: vertical;
            min-height: 100px;
        }
        
        .btn--full {
            width: 100%;
        }
        
        /* ===== PAST PROJECTS SECTION ===== */
        .past-projects {
            padding: var(--space-4xl) var(--space-lg);
            background: linear-gradient(135deg, var(--brand-navy) 0%, var(--metal-navy-accent) 100%);
            position: relative;
            overflow: hidden;
        }
        
        .past-projects .section-title {
            color: var(--brand-white);
        }
        
        .past-projects .section-subtitle {
            color: var(--metal-platinum);
        }
        
        .past-projects__bg {
            position: absolute;
            inset: 0;
            background: 
                radial-gradient(circle at 20% 50%, rgba(2, 166, 158, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(236, 26, 60, 0.1) 0%, transparent 50%);
            z-index: 0;
        }
        
        .past-projects__grid {
            position: absolute;
            inset: 0;
            background-image: 
                linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
            background-size: 50px 50px;
            opacity: 0.3;
            animation: grid-flow 20s linear infinite;
        }
        
        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: var(--space-2xl);
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }
        
        .project-card {
            background: white;
            border: 2px solid var(--metal-silver);
            border-radius: 16px;
            overflow: hidden;
            transition: all var(--transition-smooth);
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
        }
        
        .project-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
            border-color: var(--brand-teal);
        }
        
        .project-card__images {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2px;
            background: var(--metal-silver);
            padding: 2px;
        }
        
        .project-card__image {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        
        .project-card__content {
            padding: var(--space-xl);
        }
        
        .project-card__title {
            font-size: 1.5rem;
            font-weight: var(--font-semibold);
            color: var(--brand-navy);
            margin-bottom: var(--space-md);
        }
        
        .project-card__description {
            color: var(--metal-navy-accent);
            line-height: 1.7;
        }
        
        /* ===== PAST CLIENTS SECTION ===== */
        .past-clients {
            padding: var(--space-4xl) var(--space-lg);
            background: linear-gradient(135deg, #e8eaed 0%, #d1d5db 100%);
            position: relative;
            overflow: hidden;
        }
        
        /* Decorative Background Elements for Past Clients */
        .past-clients__decoration {
            position: absolute;
            border-radius: 50%;
            opacity: 0.15;
            pointer-events: none;
        }
        
        .past-clients__decoration--1 {
            width: 300px;
            height: 300px;
            background: var(--brand-teal);
            top: 10%;
            left: -5%;
        }
        
        .past-clients__decoration--2 {
            width: 200px;
            height: 200px;
            background: var(--brand-red);
            top: 60%;
            right: -3%;
        }
        
        .past-clients__decoration--3 {
            width: 250px;
            height: 250px;
            background: var(--brand-yellow);
            bottom: 15%;
            left: 50%;
            transform: translateX(-50%);
        }
        
        /* Brand Circles for Past Clients */
        .past-clients__brand-circles {
            position: absolute;
            top: 5%;
            right: 10%;
            width: 400px;
            height: 200px;
            opacity: 0.2;
            pointer-events: none;
        }
        
        .testimonial-wheel-container {
            max-width: 1200px;
            margin: 0 auto;
            height: 500px;
            position: relative;
            perspective: 2000px;
            z-index: 1;
        }
        
        .testimonial-wheel {
            width: 100%;
            height: 100%;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            transform-style: preserve-3d;
        }
        
        .testimonial-item {
            position: absolute;
            width: 500px;
            max-width: 90%;
            left: 50%;
            top: 50%;
            transform-origin: center center;
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            opacity: 0.4;
            pointer-events: none;
        }
        
        .testimonial-item.active {
            opacity: 1;
            pointer-events: auto;
            z-index: 10;
        }
        
        .testimonial-item.left,
        .testimonial-item.right {
            opacity: 0.6;
            z-index: 5;
        }
        
        .testimonial-card {
            background: white;
            border: 2px solid var(--metal-silver);
            border-radius: 16px;
            padding: var(--space-2xl);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
            display: flex;
            align-items: center;
            gap: var(--space-xl);
            transition: all var(--transition-smooth);
        }
        
        .testimonial-item.active .testimonial-card {
            border-color: var(--brand-teal);
            box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
        }
        
        .testimonial-logo {
            flex-shrink: 0;
            width: 120px;
            height: 120px;
            border-radius: 12px;
            background: var(--metal-pearl);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            font-weight: var(--font-bold);
            color: var(--brand-teal);
            font-family: 'Georgia', serif;
            border: 2px solid var(--metal-silver);
        }
        
        .testimonial-logo img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            padding: 8px;
        }
        
        .testimonial-content {
            flex: 1;
        }
        
        .testimonial-quote {
            font-size: 1.125rem;
            line-height: 1.7;
            color: var(--brand-navy);
            margin-bottom: var(--space-md);
            font-style: italic;
            position: relative;
        }
        
        .testimonial-quote::before {
            content: '"';
            font-size: 3rem;
            color: var(--brand-teal);
            position: absolute;
            left: -20px;
            top: -10px;
            opacity: 0.3;
        }
        
        .testimonial-author {
            font-weight: var(--font-semibold);
            color: var(--brand-navy);
        }
        
        .testimonial-role {
            color: var(--metal-chrome);
            font-size: 0.875rem;
        }
        
        .wheel-controls {
            display: flex;
            justify-content: center;
            gap: var(--space-md);
            margin-top: var(--space-2xl);
        }
        
        .wheel-nav-btn {
            background: white;
            border: 2px solid var(--metal-silver);
            border-radius: 50%;
            width: 48px;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all var(--transition-base);
            font-size: 1.5rem;
            color: var(--brand-navy);
        }
        
        .wheel-nav-btn:hover {
            background: var(--brand-teal);
            color: white;
            border-color: var(--brand-teal);
            transform: scale(1.1);
        }
        
        .wheel-indicators {
            display: flex;
            gap: var(--space-sm);
            margin-top: var(--space-lg);
        }
        
        .wheel-indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: var(--metal-silver);
            cursor: pointer;
            transition: all var(--transition-base);
        }
        
        .wheel-indicator.active {
            background: var(--brand-teal);
            transform: scale(1.3);
        }
        
        @media (max-width: 768px) {
            .testimonial-wheel-container {
                height: auto;
                min-height: 450px;
            }
            
            .testimonial-item {
                width: 90%;
            }
            
            .testimonial-card {
                flex-direction: column;
                text-align: center;
            }
            
            .testimonial-logo {
                width: 100px;
                height: 100px;
            }
            
            .projects-grid {
                grid-template-columns: 1fr;
            }
        }
        
        /* ===== CONTACT SECTION ===== */
        .contact-section {
            background: linear-gradient(135deg, var(--brand-navy) 0%, var(--metal-navy-accent) 100%);
            padding: var(--space-4xl) var(--space-lg);
            position: relative;
            overflow: hidden;
        }
        
        .contact-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: 
                radial-gradient(circle at 20% 50%, rgba(2, 166, 158, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(236, 26, 60, 0.1) 0%, transparent 50%);
            z-index: 0;
        }
        
        .contact-section__container {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }
        
        .contact-section .section-title {
            color: var(--brand-white);
            text-align: center;
            margin-bottom: var(--space-md);
        }
        
        .contact-section .section-subtitle {
            color: var(--metal-platinum);
            text-align: center;
            margin-bottom: var(--space-4xl);
        }
        
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: var(--space-4xl);
            align-items: start;
        }
        
        .contact-form-wrapper {
            background: rgba(248, 249, 250, 0.05);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            padding: var(--space-2xl);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        }
        
        .contact-form-wrapper h3 {
            color: var(--brand-white);
            font-size: 1.5rem;
            margin-bottom: var(--space-lg);
        }
        
        .contact-form-wrapper .form-group label {
            color: var(--metal-platinum);
        }
        
        .contact-form-wrapper .form-group input,
        .contact-form-wrapper .form-group textarea,
        .contact-form-wrapper .form-group select {
            background: rgba(248, 249, 250, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: var(--brand-white);
        }
        
        .contact-form-wrapper .form-group input::placeholder,
        .contact-form-wrapper .form-group textarea::placeholder {
            color: var(--metal-chrome);
        }
        
        .contact-form-wrapper .form-group input:focus,
        .contact-form-wrapper .form-group textarea:focus,
        .contact-form-wrapper .form-group select:focus {
            background: rgba(248, 249, 250, 0.15);
            border-color: var(--brand-teal);
        }
        
        .contact-info-panel {
            display: flex;
            flex-direction: column;
            gap: var(--space-xl);
        }
        
        .contact-info-card {
            background: rgba(248, 249, 250, 0.05);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            padding: var(--space-xl);
        }
        
        .contact-info-card h3 {
            color: var(--brand-white);
            font-size: 1.25rem;
            margin-bottom: var(--space-lg);
        }
        
        .contact-method {
            margin-bottom: var(--space-md);
        }
        
        .contact-method:last-child {
            margin-bottom: 0;
        }
        
        .contact-label {
            display: block;
            color: var(--metal-chrome);
            font-size: 0.875rem;
            margin-bottom: var(--space-xs);
        }
        
        .contact-link {
            color: var(--brand-teal);
            text-decoration: none;
            font-weight: var(--font-medium);
            transition: var(--transition-base);
        }
        
        .contact-link:hover {
            color: var(--brand-yellow);
        }
        
        .contact-hours {
            color: var(--metal-platinum);
            line-height: 1.7;
        }
        
        /* ===== FOOTER ===== */
        .footer {
            background: var(--brand-navy);
            color: var(--brand-white);
            padding: var(--space-3xl) var(--space-lg) var(--space-lg);
            margin-top: 0;
        }
        
        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: var(--space-2xl);
            margin-bottom: var(--space-xl);
        }
        
        .footer-section h4 {
            font-size: 1.125rem;
            margin-bottom: var(--space-md);
            color: var(--brand-teal);
        }
        
        .footer-section p {
            color: var(--metal-platinum);
            line-height: 1.7;
        }
        
        .footer-section a {
            color: var(--brand-teal);
            text-decoration: none;
            transition: var(--transition-base);
        }
        
        .footer-section a:hover {
            color: var(--brand-yellow);
        }
        
        .footer-bottom {
            max-width: 1400px;
            margin: 0 auto;
            padding-top: var(--space-lg);
            border-top: 1px solid var(--metal-navy-accent);
            text-align: center;
            color: var(--metal-chrome);
        }
        
        /* ===== RESPONSIVE ===== */
        @media (max-width: 1024px) {
            .hero__content {
                grid-template-columns: 1fr;
                gap: var(--space-2xl);
            }
            
            .hero__visual {
                order: -1;
            }
            
            .services__grid {
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            }
            
            .contact-grid {
                grid-template-columns: 1fr;
                gap: var(--space-2xl);
            }
        }
        
        @media (max-width: 768px) {
            .nav__toggle {
                display: flex;
            }
            
            .nav__menu {
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: var(--metal-pearl);
                border-bottom: 1px solid var(--metal-silver);
                flex-direction: column;
                padding: var(--space-lg);
                display: none;
            }
            
            .nav__menu.active {
                display: flex;
            }
            
            .hero {
                min-height: auto;
                padding: 100px var(--space-md) var(--space-2xl);
            }
            
            .hero__cta {
                flex-direction: column;
            }
            
            .btn {
                width: 100%;
            }
            
            .services {
                padding: var(--space-2xl) var(--space-md);
            }
            
            .services__grid {
                grid-template-columns: 1fr;
            }
            
            .service-card__actions {
                grid-template-columns: 1fr;
            }
            
            .service-card.expanded {
                width: 95%;
                max-height: 90vh;
            }
            
            .contact-section {
                padding: var(--space-2xl) var(--space-md);
            }
            
            .modal__content {
                padding: var(--space-lg);
            }
        }
        
        /* ===== ANIMATIONS ===== */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease-out;
        }
        
        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* ===== UTILITY CLASSES ===== */
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border-width: 0;
        }