/* ========================================
   MADA Solutions - Premium Design System
   ======================================== */

/* CSS Variables */
:root {
    /* Primary Colors */
    --primary: #0a1628;
    --primary-light: #1a2d4a;
    --accent: #c9a227;
    --accent-light: #e8c547;
    --accent-gradient: linear-gradient(135deg, #c9a227 0%, #f0d55c 50%, #c9a227 100%);
    
    /* Neutrals */
    --white: #ffffff;
    --gray-50: #fafafa;
    --gray-100: #f5f5f5;
    --gray-200: #e5e5e5;
    --gray-300: #d4d4d4;
    --gray-400: #a3a3a3;
    --gray-500: #737373;
    --gray-600: #525252;
    --gray-700: #404040;
    --gray-800: #262626;
    --gray-900: #171717;
    --black: #0a0a0a;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
    
    /* 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;
    --space-5xl: 128px;
    
    /* Transitions */
    --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-spring: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 0 40px rgba(201, 162, 39, 0.3);
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 24px;
    --radius-full: 9999px;
}

/* Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-700);
    background-color: var(--white);
    overflow-x: hidden;
}

body.loading {
    overflow: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

/* ========================================
   Loader
   ======================================== */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.loader-logo img {
    height: 60px;
    margin-bottom: var(--space-xl);
    animation: pulse 2s infinite;
}

.loader-bar {
    width: 200px;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.loader-progress {
    height: 100%;
    background: var(--accent-gradient);
    width: 0;
    animation: loading 1.5s ease forwards;
}

@keyframes loading {
    0% { width: 0; }
    100% { width: 100%; }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* ========================================
   Cursor Follower
   ======================================== */
.cursor-follower {
    width: 20px;
    height: 20px;
    border: 2px solid var(--accent);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.15s ease, opacity 0.15s ease;
    opacity: 0;
}

.cursor-follower.visible {
    opacity: 1;
}

.cursor-follower.hover {
    transform: scale(2);
    background: rgba(201, 162, 39, 0.1);
}

@media (hover: none) {
    .cursor-follower {
        display: none;
    }
}

/* ========================================
   Typography
   ======================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.1;
    color: var(--primary);
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: var(--space-lg);
}

.section-tag-light {
    color: var(--accent-light);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: var(--space-lg);
    line-height: 1.15;
}

.section-description {
    font-size: 1.125rem;
    color: var(--gray-500);
    max-width: 540px;
}

.text-gradient {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-light {
    background: linear-gradient(135deg, var(--white) 0%, var(--accent-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

/* ========================================
   Buttons
   ======================================== */
.btn-primary {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    background: var(--primary);
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: var(--radius-full);
    overflow: hidden;
    transition: var(--transition-base);
    cursor: pointer;
    border: none;
}

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

.btn-primary.btn-light {
    background: var(--white);
    color: var(--primary);
}

.btn-primary.btn-light:hover {
    background: var(--gray-100);
}

.btn-primary.btn-large {
    padding: var(--space-lg) var(--space-2xl);
    font-size: 15px;
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover .btn-shine {
    left: 100%;
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-lg);
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition-base);
}

.btn-ghost:hover {
    color: var(--accent-light);
}

.btn-ghost svg {
    animation: bounce 2s infinite;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    border-radius: var(--radius-full);
    transition: var(--transition-base);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(5px); }
    60% { transform: translateY(3px); }
}

/* ========================================
   Navigation
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-lg) 0;
    transition: var(--transition-base);
}

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

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

.logo {
    display: flex;
    align-items: center;
}

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

.logo .logo-dark {
    display: block;
}

.logo .logo-light {
    display: none;
}

.navbar.scrolled .logo .logo-dark {
    display: none;
}

.navbar.scrolled .logo .logo-light {
    display: block;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-2xl);
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
    position: relative;
    padding: var(--space-xs) 0;
    transition: var(--transition-base);
}

.navbar.scrolled .nav-link {
    color: var(--gray-600);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition-base);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

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

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
    color: var(--primary);
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-lg);
    background: var(--white);
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: var(--transition-base);
}

.navbar.scrolled .nav-cta {
    background: var(--primary);
    color: var(--white);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.nav-cta svg {
    transition: var(--transition-base);
}

.nav-cta:hover svg {
    transform: translateX(3px);
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-5xl) var(--space-xl);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-image {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?w=1920&q=85') center/cover no-repeat;
    transform: scale(1.1);
    animation: heroZoom 20s ease infinite alternate;
}

@keyframes heroZoom {
    0% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10, 22, 40, 0.92) 0%,
        rgba(10, 22, 40, 0.85) 50%,
        rgba(10, 22, 40, 0.75) 100%
    );
}

.hero-bg-grain {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' 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");
    opacity: 0.03;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-lg);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-light);
    margin-bottom: var(--space-2xl);
    backdrop-filter: blur(10px);
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    animation: blink 2s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--white);
    margin-bottom: var(--space-xl);
    letter-spacing: -1px;
}

.title-line {
    display: block;
}

.title-accent {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 500;
    background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 540px;
    margin: 0 auto var(--space-2xl);
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: var(--space-2xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
    color: rgba(255, 255, 255, 0.4);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--accent), transparent);
    animation: scrollLine 2s infinite;
}

@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    50.01% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

.hero-float {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.hero-float-1 {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -200px;
    animation: float1 15s ease-in-out infinite;
}

.hero-float-2 {
    width: 400px;
    height: 400px;
    bottom: -100px;
    left: -100px;
    animation: float2 12s ease-in-out infinite;
}

.hero-float-3 {
    width: 300px;
    height: 300px;
    top: 50%;
    right: 10%;
    animation: float3 10s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-30px, 30px); }
}

@keyframes float2 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(20px, -20px); }
}

@keyframes float3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-20px, 10px) scale(1.1); }
}

/* ========================================
   Stats Bar
   ======================================== */
.stats-bar {
    background: var(--primary);
    padding: var(--space-3xl) 0;
}

.stats-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--space-xl);
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 150px;
}

