/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
    /* Primary Colors - Dark Modern Theme with Purple/Orange Accents */
    --primary-color: 259 94% 65%; /* #7C3AED - Electric Purple */
    --primary-dark: 259 94% 51%; /* #6D28D9 */
    --primary-light: 259 94% 95%; /* #FAF5FF */
    
    /* Secondary Colors - Orange/Amber */
    --secondary-color: 25 95% 53%; /* #F97316 - Vibrant Orange */
    --secondary-dark: 20 91% 48%; /* #EA580C */
    --secondary-light: 25 95% 95%; /* #FFF7ED */
    
    /* Neutral Colors - Dark Mode Theme */
    --background: 222 84% 5%; /* #0F0F23 - Very Dark Blue */
    --surface: 220 13% 18%; /* #1E293B - Dark Surface */
    --surface-light: 215 28% 17%; /* #1E293B */
    --text-primary: 210 40% 98%; /* #F8FAFC - Almost White */
    --text-secondary: 215 20% 65%; /* #94A3B8 - Light Gray */
    --text-muted: 215 16% 47%; /* #64748B - Muted Gray */
    --border: 215 28% 17%; /* #1E293B */
    --border-light: 217 32% 17%; /* #334155 */
    
    /* Accent Colors */
    --success: 142 76% 36%; /* #059669 */
    --warning: 43 96% 56%; /* #F59E0B */
    --error: 0 84% 60%; /* #EF4444 */
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    --spacing-4xl: 6rem;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 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);
    
    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.375rem;
    --radius-lg: 0.5rem;
    --radius-xl: 0.75rem;
    --radius-2xl: 1rem;
    
    /* Transitions */
    --transition-fast: 150ms ease-in-out;
    --transition-normal: 250ms ease-in-out;
    --transition-slow: 350ms ease-in-out;
    
    /* Container Sizes */
    --container-xs: 480px;
    --container-sm: 640px;
    --container-md: 768px;
    --container-lg: 1024px;
    --container-xl: 1280px;
    --container-2xl: 1536px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    font-weight: var(--font-weight-normal);
    line-height: 1.6;
    color: hsl(var(--text-primary));
    background: linear-gradient(135deg, hsl(var(--background)) 0%, hsl(222 84% 3%) 100%);
    background-attachment: fixed;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ===== UTILITY CLASSES ===== */
.container {
    width: 100%;
    max-width: var(--container-xl);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

@media (min-width: 640px) {
    .container {
        padding: 0 var(--spacing-xl);
    }
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-4xl);
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: var(--font-weight-bold);
    color: hsl(var(--text-primary));
    margin-bottom: var(--spacing-lg);
    line-height: 1.2;
}

.section-header p {
    font-size: 1.125rem;
    color: hsl(var(--text-secondary));
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
}

.highlight {
    color: hsl(var(--primary-color));
    font-weight: var(--font-weight-bold);
}

/* ===== BUTTON STYLES ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-md) var(--spacing-xl);
    font-size: 1rem;
    font-weight: var(--font-weight-medium);
    text-decoration: none;
    border: none;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    min-height: 44px;
}

.btn-primary {
    background: linear-gradient(135deg, hsl(var(--primary-color)), hsl(var(--primary-dark)));
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, hsl(var(--primary-dark)), hsl(var(--primary-color)));
}

.btn-secondary {
    background: hsl(var(--surface));
    color: hsl(var(--primary-color));
    border: 2px solid hsl(var(--primary-color));
}

.btn-secondary:hover {
    background: hsl(var(--primary-color));
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-large {
    padding: var(--spacing-lg) var(--spacing-2xl);
    font-size: 1.125rem;
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

/* ===== NAVIGATION ===== */
.navbar {
    background: rgba(15, 15, 35, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid hsl(var(--border));
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all var(--transition-normal);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-lg) var(--spacing-xl);
    max-width: var(--container-xl);
    margin: 0 auto;
    width: 100%;
    min-height: 60px;
}

.nav-logo h2 {
    color: hsl(var(--primary-color));
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    margin: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-xl);
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: var(--font-weight-medium);
    transition: color var(--transition-fast);
    position: relative;
    padding: var(--spacing-sm) 0;
}

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

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: hsl(var(--primary-color));
    border-radius: 1px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: var(--spacing-sm);
}

