/* ========================================
   ENDRI & LEO - Award-Winning Premium Website
   Agency-Level Design System
======================================== */

/* CSS Variables - Premium Design Tokens */
:root {
    /* Colors - Luxury Palette */
    --color-primary: #C9A962;
    --color-primary-dark: #A8893F;
    --color-primary-light: #E0C88A;
    --color-primary-glow: rgba(201, 169, 98, 0.4);
    --color-blue: #1C2E4B;
    --color-blue-light: #2A4066;
    --color-blue-dark: #14223A;
    --color-blue-glow: rgba(28, 46, 75, 0.4);
    --color-dark: #0A0E14;
    --color-dark-medium: #12171F;
    --color-dark-light: #1A2029;
    --color-text: #8B949E;
    --color-text-light: #6E7681;
    --color-white: #FFFFFF;
    --color-off-white: #F8F9FA;
    --color-cream: #FDFCF9;
    --color-border: rgba(255, 255, 255, 0.08);
    --color-border-light: rgba(0, 0, 0, 0.06);
    --color-border-blue: rgba(28, 46, 75, 0.12);
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
    
    /* Spacing */
    --section-padding: 180px;
    --section-padding-sm: 100px;
    --container-width: 1440px;
    --container-padding: 60px;
    
    /* Transitions */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
    --transition-fast: 0.2s var(--ease-out-expo);
    --transition-base: 0.4s var(--ease-out-expo);
    --transition-slow: 0.8s var(--ease-out-expo);
    --transition-slower: 1.2s var(--ease-out-expo);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.08);
    --shadow-xl: 0 30px 100px rgba(0, 0, 0, 0.12);
    --shadow-glow: 0 0 60px var(--color-primary-glow);
    --shadow-blue: 0 20px 60px rgba(28, 46, 75, 0.2);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 40px;
    --radius-full: 9999px;
}

/* ========================================
   RESET & BASE
======================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html.lenis, html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

body {
    font-family: var(--font-primary);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text);
    background: var(--color-white);
    overflow-x: hidden;
}

body.no-scroll {
    overflow: hidden;
}

body.loading {
    cursor: wait;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* Selection */
::selection {
    background: var(--color-primary);
    color: var(--color-dark);
}

/* Container */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

@media (max-width: 768px) {
    .container {
        padding: 0 24px;
    }
}

/* ========================================
   ANIMATED GRAIN OVERLAY
======================================== */
.grain-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9998;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* ========================================
   PAGE TRANSITION
======================================== */
.page-transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--color-dark);
    z-index: 10001;
    transform: translateY(-100%);
    pointer-events: none;
}

.page-transition-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-blue-dark), var(--color-dark));
}

.page-transition.active {
    transform: translateY(0);
    transition: transform 0.8s var(--ease-in-out);
}

.page-transition.exit {
    transform: translateY(100%);
    transition: transform 0.8s var(--ease-in-out);
}

/* ========================================
   PRELOADER
======================================== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-blue-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.6s var(--ease-out-expo), visibility 0.6s;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-content {
    text-align: center;
    position: relative;
}

.preloader-logo {
    position: relative;
    width: 140px;
    height: 140px;
    margin: 0 auto 48px;
}

.logo-svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.logo-circle {
    fill: none;
    stroke: var(--color-primary);
    stroke-width: 1;
    stroke-dasharray: 283;
    stroke-dashoffset: 283;
    filter: drop-shadow(0 0 20px var(--color-primary-glow));
}

.preloader-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: 6px;
}

.preloader-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 32px;
}

.preloader-percent {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-white);
    letter-spacing: 2px;
}

.preloader-percent::after {
    content: '%';
}

.preloader-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--color-text-light);
}

.preloader-bar {
    width: 200px;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    overflow: hidden;
    margin: 0 auto;
}

.preloader-progress {
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--color-primary), var(--color-primary-light));
}

/* ========================================
   CUSTOM CURSOR
======================================== */
.cursor, .cursor-follower {
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    display: none;
    will-change: transform;
}