.stat-number {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.stat-suffix {
    font-size: clamp(1.5rem, 2vw, 2rem);
    font-weight: 600;
    color: var(--accent);
    margin-left: 2px;
}

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

.stat-divider {
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
}

/* ========================================
   Services Section
   ======================================== */
.services {
    padding: var(--space-5xl) 0;
    background: var(--gray-50);
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto var(--space-4xl);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-xl);
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: var(--transition-base);
    box-shadow: var(--shadow-sm);
}

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

.service-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.service-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 22, 40, 0.4) 0%, transparent 50%);
}

.service-card-content {
    padding: var(--space-xl);
}

.service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    border-radius: var(--radius-lg);
    color: var(--accent);
    margin-bottom: var(--space-lg);
    transition: var(--transition-base);
}

.service-card:hover .service-icon {
    background: var(--primary);
    color: var(--accent);
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
}

.service-card p {
    font-size: 0.938rem;
    color: var(--gray-500);
    margin-bottom: var(--space-lg);
    line-height: 1.7;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    transition: var(--transition-base);
}

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

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

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

/* ========================================
   Featured Section
   ======================================== */
.featured {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.featured-bg {
    position: absolute;
    inset: 0;
}

.featured-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(10, 22, 40, 0.95) 0%,
        rgba(10, 22, 40, 0.8) 50%,
        rgba(10, 22, 40, 0.4) 100%
    );
}

.featured-content {
    position: relative;
    z-index: 1;
    padding: var(--space-4xl) 0;
}

.featured-text {
    max-width: 540px;
}

.featured-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    margin-bottom: var(--space-lg);
}

.featured-description {
    font-size: 1.063rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: var(--space-xl);
}

.featured-list {
    margin-bottom: var(--space-xl);
}

.featured-list li {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-md);
}

.featured-list svg {
    color: var(--accent);
    flex-shrink: 0;
}

/* ========================================
   Why Us Section
   ======================================== */
.why-us {
    padding: var(--space-5xl) 0;
    background: var(--white);
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
}

.why-us-content .section-description {
    margin-bottom: var(--space-2xl);
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
}

.benefit-item {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    transition: var(--transition-base);
}

.benefit-item:hover {
    background: var(--gray-100);
    transform: translateY(-2px);
}

.benefit-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: var(--radius-md);
    color: var(--accent);
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.benefit-text h4 {
    font-size: 0.938rem;
    margin-bottom: var(--space-xs);
}

.benefit-text p {
    font-size: 0.813rem;
    color: var(--gray-500);
    margin: 0;
}

.why-us-images {
    position: relative;
}

.image-stack {
    position: relative;
    padding: var(--space-2xl);
}

.stack-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
}

.stack-image img {
    width: 100%;
    height: auto;
}

.stack-image-1 {
    position: relative;
    z-index: 2;
    max-width: 380px;
}

.stack-image-2 {
    position: absolute;
    top: 50%;
    right: 0;
    width: 260px;
    z-index: 1;
    transform: translateY(-30%);
}

.stack-accent {
    position: absolute;
    width: 200px;
    height: 200px;
    background: var(--accent-gradient);
    border-radius: var(--radius-2xl);
    bottom: 0;
    left: 0;
    z-index: 0;
    opacity: 0.3;
}