.bar {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: var(--transition-fast);
    border-radius: 2px;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(15, 15, 35, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: var(--spacing-4xl);
        transition: left var(--transition-normal);
        box-shadow: var(--shadow-lg);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

/* ===== HERO SECTION ===== */
.hero {
    padding: calc(80px + var(--spacing-4xl)) 0 var(--spacing-4xl);
    background: linear-gradient(135deg, hsl(var(--primary-light)), hsl(var(--surface)));
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(27,115,232,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-4xl);
    align-items: center;
    max-width: var(--container-xl);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: var(--font-weight-bold);
    line-height: 1.1;
    color: hsl(var(--text-primary));
    margin-bottom: var(--spacing-lg);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: hsl(var(--text-secondary));
    margin-bottom: var(--spacing-2xl);
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-3xl);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 2rem;
    font-weight: var(--font-weight-bold);
    color: hsl(var(--primary-color));
    margin-bottom: var(--spacing-xs);
}

.stat p {
    color: hsl(var(--text-secondary));
    font-weight: var(--font-weight-medium);
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
}

@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--spacing-lg);
    }
    
    .stat h3 {
        font-size: 1.5rem;
    }
}

/* ===== MODERN HERO SECTION ===== */
.hero-modern {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: calc(80px + var(--spacing-2xl)) 0 var(--spacing-4xl);
    overflow: hidden;
}

.hero-gradient-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at top, hsl(var(--primary-color) / 0.1) 0%, transparent 70%),
                radial-gradient(ellipse at bottom right, hsl(var(--secondary-color) / 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--spacing-4xl);
    align-items: center;
    max-width: var(--container-xl);
    margin: 0 auto;
}

.hero-content-modern {
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    background: hsl(var(--surface) / 0.8);
    backdrop-filter: blur(10px);
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--radius-full);
    border: 1px solid hsl(var(--border));
    margin-bottom: var(--spacing-xl);
    font-size: 0.875rem;
    font-weight: var(--font-weight-medium);
    color: hsl(var(--text-secondary));
}

.badge-icon {
    font-size: 1rem;
}

.hero-title-modern {
    font-size: 3.5rem;
    font-weight: var(--font-weight-bold);
    line-height: 1.1;
    margin-bottom: var(--spacing-xl);
    color: hsl(var(--text-primary));
}

.text-gradient {
    background: linear-gradient(135deg, hsl(var(--primary-color)), hsl(var(--primary-dark)));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-secondary {
    background: linear-gradient(135deg, hsl(var(--secondary-color)), hsl(var(--secondary-dark)));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle-modern {
    font-size: 1.25rem;
    line-height: 1.6;
    color: hsl(var(--text-secondary));
    margin-bottom: var(--spacing-2xl);
    max-width: 500px;
}

.hero-features {
    display: flex;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-2xl);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: hsl(var(--text-secondary));
    font-size: 0.875rem;
    font-weight: var(--font-weight-medium);
}

.feature-icon {
    width: 32px;
    height: 32px;
    background: hsl(var(--primary-color) / 0.1);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: hsl(var(--primary-color));
}

.hero-cta {
    display: flex;
    gap: var(--spacing-lg);
    align-items: center;
}

.btn-modern {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-lg) var(--spacing-xl);
    border-radius: var(--radius-xl);
    font-weight: var(--font-weight-semibold);
    text-decoration: none;
    transition: all var(--transition-normal);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary-modern {
    background: linear-gradient(135deg, hsl(var(--primary-color)), hsl(var(--primary-dark)));
    color: white;
    box-shadow: 0 8px 25px hsl(var(--primary-color) / 0.3);
}

.btn-primary-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px hsl(var(--primary-color) / 0.4);
}

.btn-secondary-modern {
    background: hsl(var(--surface));
    color: hsl(var(--text-primary));
    border: 1px solid hsl(var(--border));
    backdrop-filter: blur(10px);
}

.btn-secondary-modern:hover {
    background: hsl(var(--surface) / 0.8);
    border-color: hsl(var(--primary-color));
}