@media (min-width: 1024px) and (hover: hover) {
    .cursor, .cursor-follower {
        display: block;
    }
    
    .cursor {
        width: 8px;
        height: 8px;
        transform: translate(-50%, -50%);
        mix-blend-mode: difference;
    }
    
    .cursor-dot {
        width: 100%;
        height: 100%;
        background: var(--color-white);
        border-radius: 50%;
        transition: transform 0.15s var(--ease-out-expo);
    }
    
    .cursor.hover .cursor-dot {
        transform: scale(0);
    }
    
    .cursor-follower {
        width: 48px;
        height: 48px;
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 50%;
        transform: translate(-50%, -50%);
        transition: width 0.4s var(--ease-out-expo), height 0.4s var(--ease-out-expo), border-color 0.3s;
        display: flex;
        align-items: center;
        justify-content: center;
        mix-blend-mode: difference;
    }
    
    .cursor-text {
        font-size: 10px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: var(--color-white);
        opacity: 0;
        transform: scale(0.5);
        transition: all 0.3s var(--ease-out-expo);
    }
    
    .cursor-follower.view {
        width: 100px;
        height: 100px;
        border-color: var(--color-primary);
        background: rgba(201, 169, 98, 0.1);
        backdrop-filter: blur(4px);
    }
    
    .cursor-follower.view .cursor-text {
        opacity: 1;
        transform: scale(1);
    }
}

/* ========================================
   SCROLL PROGRESS
======================================== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: transparent;
    z-index: 9999;
}

.scroll-progress-bar {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--color-blue), var(--color-primary));
}

/* ========================================
   SCROLL TO TOP
======================================== */
.scroll-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--color-blue), var(--color-blue-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.9);
    transition: all var(--transition-base);
    z-index: 100;
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.scroll-to-top:hover {
    background: var(--color-primary);
    color: var(--color-dark);
    transform: translateY(-4px) scale(1.05);
    box-shadow: var(--shadow-glow);
}

@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 24px;
        right: 24px;
        width: 48px;
        height: 48px;
    }
}

/* ========================================
   HEADER
======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 24px 0;
    transition: all var(--transition-slow);
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(10, 14, 20, 0.8) 0%, transparent 100%);
    opacity: 1;
    transition: opacity var(--transition-base);
    z-index: -1;
    pointer-events: none;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
    padding: 16px 0;
}

.header.scrolled::before {
    opacity: 0;
}

.header-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 768px) {
    .header-container {
        padding: 0 24px;
    }
}

.header-logo img {
    height: 40px;
    transition: all var(--transition-base);
}

.header-nav {
    display: none;
    gap: 48px;
}

@media (min-width: 1024px) {
    .header-nav {
        display: flex;
    }
}

.nav-link {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    padding: 8px 0;
    letter-spacing: 0.5px;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--color-primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--transition-base);
}

.nav-link:hover {
    color: var(--color-white);
}

.nav-link:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.header.scrolled .nav-link {
    color: var(--color-text);
}

.header.scrolled .nav-link:hover {
    color: var(--color-dark);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.lang-switch {
    display: none;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
}

@media (min-width: 768px) {
    .lang-switch {
        display: flex;
    }
}

.lang-active {
    color: var(--color-white);
}

.header.scrolled .lang-active {
    color: var(--color-dark);
}

.lang-divider {
    color: var(--color-text-light);
    opacity: 0.5;
}

.lang-link {
    color: var(--color-text-light);
}

.lang-link:hover {
    color: var(--color-primary);
}

/* ========================================
   BUTTONS
======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 13px;
    font-weight: 600;
    padding: 16px 32px;
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.btn-text {
    position: relative;
    z-index: 1;
}

.btn-icon {
    position: relative;
    z-index: 1;
    display: flex;
    transition: transform var(--transition-base);
}

.btn:hover .btn-icon {
    transform: translateX(4px);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.btn:hover::before {
    opacity: 1;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: var(--color-dark);
    box-shadow: 0 4px 20px rgba(201, 169, 98, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 40px rgba(201, 169, 98, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-blue-dark) 100%);
    color: var(--color-white);
    box-shadow: var(--shadow-blue);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(28, 46, 75, 0.3);
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: var(--color-blue);
    border-color: var(--color-blue);
}

.btn-white {
    background: var(--color-white);
    color: var(--color-dark);
    box-shadow: var(--shadow-lg);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-large {
    padding: 20px 44px;
    font-size: 14px;
}

.btn-full {
    width: 100%;
}

.header .btn {
    display: none;
}

@media (min-width: 1024px) {
    .header .btn {
        display: inline-flex;
    }
}

/* ========================================
   MENU TOGGLE
======================================== */
.menu-toggle {
    width: 28px;
    height: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 1001;
}