/* ========================================
   Testimonial Section
   ======================================== */
.testimonial {
    padding: var(--space-5xl) 0;
    background: var(--gray-50);
}

.testimonial-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.quote-icon {
    color: var(--accent);
    opacity: 0.3;
    margin-bottom: var(--space-xl);
}

blockquote {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-style: italic;
    color: var(--primary);
    line-height: 1.6;
    margin-bottom: var(--space-2xl);
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
}

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--white);
    box-shadow: var(--shadow-md);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info {
    text-align: left;
}

.author-info strong {
    display: block;
    font-size: 1rem;
    color: var(--primary);
}

.author-info span {
    font-size: 0.875rem;
    color: var(--gray-500);
}

/* ========================================
   CTA Section
   ======================================== */
.cta {
    position: relative;
    padding: var(--space-5xl) 0;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
}

.cta-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
}

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

.cta h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    margin-bottom: var(--space-lg);
}

.cta p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--space-2xl);
}

.cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

.cta .btn-primary {
    background: var(--accent);
    color: var(--primary);
}

.cta .btn-primary:hover {
    background: var(--accent-light);
}

/* ========================================
   Contact Page - Hero
   ======================================== */
.contact-hero {
    position: relative;
    padding: calc(var(--space-5xl) + 80px) 0 var(--space-4xl);
    overflow: hidden;
}

.contact-hero-bg {
    position: absolute;
    inset: 0;
}

.contact-hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
}

.contact-hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.contact-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--white);
    margin-bottom: var(--space-lg);
}

.contact-hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
}

/* ========================================
   Contact Section
   ======================================== */
.contact-section {
    padding: var(--space-5xl) 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: start;
}

.contact-intro h2 {
    font-size: 1.75rem;
    margin-bottom: var(--space-md);
}

.contact-intro p {
    font-size: 1.063rem;
    color: var(--gray-500);
    line-height: 1.8;
    margin-bottom: var(--space-2xl);
}

.contact-method {
    display: flex;
    gap: var(--space-lg);
    padding: var(--space-xl);
    background: var(--gray-50);
    border-radius: var(--radius-xl);
    margin-bottom: var(--space-2xl);
    transition: var(--transition-base);
}

.contact-method:hover {
    background: var(--gray-100);
}

.contact-method-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: var(--radius-lg);
    color: var(--accent);
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}

.contact-method-label {
    display: block;
    font-size: 13px;
    color: var(--gray-500);
    margin-bottom: var(--space-xs);
}

.contact-method-value {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
    transition: var(--transition-base);
}

.contact-method-value:hover {
    color: var(--accent);
}

.contact-checklist {
    padding: var(--space-xl);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: var(--radius-xl);
    margin-bottom: var(--space-2xl);
}

.contact-checklist h3 {
    font-size: 1rem;
    color: var(--white);
    margin-bottom: var(--space-lg);
}

.contact-checklist ul {
    margin-bottom: 0;
}

.contact-checklist li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-md);
    font-size: 0.938rem;
}

.contact-checklist li:last-child {
    margin-bottom: 0;
}

.check-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--accent);
    flex-shrink: 0;
}

.contact-visual {
    position: relative;
}

.contact-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.contact-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.contact-image:hover img {
    transform: scale(1.05);
}

.contact-image-1 {
    grid-column: 1 / -1;
    height: 280px;
}

.contact-image-2 {
    height: 200px;
}

.contact-image-3 {
    height: 200px;
}

.contact-image-accent {
    position: absolute;
    width: 150px;
    height: 150px;
    background: var(--accent-gradient);
    border-radius: var(--radius-2xl);
    bottom: -20px;
    right: -20px;
    z-index: -1;
    opacity: 0.4;
}

/* ========================================
   FAQ Section
   ======================================== */
.faq {
    padding: var(--space-5xl) 0;
    background: var(--gray-50);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-xl);
}

.faq-item {
    background: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.faq-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.faq-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    border-radius: var(--radius-lg);
    color: var(--accent);
    margin-bottom: var(--space-lg);
}

.faq-item h3 {
    font-size: 1.063rem;
    margin-bottom: var(--space-sm);
}