.hero-visual {
    position: relative;
    z-index: 1;
}

.hero-card-stack {
    position: relative;
    width: 100%;
    height: 400px;
}

.hero-card {
    position: absolute;
    width: 280px;
    height: 180px;
    background: hsl(var(--surface));
    border-radius: var(--radius-xl);
    border: 1px solid hsl(var(--border));
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px);
    transition: all var(--transition-slow);
}

.hero-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.card-1 {
    top: 0;
    left: 0;
    background: linear-gradient(135deg, hsl(var(--primary-color) / 0.1), hsl(var(--surface)));
}

.card-2 {
    top: 60px;
    right: 0;
    background: linear-gradient(135deg, hsl(var(--secondary-color) / 0.1), hsl(var(--surface)));
}

.card-3 {
    bottom: 0;
    left: 40px;
    background: linear-gradient(135deg, hsl(var(--success) / 0.1), hsl(var(--surface)));
}

.card-content {
    padding: var(--spacing-xl);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-content h3 {
    font-size: 0.875rem;
    font-weight: var(--font-weight-medium);
    color: hsl(var(--text-secondary));
    margin-bottom: var(--spacing-sm);
}

.metric {
    font-size: 2rem;
    font-weight: var(--font-weight-bold);
    color: hsl(var(--text-primary));
}

.chart-mini {
    height: 20px;
    background: linear-gradient(90deg, hsl(var(--primary-color) / 0.3), hsl(var(--primary-color)));
    border-radius: var(--radius-sm);
}

.rating-stars {
    color: hsl(var(--secondary-color));
}

.progress-bar {
    height: 6px;
    background: hsl(var(--border));
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.progress-fill {
    width: 75%;
    height: 100%;
    background: linear-gradient(90deg, hsl(var(--success)), hsl(var(--success) / 0.8));
    border-radius: var(--radius-sm);
}

/* Mobile responsiveness for modern hero */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-3xl);
        text-align: center;
    }
    
    .hero-visual {
        order: -1;
    }
    
    .hero-card-stack {
        height: 300px;
        transform: scale(0.8);
    }
    
    .hero-title-modern {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .hero-title-modern {
        font-size: 2.5rem;
    }
    
    .hero-subtitle-modern {
        font-size: 1.125rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: var(--spacing-lg);
        align-items: center;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: var(--spacing-md);
        align-items: center;
    }
    
    .btn-modern {
        width: 100%;
        justify-content: center;
        max-width: 300px;
    }
    
    .hero-card-stack {
        transform: scale(0.7);
        height: 250px;
    }
}

/* ===== PAGE HERO ===== */
.page-hero {
    padding: calc(80px + var(--spacing-3xl)) 0 var(--spacing-3xl);
    background: linear-gradient(135deg, hsl(var(--primary-light)), hsl(var(--surface)));
    text-align: center;
}

.page-hero-content h1 {
    font-size: 3rem;
    font-weight: var(--font-weight-bold);
    color: hsl(var(--text-primary));
    margin-bottom: var(--spacing-lg);
    line-height: 1.2;
}

.page-hero-content p {
    font-size: 1.25rem;
    color: hsl(var(--text-secondary));
    max-width: 600px;
    margin: 0 auto var(--spacing-lg);
}

.privacy-meta {
    display: flex;
    justify-content: center;
    gap: var(--spacing-xl);
    margin-top: var(--spacing-lg);
}

.privacy-meta span {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: hsl(var(--text-muted));
    font-size: 0.875rem;
}

@media (max-width: 768px) {
    .page-hero-content h1 {
        font-size: 2.25rem;
    }
    
    .page-hero-content p {
        font-size: 1.125rem;
    }
    
    .privacy-meta {
        flex-direction: column;
        align-items: center;
        gap: var(--spacing-sm);
    }
}

/* ===== SERVICES SECTION ===== */
.services {
    padding: var(--spacing-4xl) 0;
}

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

.service-card {
    background: hsl(var(--surface));
    padding: var(--spacing-2xl);
    border-radius: var(--radius-xl);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: all var(--transition-normal);
    border: 1px solid hsl(var(--border));
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, hsl(var(--primary-color)), hsl(var(--secondary-color)));
}

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

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, hsl(var(--primary-color)), hsl(var(--secondary-color)));
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-lg);
}