@media (min-width: 1024px) {
    .menu-toggle {
        display: none;
    }
}

.menu-toggle span {
    width: 100%;
    height: 2px;
    background: var(--color-white);
    border-radius: 2px;
    transition: all var(--transition-base);
    transform-origin: center;
}

.menu-toggle span:nth-child(2) {
    width: 70%;
    margin-left: auto;
}

.header.scrolled .menu-toggle span {
    background: var(--color-dark);
}

.menu-toggle.active span:first-child {
    transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(10px);
}

.menu-toggle.active span:last-child {
    transform: translateY(-9px) rotate(-45deg);
}

/* ========================================
   MOBILE MENU
======================================== */
.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    z-index: 999;
    pointer-events: none;
}

.mobile-menu.active {
    pointer-events: all;
}

.mobile-menu-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-blue-dark) 0%, var(--color-dark) 100%);
    transform: translateX(100%);
    transition: transform 0.6s var(--ease-out-expo);
}

.mobile-menu.active .mobile-menu-bg {
    transform: translateX(0);
}

.mobile-menu-content {
    position: relative;
    height: 100%;
    padding: 120px 40px 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.4s var(--ease-out-expo) 0.2s;
}

.mobile-menu.active .mobile-menu-content {
    opacity: 1;
    transform: translateX(0);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 32px;
    font-weight: 600;
    color: var(--color-white);
    padding: 12px 0;
    opacity: 0.6;
    transition: all var(--transition-base);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-nav-link:hover {
    opacity: 1;
    color: var(--color-primary);
    padding-left: 16px;
}

.mobile-nav-number {
    font-size: 12px;
    font-weight: 500;
    color: var(--color-primary);
    letter-spacing: 2px;
}

.mobile-menu-footer {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mobile-phone, .mobile-email {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
}

.mobile-phone:hover, .mobile-email:hover {
    color: var(--color-primary);
}

.mobile-social {
    display: flex;
    gap: 16px;
    margin-top: 16px;
}

.mobile-social a {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 2px;
}

.mobile-social a:hover {
    color: var(--color-primary);
}

/* ========================================
   HERO
======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 100px;
    overflow: hidden;
    background: var(--color-dark);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.8) contrast(1.05);
    will-change: transform;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg, 
        rgba(10, 14, 20, 0.95) 0%, 
        rgba(28, 46, 75, 0.8) 40%,
        rgba(10, 14, 20, 0.85) 100%
    );
}

.hero-grain {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.04;
    pointer-events: none;
    z-index: 1;
}

.hero-floating {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.floating-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(201, 169, 98, 0.1);
}

.floating-circle-1 {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -200px;
    animation: floatSlow 20s ease-in-out infinite;
}

.floating-circle-2 {
    width: 400px;
    height: 400px;
    bottom: -100px;
    left: -100px;
    animation: floatSlow 15s ease-in-out infinite reverse;
}

.floating-line {
    position: absolute;
    width: 1px;
    height: 200px;
    background: linear-gradient(180deg, transparent, rgba(201, 169, 98, 0.2), transparent);
}

.floating-line-1 {
    top: 20%;
    left: 10%;
    animation: floatLine 8s ease-in-out infinite;
}

.floating-line-2 {
    top: 40%;
    right: 15%;
    animation: floatLine 10s ease-in-out infinite reverse;
}

@keyframes floatSlow {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(30px, 30px) rotate(5deg); }
}

@keyframes floatLine {
    0%, 100% { transform: translateY(0) scaleY(1); opacity: 0.5; }
    50% { transform: translateY(-30px) scaleY(1.2); opacity: 1; }
}

.hero-content {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .hero-content {
        padding: 0 24px;
    }
}

/* Hero elements - initially hidden for animation */
.hero-tag,
.hero-title-line,
.hero-subtitle,
.hero-cta,
.hero-scroll,
.hero-stats .stat-item {
    opacity: 0;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    font-size: 11px;
    font-weight: 600;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 32px;
}

.tag-dot {
    width: 8px;
    height: 8px;
    background: var(--color-primary);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 var(--color-primary-glow); }
    50% { opacity: 0.8; box-shadow: 0 0 0 10px transparent; }
}

.hero-title {
    font-family: var(--font-primary);
    font-size: clamp(48px, 10vw, 140px);
    font-weight: 700;
    color: var(--color-white);
    line-height: 0.95;
    margin-bottom: 32px;
    letter-spacing: -0.04em;
}

.hero-title-line {
    display: block;
    overflow: hidden;
}

.hero-title-accent {
    color: var(--color-primary);
    position: relative;
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: rgba(255, 255, 255, 0.5);
    max-width: 560px;
    margin-bottom: 48px;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

@media (max-width: 640px) {
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-cta .btn {
        width: 100%;
        justify-content: center;
    }
}

.hero-scroll {
    position: absolute;
    bottom: 48px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--color-white);
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    z-index: 3;
}

.scroll-indicator {
    width: 24px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    position: relative;
}

.scroll-dot {
    width: 4px;
    height: 8px;
    background: var(--color-primary);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
    50% { transform: translateX(-50%) translateY(16px); opacity: 0; }
}

.hero-stats {
    position: absolute;
    right: var(--container-padding);
    top: 50%;
    transform: translateY(-50%);
    display: none;
    flex-direction: column;
    gap: 48px;
    z-index: 3;
}

@media (min-width: 1200px) {
    .hero-stats {
        display: flex;
    }
}

.stat-item {
    text-align: right;
    position: relative;
}

.stat-item::before {
    content: '';
    position: absolute;
    right: 0;
    bottom: -24px;
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15));
}

