/* ==========================================================================
   CSS Variables & Reset
   ========================================================================== */
:root {
    /* Color Palette - Premium Deep Green/Emerald Theme */
    --primary: #166534;
    --primary-dark: #14532d;
    --primary-light: #22c55e;
    --primary-glow: rgba(22, 101, 52, 0.35);
    --secondary: #0F172A;
    --accent: #F59E0B;
    --accent-dark: #D97706;
    
    /* Gradient Stops */
    --gradient-primary: linear-gradient(135deg, #166534 0%, #15803d 50%, #22c55e 100%);
    --gradient-hero: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 40%, #bbf7d0 100%);
    --gradient-dark: linear-gradient(135deg, #0F172A 0%, #1a3a2a 50%, #0F172A 100%);
    
    /* Status Colors */
    --success: #10B981;
    --error: #EF4444;
    
    /* Neutral Colors */
    --text-main: #334155;
    --text-muted: #64748B;
    --text-light: #F8FAFC;
    --bg-main: #FFFFFF;
    --bg-light: #F1F5F9;
    --border-color: #E2E8F0;
    
    /* Typography */
    --font-primary: 'Outfit', sans-serif;
    
    /* Shadows & Effects */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-glow: 0 0 25px var(--primary-glow);
    --shadow-glow-accent: 0 0 25px rgba(245, 158, 11, 0.3);
    
    /* Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 24px;
    --radius-full: 50px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--text-main);
    background-color: var(--bg-main);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
    list-style: none;
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 100px 0;
}

.bg-light {
    background-color: var(--bg-light);
}

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.w-100 { width: 100%; }
.text-white { color: #fff; }
.text-light-gray { color: #CBD5E1; }

/* ==========================================================================
   Buttons — Premium Gradient Style
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all var(--transition-base);
    border: none;
    outline: none;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.02em;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-md), 0 4px 15px var(--primary-glow);
}

.btn-primary:hover {
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    transform: translateY(-3px);
    filter: brightness(1.1);
}

.btn-primary:active {
    transform: translateY(-1px);
}

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

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    background-color: #f0fdf4;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
    box-shadow: var(--shadow-glow);
}

/* Section Headers */
.section-tag {
    display: inline-block;
    padding: 6px 18px;
    background: linear-gradient(135deg, rgba(22, 101, 52, 0.08) 0%, rgba(34, 197, 94, 0.12) 100%);
    color: var(--primary);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 1px solid rgba(22, 101, 52, 0.15);
}

.section-tag.text-light {
    background-color: rgba(255,255,255,0.08);
    color: var(--text-light);
    border-color: rgba(255,255,255,0.15);
}

.section-title {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 16px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    max-width: 600px;
    line-height: 1.7;
}

.spinner {
    animation: spin 1s linear infinite;
    display: inline-block;
}

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

/* ==========================================================================
   Preloader — Branded Pulse
   ========================================================================== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-main);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader {
    width: 48px;
    height: 48px;
    border: 4px solid var(--bg-light);
    border-top-color: var(--primary);
    border-right-color: var(--primary-light);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 18px 0;
    z-index: 1000;
    transition: all var(--transition-base);
    background: transparent;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 4px 12px rgba(0,0,0,0.04);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--secondary);
    letter-spacing: -0.01em;
}

.logo i {
    font-size: 2rem;
    color: var(--primary);
}

.logo span {
    color: var(--primary);
}

.nav-menu {
    display: flex;
}

.nav-list {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-weight: 600;
    color: var(--text-muted);
    position: relative;
    padding: 5px 0;
    font-size: 0.95rem;
}

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

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

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

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

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--secondary);
    cursor: pointer;
    padding: 4px;
    transition: color var(--transition-fast);
}

.menu-toggle:hover {
    color: var(--primary);
}

/* Mobile Menu Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(4px);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ==========================================================================
   Hero Section — Deep Gradient with Animated Shapes
   ========================================================================== */
.hero {
    position: relative;
    padding: 160px 0 100px;
    overflow: hidden;
    overflow-x: clip;
    background: var(--gradient-hero);
    max-width: 100vw;
}

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

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.45;
}

.shape-1 {
    top: -10%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: var(--primary-light);
    animation: shapeDrift 12s ease-in-out infinite alternate;
}

.shape-2 {
    bottom: -10%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: rgba(245, 158, 11, 0.25);
    animation: shapeDrift 15s ease-in-out infinite alternate-reverse;
}

@keyframes shapeDrift {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(30px, -20px) scale(1.05); }
}

.hero-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: white;
    border-radius: var(--radius-full);
    font-weight: 600;
    color: var(--primary);
    box-shadow: var(--shadow-sm);
    margin-bottom: 24px;
    font-size: 0.875rem;
    border: 1px solid rgba(22, 101, 52, 0.1);
}

.hero-title {
    font-size: 3.4rem;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1.08;
    margin-bottom: 22px;
    letter-spacing: -0.03em;
}

.hero-title .highlight {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(34, 197, 94, 0.2);
    border-radius: 4px;
    z-index: -1;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 32px;
    max-width: 500px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.hero-features {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.hero-features .feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--secondary);
}