.service-icon i {
    font-size: 1.5rem;
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: var(--font-weight-semibold);
    color: hsl(var(--text-primary));
    margin-bottom: var(--spacing-md);
}

.service-card p {
    color: hsl(var(--text-secondary));
    margin-bottom: var(--spacing-lg);
    line-height: 1.6;
}

.service-card ul {
    list-style: none;
}

.service-card li {
    color: hsl(var(--text-secondary));
    margin-bottom: var(--spacing-sm);
    position: relative;
    padding-left: var(--spacing-lg);
}

.service-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: hsl(var(--success));
    font-weight: var(--font-weight-bold);
}

/* ===== CASE STUDIES SECTION ===== */
.case-studies {
    padding: var(--spacing-4xl) 0;
    background: hsl(var(--surface));
}

.case-studies-grid {
    display: grid;
    gap: var(--spacing-3xl);
}

.case-study {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
    background: hsl(var(--background));
    border-radius: var(--radius-2xl);
    padding: var(--spacing-3xl);
    box-shadow: var(--shadow-lg);
}

.case-study:nth-child(even) {
    direction: rtl;
}

.case-study:nth-child(even) > * {
    direction: ltr;
}

.case-study-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.case-study-content h3 {
    font-size: 1.75rem;
    font-weight: var(--font-weight-semibold);
    color: hsl(var(--text-primary));
    margin-bottom: var(--spacing-md);
}

.case-study-content p {
    color: hsl(var(--text-secondary));
    margin-bottom: var(--spacing-xl);
    line-height: 1.6;
}

.case-study-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

.metric {
    text-align: center;
}

.metric-value {
    display: block;
    font-size: 1.75rem;
    font-weight: var(--font-weight-bold);
    color: hsl(var(--primary-color));
    margin-bottom: var(--spacing-xs);
}

.metric-label {
    color: hsl(var(--text-secondary));
    font-size: 0.875rem;
    font-weight: var(--font-weight-medium);
}

@media (max-width: 768px) {
    .case-study {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        padding: var(--spacing-xl);
    }
    
    .case-study:nth-child(even) {
        direction: ltr;
    }
    
    .case-study-metrics {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--spacing-md);
    }
    
    .metric-value {
        font-size: 1.5rem;
    }
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
    padding: var(--spacing-4xl) 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-2xl);
}

.testimonial {
    background: hsl(var(--surface));
    padding: var(--spacing-2xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.testimonial:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.stars {
    margin-bottom: var(--spacing-lg);
}

.stars i {
    color: hsl(45 90% 55%);
    margin-right: var(--spacing-xs);
}

.testimonial-content p {
    color: hsl(var(--text-primary));
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: var(--spacing-xl);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h4 {
    color: hsl(var(--text-primary));
    font-weight: var(--font-weight-semibold);
    margin-bottom: var(--spacing-xs);
}

.testimonial-author p {
    color: hsl(var(--text-secondary));
    font-size: 0.875rem;
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== CTA SECTION ===== */
.cta {
    padding: var(--spacing-4xl) 0;
    background: linear-gradient(135deg, hsl(var(--primary-color)), hsl(var(--secondary-color)));
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="20" cy="80" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="80" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta h2 {
    font-size: 2.5rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--spacing-lg);
    line-height: 1.2;
}

.cta p {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-2xl);
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-2xl);
}

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

.cta .btn-primary:hover {
    background: hsl(var(--background));
    transform: translateY(-2px);
}

.cta .btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.cta .btn-secondary:hover {
    background: white;
    color: hsl(var(--primary-color));
}

.cta-guarantee {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-md);
    opacity: 0.9;
}

.cta-guarantee i {
    font-size: 1.25rem;
}

@media (max-width: 768px) {
    .cta h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-guarantee {
        flex-direction: column;
        text-align: center;
    }
}

/* ===== ABOUT PAGE STYLES ===== */
.story {
    padding: var(--spacing-4xl) 0;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-4xl);
    align-items: center;
}