.faq-item p {
    font-size: 0.938rem;
    color: var(--gray-500);
    line-height: 1.7;
    margin: 0;
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background: var(--primary);
    padding: var(--space-4xl) 0 var(--space-xl);
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: var(--space-4xl);
    padding-bottom: var(--space-3xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo img {
    height: 44px;
    margin-bottom: var(--space-lg);
}

.footer-brand p {
    font-size: 0.938rem;
    color: rgba(255, 255, 255, 0.5);
    max-width: 300px;
    line-height: 1.7;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.footer-column h4 {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white);
    margin-bottom: var(--space-lg);
}

.footer-column ul li {
    margin-bottom: var(--space-sm);
}

.footer-column a {
    font-size: 0.938rem;
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition-base);
}

.footer-column a:hover {
    color: var(--accent);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-xl);
}

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

.footer-credit {
    color: rgba(255, 255, 255, 0.3);
}

/* ========================================
   Animations
   ======================================== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1024px) {
    .why-us-grid {
        grid-template-columns: 1fr;
        gap: var(--space-3xl);
    }
    
    .why-us-images {
        order: -1;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: var(--space-3xl);
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 var(--space-lg);
    }
    
    .nav-links {
        display: none;
    }
    
    .logo img {
        height: 32px;
    }
    
    .nav-cta {
        padding: var(--space-sm) var(--space-md);
        font-size: 12px;
    }
    
    .nav-cta span {
        display: none;
    }
    
    .nav-cta svg {
        margin: 0;
    }
    
    .hero {
        padding: var(--space-4xl) var(--space-lg);
        min-height: auto;
        padding-top: 140px;
        padding-bottom: 80px;
    }
    
    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: var(--space-md);
    }
    
    .hero-badge {
        font-size: 10px;
        padding: var(--space-xs) var(--space-md);
    }
    
    .hero-scroll-indicator {
        display: none;
    }
    
    .stats-bar {
        padding: var(--space-2xl) 0;
    }
    
    .stats-grid {
        flex-direction: column;
        gap: var(--space-xl);
    }
    
    .stat-divider {
        width: 60px;
        height: 1px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .section-header {
        margin-bottom: var(--space-2xl);
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .services {
        padding: var(--space-3xl) 0;
    }
    
    .services-grid {
        gap: var(--space-lg);
    }
    
    .service-card-image {
        height: 180px;
    }
    
    .featured {
        min-height: auto;
    }
    
    .featured-content {
        padding: var(--space-3xl) 0;
    }
    
    .featured-title {
        font-size: 1.75rem;
    }
    
    .why-us {
        padding: var(--space-3xl) 0;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .stack-image-2 {
        display: none;
    }
    
    .stack-image-1 {
        max-width: 100%;
    }
    
    .testimonial {
        padding: var(--space-3xl) 0;
    }
    
    blockquote {
        font-size: 1.125rem;
    }
    
    .cta {
        padding: var(--space-3xl) 0;
    }
    
    .cta h2 {
        font-size: 1.75rem;
    }
    
    .cta-actions {
        flex-direction: column;
    }
    
    .contact-hero {
        padding-top: 120px;
        padding-bottom: var(--space-2xl);
    }
    
    .contact-hero-title {
        font-size: 2rem;
    }
    
    .contact-section {
        padding: var(--space-3xl) 0;
    }
    
    .faq {
        padding: var(--space-3xl) 0;
    }
    
    .footer {
        padding: var(--space-2xl) 0 var(--space-lg);
    }
    
    .footer-main {
        gap: var(--space-xl);
        padding-bottom: var(--space-xl);
    }
    
    .footer-logo img {
        height: 36px;
    }
    
    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-lg);
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: var(--space-sm);
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-md);
    }
    
    .navbar {
        padding: var(--space-md) 0;
    }
    
    .nav-container {
        padding: 0 var(--space-md);
    }
    
    .logo img {
        height: 28px;
    }
    
    .hero {
        padding-top: 120px;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .title-accent {
        font-size: 1.6rem;
    }
    
    .hero-description {
        font-size: 0.938rem;
    }
    
    .btn-primary {
        padding: var(--space-md) var(--space-lg);
        font-size: 13px;
    }
    
    .btn-primary.btn-large {
        padding: var(--space-md) var(--space-xl);
    }
    
    .stat-item {
        min-width: auto;
    }
    
    .service-card-content {
        padding: var(--space-lg);
    }
    
    .contact-intro h2 {
        font-size: 1.5rem;
    }
    
    .contact-method {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-checklist {
        padding: var(--space-lg);
    }
    
    .contact-image-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-image-1,
    .contact-image-2,
    .contact-image-3 {
        height: 180px;
    }
    
    .faq-grid {
        gap: var(--space-md);
    }
    
    .faq-item {
        padding: var(--space-lg);
    }
    
    .footer-links-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-column {
        text-align: center;
    }
    
    .footer-brand {
        text-align: center;
    }
    
    .footer-brand p {
        max-width: none;
    }
}