.hero-features .feature i {
    color: var(--primary);
    font-size: 1.3rem;
}

/* Hero Image Glass Effect */
.glass-card {
    position: relative;
    border-radius: var(--radius-xl);
    padding: 14px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow: var(--shadow-xl);
}

.main-img {
    border-radius: 18px;
    width: 100%;
    object-fit: cover;
}

.floating-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    background: white;
    padding: 12px 20px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    animation: float 4s ease-in-out infinite;
}

.floating-badge i {
    font-size: 1.5rem;
    color: var(--primary);
    background: #f0fdf4;
    padding: 8px;
    border-radius: 10px;
}

.floating-badge h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--secondary);
}

.floating-badge p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.badge-1 {
    top: 40px;
    left: -40px;
}

.badge-2 {
    bottom: 60px;
    right: -30px;
    animation-delay: 2s;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* ==========================================================================
   Partners Section — Card Style
   ========================================================================== */
.partners {
    padding: 60px 0;
    background: white;
    border-bottom: 1px solid var(--border-color);
}

.partners-text {
    text-align: center;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 30px;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.partners-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.partner-logo {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 28px;
    border-radius: var(--radius-md);
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    transition: all var(--transition-base);
    min-width: 150px;
}

.partner-logo:hover {
    color: var(--primary);
    border-color: var(--primary-light);
    background: #f0fdf4;
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

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

.about-image img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    transition: transform var(--transition-slow);
}

.about-image:hover img {
    transform: scale(1.02);
}

.experience-card {
    position: absolute;
    bottom: 20px;
    right: -10px;
    background: var(--gradient-primary);
    color: white;
    padding: 22px 28px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-xl), var(--shadow-glow);
    border: 4px solid white;
}

.experience-card h2 {
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1;
}

.experience-card p {
    font-weight: 500;
    margin-top: 5px;
    font-size: 0.9rem;
    opacity: 0.9;
}

.about-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.list-item {
    display: flex;
    gap: 20px;
    padding: 16px;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.list-item:hover {
    background: var(--bg-light);
}

.icon-box {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, rgba(22, 101, 52, 0.08) 0%, rgba(34, 197, 94, 0.15) 100%);
    color: var(--primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all var(--transition-base);
}

.list-item:hover .icon-box {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-glow);
}

.list-item h4 {
    font-size: 1.1rem;
    color: var(--secondary);
    margin-bottom: 6px;
}

.list-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ==========================================================================
   Coverage Services Section — Cards with Color Accents
   ========================================================================== */
.coverage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 50px;
}

.coverage-card {
    background: white;
    padding: 36px 28px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.coverage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
}

.coverage-card:hover::before {
    transform: scaleX(1);
}

.coverage-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(22, 101, 52, 0.15);
}

.card-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    color: var(--primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 20px;
    transition: all var(--transition-base);
}

.coverage-card:hover .card-icon {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-glow);
    transform: scale(1.05);
}

.coverage-card h3 {
    font-size: 1.25rem;
    color: var(--secondary);
    margin-bottom: 12px;
    font-weight: 700;
}

.coverage-card p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--primary);
    font-size: 0.95rem;
}

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

.card-link i {
    transition: transform var(--transition-fast);
}

.coverage-card:hover .card-link i {
    transform: translateX(5px);
}

/* ==========================================================================
   Contact / Call Us Section
   ========================================================================== */
.contact {
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
    overflow-x: clip;
    max-width: 100vw;
}

.contact::before {
    content: '';
    position: absolute;
    top: -50%;
    right: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(22, 101, 52, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.contact::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: 0;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
    max-width: 100%;
    overflow: hidden;
}

.glass-panel {
    background: rgba(255, 255, 255, 0.97);
    padding: 40px;
    border-radius: var(--radius-xl);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255,255,255,0.3);
    max-width: 100%;
    overflow: hidden;
}

.form-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.form-subtitle {
    color: var(--text-muted);
    margin-bottom: 28px;
    font-size: 0.95rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

.form-group label {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--secondary);
}

.form-group input,
.form-group select {
    padding: 13px 18px;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 0.95rem;
    transition: all var(--transition-fast);
    background: var(--bg-light);
    color: var(--text-main);
}

.form-group input::placeholder {
    color: #94a3b8;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 4px rgba(22, 101, 52, 0.08);
}

/* Custom Checkbox */
.checkbox-group {
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start;
    gap: 12px;
    margin: 6px 0;
    padding: 14px 16px;
    background: #fafbfc;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    transition: border-color var(--transition-fast);
}

.checkbox-group:has(input:checked) {
    border-color: var(--primary);
    background: #f0fdf4;
}

.checkbox-group input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    flex-shrink: 0;
    margin-top: 2px;
    width: 20px;
    height: 20px;
    min-width: 20px;
    min-height: 20px;
    cursor: pointer;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    background: white;
    transition: all var(--transition-fast);
    position: relative;
    padding: 0;
}

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