.story-text h2 {
    font-size: 2.5rem;
    font-weight: var(--font-weight-bold);
    color: hsl(var(--text-primary));
    margin-bottom: var(--spacing-lg);
}

.story-text p {
    color: hsl(var(--text-secondary));
    margin-bottom: var(--spacing-lg);
    line-height: 1.6;
}

.story-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
    margin-top: var(--spacing-2xl);
}

.story-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
}

@media (max-width: 768px) {
    .story-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
    }
    
    .story-text h2 {
        font-size: 2rem;
    }
    
    .story-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

.mission {
    padding: var(--spacing-4xl) 0;
    background: hsl(var(--surface));
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-2xl);
}

.mission-card {
    background: hsl(var(--background));
    padding: var(--spacing-2xl);
    border-radius: var(--radius-xl);
    text-align: center;
    transition: all var(--transition-normal);
}

.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.mission-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, hsl(var(--primary-color)), hsl(var(--secondary-color)));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-lg);
}

.mission-icon i {
    font-size: 2rem;
    color: white;
}

.mission-card h3 {
    font-size: 1.5rem;
    font-weight: var(--font-weight-semibold);
    color: hsl(var(--text-primary));
    margin-bottom: var(--spacing-md);
}

.mission-card p {
    color: hsl(var(--text-secondary));
    line-height: 1.6;
}

.team {
    padding: var(--spacing-4xl) 0;
}

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

.team-member {
    background: hsl(var(--surface));
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.member-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.member-info {
    padding: var(--spacing-xl);
    text-align: center;
}

.member-info h3 {
    font-size: 1.25rem;
    font-weight: var(--font-weight-semibold);
    color: hsl(var(--text-primary));
    margin-bottom: var(--spacing-xs);
}

.member-role {
    color: hsl(var(--primary-color));
    font-weight: var(--font-weight-medium);
    margin-bottom: var(--spacing-md);
}

.member-bio {
    color: hsl(var(--text-secondary));
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: var(--spacing-lg);
}

.member-social {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
}

.member-social a {
    width: 40px;
    height: 40px;
    background: hsl(var(--primary-light));
    color: hsl(var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.member-social a:hover {
    background: hsl(var(--primary-color));
    color: white;
    transform: translateY(-2px);
}

.achievements {
    padding: var(--spacing-4xl) 0;
    background: hsl(var(--surface));
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-2xl);
}

.achievement {
    text-align: center;
    padding: var(--spacing-xl);
}

.achievement-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, hsl(var(--secondary-color)), hsl(var(--primary-color)));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-lg);
}

.achievement-icon i {
    font-size: 1.75rem;
    color: white;
}

.achievement h3 {
    font-size: 1.25rem;
    font-weight: var(--font-weight-semibold);
    color: hsl(var(--text-primary));
    margin-bottom: var(--spacing-md);
}

.achievement p {
    color: hsl(var(--text-secondary));
    line-height: 1.6;
}

.why-choose {
    padding: var(--spacing-4xl) 0;
}

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

.why-choose-text h2 {
    font-size: 2.5rem;
    font-weight: var(--font-weight-bold);
    color: hsl(var(--text-primary));
    margin-bottom: var(--spacing-2xl);
}

.reasons-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
}

.reason {
    display: flex;
    gap: var(--spacing-lg);
    align-items: flex-start;
}

.reason-icon {
    width: 50px;
    height: 50px;
    background: hsl(var(--primary-light));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.reason-icon i {
    color: hsl(var(--primary-color));
    font-size: 1.25rem;
}

.reason-content h4 {
    font-size: 1.125rem;
    font-weight: var(--font-weight-semibold);
    color: hsl(var(--text-primary));
    margin-bottom: var(--spacing-sm);
}

.reason-content p {
    color: hsl(var(--text-secondary));
    line-height: 1.6;
}

.why-choose-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
}

@media (max-width: 768px) {
    .why-choose-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
    }
    
    .why-choose-text h2 {
        font-size: 2rem;
    }
    
    .reason {
        gap: var(--spacing-md);
    }
}

/* ===== CONTACT PAGE STYLES ===== */
.contact-form-section {
    padding: var(--spacing-4xl) 0;
}

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