.stat-item:last-child::before {
    display: none;
}

.stat-number {
    font-size: 56px;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
    letter-spacing: -2px;
}

.stat-suffix {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-primary);
}

.stat-label {
    display: block;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 8px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ========================================
   MARQUEE SECTION
======================================== */
.marquee-section {
    background: var(--color-dark);
    padding: 32px 0;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.marquee {
    display: flex;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.marquee::before,
.marquee::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
}

.marquee::before {
    left: 0;
    background: linear-gradient(90deg, var(--color-dark), transparent);
}

.marquee::after {
    right: 0;
    background: linear-gradient(-90deg, var(--color-dark), transparent);
}

.marquee-content {
    display: flex;
    animation: marqueeScroll 30s linear infinite;
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.marquee-item {
    font-size: clamp(24px, 4vw, 48px);
    font-weight: 600;
    color: var(--color-white);
    padding: 0 24px;
    opacity: 0.3;
    transition: opacity var(--transition-base);
}

.marquee-item:hover {
    opacity: 1;
}

.marquee-separator {
    font-size: 16px;
    color: var(--color-primary);
    padding: 0 24px;
    display: flex;
    align-items: center;
}

/* ========================================
   SECTION COMMON STYLES
======================================== */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    font-size: 11px;
    font-weight: 700;
    color: var(--color-blue);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 24px;
}

.section-tag::before {
    content: '';
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-blue));
}