.checkbox-group input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: 700;
}

.checkbox-group label {
    font-size: 0.8rem;
    font-weight: 400;
    line-height: 1.55;
    color: var(--text-muted);
    cursor: pointer;
    flex: 1;
    min-width: 0;
}

.checkbox-group label a {
    color: var(--primary);
    text-decoration: underline;
    font-weight: 500;
}

.checkbox-group label a:hover {
    color: var(--primary-dark);
}

/* Contact Info Cards */
.info-cards {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-top: 40px;
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 16px;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.info-card:hover {
    background: rgba(255,255,255,0.05);
    transform: translateX(5px);
}

.info-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
}

.info-content h4 {
    color: white;
    font-size: 1.05rem;
    margin-bottom: 4px;
    font-weight: 700;
}

.info-text {
    color: #CBD5E1;
    font-size: 0.95rem;
    line-height: 1.5;
}

.highlight-text {
    color: var(--accent);
    font-weight: 700;
    font-size: 1.15rem;
}

.highlight-text:hover {
    color: var(--accent-dark);
}

/* ==========================================================================
   Scroll to Top Button
   ========================================================================== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-base);
}

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

.scroll-top:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
}

/* ==========================================================================
   Footer — Enhanced Dark Style
   ========================================================================== */
.footer {
    background: #0a0f1a;
    padding: 80px 0 30px;
    color: #94a3b8;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(22, 101, 52, 0.4) 50%, transparent 100%);
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-brand p {
    margin-top: 16px;
    line-height: 1.7;
    font-size: 0.95rem;
}

.footer-links h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 22px;
    font-weight: 700;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-links a {
    transition: all var(--transition-fast);
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0px;
}

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

.footer-links a::before {
    content: '';
    width: 0;
    height: 2px;
    background: var(--primary-light);
    transition: width var(--transition-fast);
    display: inline-block;
}

.footer-links a:hover::before {
    width: 12px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.9rem;
    color: #64748b;
}

/* Disclaimer Section */
.disclaimer-section {
    margin-bottom: 40px;
}

.disclaimer-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    padding: 32px;
    color: #94a3b8;
}

.disclaimer-card h3 {
    color: white;
    font-size: 1.4rem;
    margin-bottom: 16px;
}

.disclaimer-card p {
    margin-bottom: 12px;
    line-height: 1.7;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */

/* Tablet Landscape */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .about-container {
        grid-template-columns: 1fr;
    }
    
    .experience-card {
        right: 20px;
    }

    .section {
        padding: 80px 0;
    }
    
    .contact-container {
        gap: 40px;
    }
}

/* Tablet Portrait */
@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form-wrapper {
        order: 2;
    }
    
    .contact-info-wrapper {
        order: 1;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-features {
        justify-content: center;
    }

    .hero-image {
        max-width: 520px;
        margin: 0 auto;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-desc {
        font-size: 0.95rem;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        height: 100dvh;
        background: white;
        flex-direction: column;
        padding: 100px 30px 30px;
        box-shadow: var(--shadow-xl);
        transition: left 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

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

    .nav-link {
        display: block;
        padding: 12px 16px;
        border-radius: var(--radius-sm);
        font-size: 1.05rem;
    }

    .nav-link:hover, .nav-link.active {
        background: #f0fdf4;
    }

    .nav-link::after {
        display: none;
    }

    .menu-toggle {
        display: block;
        z-index: 1001;
        position: relative;
    }

    .header .call-btn {
        display: none !important;
    }

    .hero {
        padding: 130px 0 60px;
    }

    .hero-title {
        font-size: 2.1rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-features {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    .badge-1, .badge-2 {
        display: none;
    }

    .glass-panel {
        padding: 28px 22px;
    }

    .form-title {
        font-size: 1.5rem;
    }

    .contact-container {
        gap: 30px;
    }

    .coverage-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .coverage-card {
        padding: 28px 24px;
    }

    .partners-grid {
        gap: 12px;
    }

    .partner-logo {
        font-size: 0.95rem;
        padding: 12px 20px;
        min-width: 130px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .footer-brand {
        text-align: center;
    }

    .footer-brand .logo {
        justify-content: center;
    }

    .scroll-top {
        bottom: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
    }
}

/* Extra Small Screens */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero {
        padding: 120px 0 50px;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .btn {
        padding: 13px 24px;
        font-size: 0.9rem;
    }

    .section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .glass-panel {
        padding: 24px 18px;
    }

    .form-title {
        font-size: 1.35rem;
    }

    .contact-form {
        gap: 14px;
    }

    .form-group input,
    .form-group select {
        padding: 12px 14px;
        font-size: 0.9rem;
    }

    .info-card {
        padding: 12px 8px;
    }

    .experience-card {
        right: 10px;
        bottom: 10px;
        padding: 14px 18px;
    }

    .experience-card h2 {
        font-size: 1.8rem;
    }

    .checkbox-group {
        padding: 12px;
    }

    .checkbox-group label {
        font-size: 0.75rem;
    }

    .partners {
        padding: 40px 0;
    }
}