.contact-info h2 {
    font-size: 2rem;
    font-weight: var(--font-weight-bold);
    color: hsl(var(--text-primary));
    margin-bottom: var(--spacing-lg);
}

.contact-info > p {
    color: hsl(var(--text-secondary));
    line-height: 1.6;
    margin-bottom: var(--spacing-2xl);
}

.contact-benefits {
    margin-bottom: var(--spacing-2xl);
}

.contact-benefits h3 {
    font-size: 1.25rem;
    font-weight: var(--font-weight-semibold);
    color: hsl(var(--text-primary));
    margin-bottom: var(--spacing-md);
}

.contact-benefits ul {
    list-style: none;
}

.contact-benefits li {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    color: hsl(var(--text-secondary));
    margin-bottom: var(--spacing-sm);
}

.contact-benefits i {
    color: hsl(var(--success));
    font-size: 1.125rem;
}

.contact-guarantee {
    display: flex;
    gap: var(--spacing-lg);
    background: hsl(var(--secondary-light));
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
}

.guarantee-icon {
    width: 60px;
    height: 60px;
    background: hsl(var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.guarantee-icon i {
    color: white;
    font-size: 1.5rem;
}

.guarantee-text h4 {
    font-size: 1.125rem;
    font-weight: var(--font-weight-semibold);
    color: hsl(var(--text-primary));
    margin-bottom: var(--spacing-sm);
}

.guarantee-text p {
    color: hsl(var(--text-secondary));
    line-height: 1.6;
}

.contact-form {
    background: hsl(var(--surface));
    padding: var(--spacing-2xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: var(--font-weight-medium);
    color: hsl(var(--text-primary));
    margin-bottom: var(--spacing-sm);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: var(--spacing-md);
    border: 2px solid hsl(var(--border));
    border-radius: var(--radius-lg);
    font-size: 1rem;
    transition: border-color var(--transition-fast);
    background: hsl(var(--surface));
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: hsl(var(--primary-color));
    box-shadow: 0 0 0 3px hsl(var(--primary-color) / 0.1);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: hsl(var(--error));
}

.error-message {
    color: hsl(var(--error));
    font-size: 0.875rem;
    margin-top: var(--spacing-xs);
    display: none;
}

.error-message.show {
    display: block;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    cursor: pointer;
    font-weight: var(--font-weight-normal);
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid hsl(var(--border));
    border-radius: var(--radius-sm);
    position: relative;
    transition: all var(--transition-fast);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: hsl(var(--primary-color));
    border-color: hsl(var(--primary-color));
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 0.75rem;
    font-weight: bold;
}

.btn-loading {
    display: none;
}

@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
    }
    
    .contact-form {
        padding: var(--spacing-xl);
    }
    
    .contact-guarantee {
        flex-direction: column;
        text-align: center;
    }
}

.contact-info-section {
    padding: var(--spacing-4xl) 0;
    background: hsl(var(--surface));
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-2xl);
}

.contact-method {
    text-align: center;
    padding: var(--spacing-xl);
    background: hsl(var(--background));
    border-radius: var(--radius-xl);
    transition: all var(--transition-normal);
}

.contact-method:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.method-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, hsl(var(--primary-color)), hsl(var(--secondary-color)));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-lg);
}

.method-icon i {
    font-size: 1.75rem;
    color: white;
}

.contact-method h3 {
    font-size: 1.25rem;
    font-weight: var(--font-weight-semibold);
    color: hsl(var(--text-primary));
    margin-bottom: var(--spacing-sm);
}

.contact-method p {
    color: hsl(var(--text-secondary));
    margin-bottom: var(--spacing-md);
}

.contact-link {
    color: hsl(var(--primary-color));
    text-decoration: none;
    font-weight: var(--font-weight-medium);
    display: block;
    margin-bottom: var(--spacing-sm);
}

.contact-link:hover {
    text-decoration: underline;
}

.contact-method small {
    color: hsl(var(--text-muted));
    font-size: 0.875rem;
}

.faq {
    padding: var(--spacing-4xl) 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid hsl(var(--border));
    margin-bottom: var(--spacing-lg);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-lg) 0;
    cursor: pointer;
    transition: color var(--transition-fast);
}