.section-title {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 700;
    color: var(--color-dark);
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.section-title-large {
    font-size: clamp(40px, 7vw, 80px);
    font-weight: 700;
    color: var(--color-dark);
    line-height: 1.05;
    letter-spacing: -0.03em;
}

.text-accent {
    color: var(--color-primary);
}

.section-header {
    margin-bottom: 80px;
}

.section-header-center {
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header-center .section-tag::before {
    display: none;
}

.section-desc {
    font-size: 18px;
    color: var(--color-text);
    margin-top: 24px;
    line-height: 1.7;
}

/* ========================================
   INTRO SECTION
======================================== */
.intro {
    padding: var(--section-padding) 0;
    background: var(--color-off-white);
    position: relative;
}

.intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-border-blue), transparent);
}

.intro-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: start;
}

@media (min-width: 1024px) {
    .intro-content {
        grid-template-columns: 1fr 1fr;
        gap: 100px;
        align-items: center;
    }
}

.intro-text {
    font-size: 17px;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 24px;
}

.intro-text.large-text {
    font-size: 24px;
    font-weight: 500;
    color: var(--color-dark);
    line-height: 1.5;
}

.intro-stats {
    display: flex;
    gap: 48px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--color-border-light);
}

.intro-stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--color-blue);
    line-height: 1;
    display: block;
}

.intro-stat-label {
    font-size: 13px;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 8px;
    display: block;
}

/* ========================================
   SERVICES SECTION
======================================== */
.services {
    padding: var(--section-padding) 0;
    background: var(--color-white);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(28, 46, 75, 0.02) 100%);
    pointer-events: none;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 640px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.service-card {
    background: var(--color-white);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-slow);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-blue-dark) 100%);
    opacity: 0;
    transition: opacity var(--transition-base);
    z-index: 0;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card > * {
    position: relative;
    z-index: 1;
    transition: color var(--transition-base);
}

.service-card:hover .service-number {
    color: var(--color-primary);
}

.service-card:hover .service-title {
    color: var(--color-white);
}

.service-card:hover .service-desc {
    color: rgba(255, 255, 255, 0.7);
}

.service-card:hover .service-icon svg {
    stroke: var(--color-primary);
}

.service-card:hover .service-link {
    color: var(--color-primary);
}

.service-number {
    font-size: 12px;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: 2px;
    margin-bottom: 24px;
}

.service-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 24px;
    transition: transform var(--transition-base);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(-5deg);
}

.service-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--color-dark);
    transition: stroke var(--transition-base);
}

.service-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.service-desc {
    font-size: 14px;
    color: var(--color-text);
    line-height: 1.7;
    margin-bottom: 24px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-link svg {
    transition: transform var(--transition-base);
}

.service-link:hover svg {
    transform: translateX(4px);
}

/* ========================================
   PROCESS SECTION
======================================== */
.process {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, var(--color-off-white) 0%, var(--color-white) 100%);
}

.process-timeline {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 60px;
}

@media (min-width: 768px) {
    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (min-width: 1200px) {
    .process-timeline {
        grid-template-columns: repeat(4, 1fr);
    }
}

.process-line {
    display: none;
}

@media (min-width: 1200px) {
    .process-line {
        display: block;
        position: absolute;
        top: 40px;
        left: 12.5%;
        width: 75%;
        height: 1px;
        background: linear-gradient(90deg, var(--color-primary), var(--color-blue), var(--color-primary));
        opacity: 0.3;
    }
}

.process-step {
    position: relative;
    text-align: center;
    padding: 32px 24px;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border-light);
    transition: all var(--transition-base);
}

.process-step:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-primary);
}

.process-number {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: var(--color-dark);
}

.process-icon {
    width: 64px;
    height: 64px;
    margin: 16px auto 24px;
    background: linear-gradient(135deg, rgba(28, 46, 75, 0.05) 0%, rgba(201, 169, 98, 0.05) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-blue);
    transition: all var(--transition-base);
}

.process-step:hover .process-icon {
    background: var(--color-blue);
    color: var(--color-primary);
}