.faq-question:hover {
    color: hsl(var(--primary-color));
}

.faq-question h3 {
    font-size: 1.125rem;
    font-weight: var(--font-weight-medium);
    color: inherit;
}

.faq-question i {
    font-size: 1rem;
    transition: transform var(--transition-fast);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: var(--spacing-lg);
}

.faq-answer p {
    color: hsl(var(--text-secondary));
    line-height: 1.6;
}

.location {
    padding: var(--spacing-4xl) 0;
    background: hsl(var(--surface));
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-4xl);
    align-items: center;
}

.location-info h2 {
    font-size: 2rem;
    font-weight: var(--font-weight-bold);
    color: hsl(var(--text-primary));
    margin-bottom: var(--spacing-lg);
}

.location-info > p {
    color: hsl(var(--text-secondary));
    line-height: 1.6;
    margin-bottom: var(--spacing-2xl);
}

.office-details {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
}

.detail {
    display: flex;
    gap: var(--spacing-lg);
    align-items: flex-start;
}

.detail i {
    color: hsl(var(--primary-color));
    font-size: 1.25rem;
    margin-top: var(--spacing-xs);
}

.detail h4 {
    font-weight: var(--font-weight-semibold);
    color: hsl(var(--text-primary));
    margin-bottom: var(--spacing-xs);
}

.detail p {
    color: hsl(var(--text-secondary));
    line-height: 1.6;
}

.location-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
}

@media (max-width: 768px) {
    .location-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
    }
}

.social-section {
    padding: var(--spacing-4xl) 0;
}

.social-links-large {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
}

.social-link {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    padding: var(--spacing-xl);
    background: hsl(var(--surface));
    border-radius: var(--radius-xl);
    text-decoration: none;
    color: hsl(var(--text-primary));
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-md);
}

.social-link:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    color: hsl(var(--primary-color));
}

.social-link i {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: hsl(var(--primary-light));
    border-radius: 50%;
    color: hsl(var(--primary-color));
    transition: all var(--transition-fast);
}

.social-link:hover i {
    background: hsl(var(--primary-color));
    color: white;
}

.social-link h4 {
    font-weight: var(--font-weight-semibold);
    margin-bottom: var(--spacing-xs);
}

.social-link p {
    color: hsl(var(--text-secondary));
    font-size: 0.875rem;
}

/* ===== PRIVACY PAGE STYLES ===== */
.privacy-content {
    padding: var(--spacing-4xl) 0;
}

.privacy-layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: var(--spacing-4xl);
    align-items: flex-start;
}

.privacy-nav {
    position: sticky;
    top: 100px;
    background: hsl(var(--surface));
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.privacy-nav h3 {
    font-size: 1.125rem;
    font-weight: var(--font-weight-semibold);
    color: hsl(var(--text-primary));
    margin-bottom: var(--spacing-lg);
}

.privacy-toc {
    list-style: none;
}

.privacy-toc li {
    margin-bottom: var(--spacing-sm);
}

.privacy-toc a {
    color: hsl(var(--text-secondary));
    text-decoration: none;
    font-size: 0.875rem;
    transition: color var(--transition-fast);
    display: block;
    padding: var(--spacing-sm);
    border-radius: var(--radius-md);
}

.privacy-toc a:hover {
    color: hsl(var(--primary-color));
    background: hsl(var(--primary-light));
}

.privacy-main {
    background: hsl(var(--surface));
    padding: var(--spacing-3xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.privacy-section {
    margin-bottom: var(--spacing-3xl);
    padding-bottom: var(--spacing-2xl);
    border-bottom: 1px solid hsl(var(--border-light));
}

.privacy-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.privacy-section h2 {
    font-size: 1.75rem;
    font-weight: var(--font-weight-semibold);
    color: hsl(var(--text-primary));
    margin-bottom: var(--spacing-lg);
}

.privacy-section h3 {
    font-size: 1.25rem;
    font-weight: var(--font-weight-medium);
    color: hsl(var(--text-primary));
    margin: var(--spacing-xl) 0 var(--spacing-md);
}

.privacy-section h4 {
    font-size: 1.125rem;
    font-weight: var(--font-weight-medium);
    color: hsl(var(--text-primary));
    margin: var(--spacing-lg) 0 var(--spacing-sm);
}

.privacy-section p {
    color: hsl(var(--text-secondary));
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
}

.privacy-section ul {
    margin: var(--spacing-md) 0;
    padding-left: var(--spacing-xl);
}

.privacy-section li {
    color: hsl(var(--text-secondary));
    line-height: 1.6;
    margin-bottom: var(--spacing-sm);
}

.privacy-section strong {
    color: hsl(var(--text-primary));
    font-weight: var(--font-weight-semibold);
}

.privacy-highlight {
    background: hsl(var(--primary-light));
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    margin: var(--spacing-lg) 0;
    border-left: 4px solid hsl(var(--primary-color));
}

.privacy-highlight h4 {
    color: hsl(var(--primary-color));
    margin-bottom: var(--spacing-md);
}

.privacy-highlight ul {
    margin: 0;
    padding-left: var(--spacing-lg);
}

.privacy-notice {
    display: flex;
    gap: var(--spacing-md);
    background: hsl(var(--secondary-light));
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    margin: var(--spacing-lg) 0;
    align-items: flex-start;
}

.privacy-notice i {
    color: hsl(var(--secondary-color));
    font-size: 1.25rem;
    margin-top: var(--spacing-xs);
    flex-shrink: 0;
}

.privacy-notice p {
    margin: 0;
    color: hsl(var(--text-primary));
}

.contact-methods-privacy {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-2xl);
    margin: var(--spacing-lg) 0;
}

.contact-method-privacy {
    background: hsl(var(--background));
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
}

.contact-method-privacy h4 {
    font-weight: var(--font-weight-semibold);
    color: hsl(var(--text-primary));
    margin-bottom: var(--spacing-md);
}

.contact-method-privacy p {
    color: hsl(var(--text-secondary));
    margin-bottom: var(--spacing-sm);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .privacy-layout {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .privacy-nav {
        position: static;
        order: 2;
    }
    
    .privacy-main {
        padding: var(--spacing-xl);
        order: 1;
    }
    
    .privacy-section h2 {
        font-size: 1.5rem;
    }
}

/* ===== FOOTER ===== */
.footer {
    background: #0a0a0a;
    color: white;
    padding: var(--spacing-4xl) 0 var(--spacing-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-2xl);
    margin-bottom: var(--spacing-2xl);
}

.footer-section h3 {
    font-size: 1.25rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--spacing-lg);
    color: hsl(var(--primary-color));
}

.footer-section h4 {
    font-size: 1.125rem;
    font-weight: var(--font-weight-semibold);
    margin-bottom: var(--spacing-lg);
    color: white;
}

.footer-section:last-child {
    background: rgba(255, 255, 255, 0.05);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: var(--spacing-lg);
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: var(--spacing-sm);
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color var(--transition-fast);
}

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

.social-links {
    display: flex;
    gap: var(--spacing-md);
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.social-links a:hover {
    background: hsl(var(--primary-color));
    transform: translateY(-2px);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin: 0;
    color: #ffffff !important;
    font-size: 0.925rem;
    line-height: 1.5;
    font-weight: 500;
    margin-bottom: var(--spacing-sm);
}

.contact-info i {
    color: hsl(var(--primary-color));
    width: 20px;
    flex-shrink: 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--spacing-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-links {
    display: flex;
    gap: var(--spacing-xl);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: white;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: var(--spacing-lg);
        text-align: center;
    }
    
    .footer-links {
        gap: var(--spacing-lg);
    }
}

/* ===== ANIMATIONS & UTILITIES ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

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

.pulse {
    animation: pulse 2s infinite;
}

/* Smooth scrolling for anchor links */
html {
    scroll-padding-top: 80px;
}

/* Loading states */
.loading {
    pointer-events: none;
    opacity: 0.7;
}

.spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Focus styles for accessibility */
*:focus {
    outline: 2px solid hsl(var(--primary-color));
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .navbar,
    .footer,
    .cta,
    .btn {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .container {
        max-width: none;
        padding: 0;
    }
}