.process-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 12px;
}

.process-desc {
    font-size: 14px;
    color: var(--color-text);
    line-height: 1.6;
}

/* ========================================
   EXPERTISE SECTION
======================================== */
.expertise {
    padding: var(--section-padding) 0;
    background: var(--color-white);
    position: relative;
    overflow: hidden;
}

.expertise::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-border-blue), transparent);
}

.expertise-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
}

@media (min-width: 1024px) {
    .expertise-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 100px;
    }
}

.expertise-image {
    position: relative;
}

.expertise-image-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.expertise-image-wrapper img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
}

.expertise-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 40%, rgba(28, 46, 75, 0.6) 100%);
}

.expertise-badge {
    position: absolute;
    bottom: -24px;
    right: -24px;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
}

@media (max-width: 1023px) {
    .expertise-badge {
        bottom: -16px;
        right: 16px;
        width: 100px;
        height: 100px;
    }
}

.badge-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-dark);
    line-height: 1;
}

.badge-text {
    font-size: 11px;
    font-weight: 600;
    color: var(--color-dark);
    text-align: center;
    opacity: 0.8;
}

.expertise-list {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.expertise-item {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: var(--color-off-white);
    border-radius: var(--radius-md);
    border: 1px solid transparent;
    transition: all var(--transition-base);
    position: relative;
}

.expertise-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background: linear-gradient(180deg, var(--color-primary), var(--color-blue));
    border-radius: 0 2px 2px 0;
    transition: height var(--transition-base);
}

.expertise-item:hover {
    background: var(--color-white);
    box-shadow: var(--shadow-md);
    transform: translateX(8px);
    border-color: var(--color-border-blue);
}

.expertise-item:hover::before {
    height: 50%;
}

.expertise-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

.expertise-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.expertise-text h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 8px;
}

.expertise-text p {
    font-size: 14px;
    color: var(--color-text);
    line-height: 1.6;
}

/* ========================================
   PROJECTS SECTION
======================================== */
.projects {
    padding: var(--section-padding) 0;
    background: var(--color-off-white);
}

.projects-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .projects-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }
    
    .project-card-large {
        grid-row: span 2;
    }
}

.project-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
}

.project-image {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
}

.project-card-large .project-image {
    aspect-ratio: 3/4;
}

@media (min-width: 1024px) {
    .project-card-large .project-image {
        aspect-ratio: auto;
        height: 100%;
    }
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out-expo);
}

.project-card:hover .project-image img {
    transform: scale(1.08);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 50%, rgba(28, 46, 75, 0.9) 100%);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 32px;
    transform: translateY(20px);
    opacity: 0;
    transition: all var(--transition-base);
}

.project-card:hover .project-info {
    transform: translateY(0);
    opacity: 1;
}

.project-category {
    font-size: 11px;
    font-weight: 600;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
    display: block;
}

.project-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 4px;
}

.project-location {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.projects-cta {
    text-align: center;
    margin-top: 60px;
}

/* ========================================
   TESTIMONIALS SECTION
======================================== */
.testimonials {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, var(--color-white) 0%, var(--color-off-white) 100%);
}

.testimonials-slider {
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    gap: 32px;
    transition: transform 0.6s var(--ease-out-expo);
}

.testimonial-card {
    flex: 0 0 100%;
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: 48px;
    position: relative;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border-light);
}

@media (min-width: 768px) {
    .testimonial-card {
        flex: 0 0 calc(50% - 16px);
    }
}

@media (min-width: 1200px) {
    .testimonial-card {
        flex: 0 0 calc(33.333% - 21.333px);
    }
}

.testimonial-quote {
    color: var(--color-primary);
    margin-bottom: 24px;
}

.testimonial-text {
    font-size: 17px;
    color: var(--color-dark);
    line-height: 1.7;
    margin-bottom: 32px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--color-blue), var(--color-blue-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: var(--color-primary);
}

.testimonial-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-dark);
    display: block;
}

.testimonial-role {
    font-size: 13px;
    color: var(--color-text-light);
}

.testimonial-rating {
    position: absolute;
    top: 48px;
    right: 48px;
    color: var(--color-primary);
    font-size: 14px;
    letter-spacing: 2px;
}

.testimonials-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 48px;
}

.testimonial-btn {
    width: 56px;
    height: 56px;
    border: 1px solid var(--color-border-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-blue);
    transition: all var(--transition-base);
}

.testimonial-btn:hover {
    background: var(--color-blue);
    border-color: var(--color-blue);
    color: var(--color-white);
}

.testimonials-dots {
    display: flex;
    gap: 8px;
}

.testimonials-dots .dot {
    width: 8px;
    height: 8px;
    background: var(--color-border-blue);
    border-radius: 50%;
    cursor: pointer;
    transition: all var(--transition-base);
}

.testimonials-dots .dot.active {
    width: 32px;
    border-radius: 4px;
    background: var(--color-primary);
}

/* ========================================
   CTA SECTION
======================================== */
.cta {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, var(--color-blue-dark) 0%, var(--color-blue) 50%, var(--color-blue-light) 100%);
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
    background: var(--color-primary);
    opacity: 0.08;
    filter: blur(80px);
}

.cta-shape-1 {
    width: 600px;
    height: 600px;
    top: -300px;
    right: -200px;
    animation: floatSlow 15s ease-in-out infinite;
}

.cta-shape-2 {
    width: 400px;
    height: 400px;
    bottom: -200px;
    left: -100px;
    animation: floatSlow 12s ease-in-out infinite reverse;
}

.cta-shape-3 {
    width: 300px;
    height: 300px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.05;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.cta-text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    line-height: 1.7;
}

/* ========================================
   FAQ SECTION
======================================== */
.faq {
    padding: var(--section-padding) 0;
    background: var(--color-white);
}

.faq-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
}

@media (min-width: 1024px) {
    .faq-wrapper {
        grid-template-columns: 1fr 1.5fr;
        gap: 100px;
    }
}

.faq-intro {
    font-size: 17px;
    color: var(--color-text);
    line-height: 1.7;
    margin-top: 24px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition-base);
}

.faq-item:hover {
    border-color: var(--color-border-blue);
}

.faq-item.active {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    padding: 24px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    font-size: 17px;
    font-weight: 600;
    color: var(--color-dark);
    text-align: left;
    transition: all var(--transition-base);
}

.faq-item.active .faq-question {
    color: var(--color-primary);
}

.faq-icon {
    width: 24px;
    height: 24px;
    position: relative;
    flex-shrink: 0;
}

.faq-icon span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 2px;
    background: var(--color-dark);
    transform: translate(-50%, -50%);
    transition: all var(--transition-base);
}

.faq-icon span:last-child {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.active .faq-icon span {
    background: var(--color-primary);
}

.faq-item.active .faq-icon span:last-child {
    transform: translate(-50%, -50%) rotate(0deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease-out-expo);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 32px 24px;
    font-size: 15px;
    color: var(--color-text);
    line-height: 1.7;
}

/* ========================================
   CONTACT SECTION
======================================== */
.contact {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, var(--color-off-white) 0%, var(--color-cream) 100%);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
}

@media (min-width: 1024px) {
    .contact-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 100px;
    }
}

.contact-desc {
    font-size: 17px;
    color: var(--color-text);
    line-height: 1.7;
    margin-top: 24px;
}

.contact-details {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--color-blue), var(--color-blue-dark));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--color-primary);
    transition: all var(--transition-base);
}

.contact-item:hover .contact-icon {
    transform: scale(1.05) rotate(-3deg);
}

.contact-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 4px;
}

.contact-text p, .contact-text a {
    font-size: 16px;
    color: var(--color-dark);
    font-weight: 500;
}

.contact-text a:hover {
    color: var(--color-primary);
}

.contact-hours {
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--color-border-light);
}

.contact-hours h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 8px;
}

.contact-hours p {
    font-size: 14px;
    color: var(--color-text);
    line-height: 1.6;
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: 48px;
    position: relative;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-border-light);
    overflow: hidden;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-blue), var(--color-primary), var(--color-blue));
}

@media (max-width: 640px) {
    .contact-form-wrapper {
        padding: 32px 24px;
    }
}

.form-header {
    margin-bottom: 32px;
}

.form-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 8px;
}

.form-header p {
    font-size: 14px;
    color: var(--color-text-light);
}

.form-group {
    margin-bottom: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

@media (max-width: 640px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.form-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-input, .form-textarea, .form-select {
    width: 100%;
    padding: 16px 20px;
    font-size: 15px;
    font-family: inherit;
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-md);
    background: var(--color-off-white);
    color: var(--color-dark);
    transition: all var(--transition-base);
}

.form-input:focus, .form-textarea:focus, .form-select:focus {
    outline: none;
    border-color: var(--color-blue);
    background: var(--color-white);
    box-shadow: 0 0 0 4px rgba(28, 46, 75, 0.1);
}

.form-input::placeholder, .form-textarea::placeholder {
    color: var(--color-text-light);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236E7681' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 48px;
}

.form-notice {
    font-size: 13px;
    color: var(--color-text-light);
    text-align: center;
    margin-top: 16px;
}

.form-notice a {
    color: var(--color-primary);
}

.form-success {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-white);
    border-radius: var(--radius-xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 48px;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.form-success.active {
    opacity: 1;
    visibility: visible;
}

.success-icon {
    color: var(--color-primary);
    margin-bottom: 24px;
}

.form-success h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 12px;
}

.form-success p {
    font-size: 16px;
    color: var(--color-text);
}

/* ========================================
   FOOTER
======================================== */
.footer {
    background: linear-gradient(180deg, var(--color-blue-dark) 0%, var(--color-dark) 100%);
    padding: 100px 0 40px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

@media (min-width: 1024px) {
    .footer-top {
        grid-template-columns: 1fr 2fr;
        gap: 80px;
    }
}

.footer-logo {
    height: 44px;
    margin-bottom: 20px;
}

.footer-tagline {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    transition: all var(--transition-base);
}

.social-link:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-dark);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

@media (min-width: 768px) {
    .footer-links {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer-col h4 {
    font-size: 13px;
    font-weight: 700;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.footer-col a, .footer-col p {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 12px;
    transition: all var(--transition-base);
}

.footer-col a:hover {
    color: var(--color-primary);
    transform: translateX(4px);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    padding-top: 40px;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

.footer-legal a:hover {
    color: var(--color-primary);
}

.footer-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    overflow: hidden;
}

.footer-line {
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--color-blue), var(--color-primary), var(--color-blue));
    animation: footerLine 3s ease-in-out infinite;
}

@keyframes footerLine {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

/* ========================================
   RESPONSIVE ADJUSTMENTS
======================================== */
@media (max-width: 768px) {
    :root {
        --section-padding: 100px;
        --section-padding-sm: 60px;
    }
}

/* ========================================
   ANIMATION UTILITIES
======================================== */
[data-animate] {
    opacity: 0;
}

[data-animate].animated {
    opacity: 1;
}

/* Split text lines */
.split-text .line {
    overflow: hidden;
}

.split-text .line-inner {
    display: block;
    transform: translateY(100%);
    transition: transform 0.8s var(--ease-out-expo);
}

.split-text.animated .line-inner {
    transform: translateY(0);
}

/* Reveal animations */
.reveal-up {
    transform: translateY(60px);
    opacity: 0;
    transition: all 0.8s var(--ease-out-expo);
}

.reveal-up.animated {
    transform: translateY(0);
    opacity: 1;
}

/* Section visibility */
.section-hidden {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s var(--ease-out-expo);
}

.section-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Magnetic button effect handled by JS */
.btn-magnetic {
    will-change: transform;
}
