/* ===== CSS Variables & Reset ===== */
:root {
    /* Colors - Refined Legal Theme */
    --color-primary: #0a1628;
    --color-primary-light: #162544;
    --color-primary-dark: #050d18;
    --color-accent: #d4a012;
    --color-accent-light: #e8b930;
    --color-accent-dark: #a67c0e;
    --color-white: #ffffff;
    --color-gray-50: #f8fafc;
    --color-gray-100: #f1f5f9;
    --color-gray-200: #e2e8f0;
    --color-gray-300: #cbd5e1;
    --color-gray-400: #94a3b8;
    --color-gray-500: #64748b;
    --color-gray-600: #475569;
    --color-gray-700: #334155;
    --color-gray-800: #1e293b;
    --color-gray-900: #0f172a;

    /* Glassmorphism Colors */
    --glass-white: rgba(255, 255, 255, 0.08);
    --glass-white-border: rgba(255, 255, 255, 0.12);
    --glass-dark: rgba(10, 22, 40, 0.7);
    --glass-card: rgba(255, 255, 255, 0.95);
    --glass-card-hover: rgba(255, 255, 255, 1);

    /* Refined Gradients */
    --gradient-primary: linear-gradient(135deg, #0a1628 0%, #162544 50%, #1a365d 100%);
    --gradient-gold: linear-gradient(135deg, #d4a012 0%, #e8b930 50%, #f0c94d 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    --gradient-shine: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    --gradient-hero: linear-gradient(180deg,
            rgba(10, 22, 40, 0.92) 0%,
            rgba(22, 37, 68, 0.95) 50%,
            rgba(10, 22, 40, 0.98) 100%);

    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Glassmorphism Shadows */
    --shadow-glass: 0 8px 32px rgba(0, 0, 0, 0.12);
    --shadow-glass-lg: 0 16px 48px rgba(0, 0, 0, 0.15);
    --shadow-glow-gold: 0 0 40px rgba(212, 160, 18, 0.2);
    --shadow-glow-soft: 0 0 60px rgba(212, 160, 18, 0.1);
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.06);
    --shadow-card-hover: 0 12px 40px rgba(0, 0, 0, 0.12);
    --shadow-gold: 0 4px 24px rgba(212, 160, 18, 0.3);
    --shadow-gold-lg: 0 8px 32px rgba(212, 160, 18, 0.4);

    /* Elegant Border Radius */
    --radius-xs: 3px;
    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;

    /* 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);

    /* Backdrop blur */
    --blur-sm: blur(8px);
    --blur-md: blur(16px);
    --blur-lg: blur(24px);
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-gray-700);
    background: var(--color-white);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

address {
    font-style: normal;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-gradient {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons - Glassmorphism Design */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 32px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    transition: all var(--transition-base);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-shine);
    transition: left 0.5s ease;
}

.btn:hover::after {
    left: 100%;
}

.btn-icon {
    font-size: 16px;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--color-primary-dark);
    box-shadow: var(--shadow-gold);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.25) 0%, transparent 60%);
    pointer-events: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold-lg), var(--shadow-glow-gold);
    filter: brightness(1.05);
}

/* Glass Button Secondary */
.btn-secondary {
    background: var(--glass-white);
    backdrop-filter: var(--blur-sm);
    -webkit-backdrop-filter: var(--blur-sm);
    color: var(--color-white);
    border: 1px solid var(--glass-white-border);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.btn-white {
    background: var(--color-white);
    color: var(--color-primary);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline-white {
    background: transparent;
    color: var(--color-white);
    border-color: var(--color-white);
}

.btn-outline-white:hover {
    background: var(--color-white);
    color: var(--color-primary);
}

.btn-full {
    width: 100%;
}

/* Header - Glassmorphism */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 22, 40, 0.75);
    backdrop-filter: var(--blur-lg);
    -webkit-backdrop-filter: var(--blur-lg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: all var(--transition-base);
}

.header.scrolled {
    background: rgba(10, 22, 40, 0.92);
    box-shadow: var(--shadow-glass);
    border-bottom-color: rgba(255, 255, 255, 0.08);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    font-size: 28px;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    color: var(--color-white);
}

.logo-accent {
    color: var(--color-accent);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    padding: 10px 18px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    border-radius: var(--radius-xs);
    transition: all var(--transition-fast);
}

.nav-link:hover {
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.08);
}

.nav-link-cta {
    background: var(--color-accent);
    color: var(--color-white) !important;
    margin-left: 12px;
    border-radius: var(--radius-xs);
    padding: 10px 20px;
}

.nav-link-cta:hover {
    background: var(--color-accent-light);
    box-shadow: var(--shadow-gold);
}

.nav-toggle {
    display: none;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
}

.hamburger,
.hamburger::before,
.hamburger::after {
    width: 24px;
    height: 2px;
    background: var(--color-white);
    border-radius: 2px;
    transition: all 0.2s;
}

.hamburger {
    position: relative;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 0;
}

.hamburger::before {
    top: -7px;
}

.hamburger::after {
    bottom: -7px;
}

/* Hero - Premium Design */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
    z-index: -2;
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 20% 40%, rgba(212, 160, 18, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 60%, rgba(22, 37, 68, 0.4) 0%, transparent 50%),
        radial-gradient(ellipse 100% 80% at 50% 100%, rgba(10, 22, 40, 0.6) 0%, transparent 50%);
    z-index: -1;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50 0L50 100M0 50L100 50' stroke='rgba(255,255,255,0.02)' stroke-width='0.5'/%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero-content {
    text-align: center;
    padding: 140px 24px 100px;
    position: relative;
    z-index: 1;
    max-width: 900px;
}

/* Glass Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(212, 160, 18, 0.12);
    backdrop-filter: var(--blur-sm);
    -webkit-backdrop-filter: var(--blur-sm);
    border: 1px solid rgba(212, 160, 18, 0.2);
    border-radius: var(--radius-sm);
    color: var(--color-accent-light);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 36px;
    animation: fadeInUp 0.8s ease;
    box-shadow: var(--shadow-glow-soft);
}

.badge-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: var(--gradient-gold);
    color: var(--color-primary-dark);
    border-radius: var(--radius-xs);
    font-size: 11px;
    font-weight: 700;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.15;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease 0.1s backwards;
}

.hero-subtitle {
    font-size: clamp(17px, 2vw, 20px);
    color: rgba(255, 255, 255, 0.75);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease 0.3s backwards;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 500;
}

.trust-icon {
    font-size: 18px;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scroll-indicator:hover {
    color: rgba(255, 255, 255, 0.8);
}

.scroll-arrow {
    font-size: 20px;
    animation: bounce 2s infinite;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(184, 134, 11, 0.08);
    color: var(--color-accent-dark);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: var(--radius-xs);
    border: 1px solid rgba(184, 134, 11, 0.15);
    margin-bottom: 20px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: var(--color-gray-900);
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 18px;
    color: var(--color-gray-500);
    max-width: 600px;
    margin: 0 auto;
}

/* Services - Glass Style */
.services {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--color-gray-50) 0%, var(--color-white) 100%);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-gray-200), transparent);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 28px;
}

.service-card {
    background: var(--glass-card);
    padding: 36px 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
}

.service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 160, 18, 0.03) 0%, transparent 60%);
    opacity: 0;
    transition: opacity var(--transition-slow);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover);
    border-color: rgba(212, 160, 18, 0.15);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover::after {
    opacity: 1;
}

.service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary);
    border-radius: var(--radius-sm);
    font-size: 24px;
    margin-bottom: 20px;
}

.service-title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    color: var(--color-gray-900);
    margin-bottom: 12px;
}

.service-desc {
    font-size: 15px;
    color: var(--color-gray-500);
    line-height: 1.7;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 50% 0%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 100%, rgba(212, 160, 18, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.testimonials .section-badge {
    background: rgba(255, 255, 255, 0.12);
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.2);
}

.testimonials .section-title {
    color: var(--color-white);
}

.testimonial-slider {
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 0;
}

.testimonial-card {
    flex: 0 0 100%;
    min-width: 100%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: var(--blur-md);
    -webkit-backdrop-filter: var(--blur-md);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    padding: 40px 60px;
    text-align: center;
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .testimonial-card {
        padding: 50px 80px;
    }
}

.testimonial-card .stars {
    font-size: 24px;
    color: var(--color-accent);
    margin-bottom: 20px;
    letter-spacing: 4px;
}

.testimonial-text {
    font-size: 18px;
    font-style: italic;
    color: var(--color-white);
    line-height: 1.8;
    margin-bottom: 24px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-card cite {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.slider-dots .dot.active,
.slider-dots .dot:hover {
    background: var(--color-accent);
    transform: scale(1.3);
}

.text-center {
    text-align: center;
}

/* Coverage - Glass Design */
.coverage {
    padding: 120px 0;
    background: var(--color-white);
    position: relative;
}

.coverage-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-bottom: 48px;
}

.coverage-card {
    text-align: center;
    padding: 44px 32px;
    background: linear-gradient(180deg, var(--color-gray-50) 0%, rgba(248, 250, 252, 0.5) 100%);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-gray-200);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.coverage-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(212, 160, 18, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.coverage-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover);
    border-color: rgba(212, 160, 18, 0.2);
}

.coverage-card:hover::before {
    opacity: 1;
}

.coverage-card-main {
    background: var(--gradient-primary);
    color: var(--color-white);
    border-color: transparent;
    box-shadow: var(--shadow-glass);
}

.coverage-map {
    margin-top: 48px;
    text-align: center;
    position: relative;
    padding: 20px;
    background: var(--glass-card);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(212, 160, 18, 0.15);
}

.coverage-map img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.coverage-card-main::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.coverage-card-main .coverage-icon {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: var(--blur-sm);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.coverage-card-main p {
    color: rgba(255, 255, 255, 0.7);
}

.coverage-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-white);
    border-radius: var(--radius-sm);
    border: 1px solid var(--color-gray-200);
    font-size: 28px;
    margin: 0 auto 18px;
}

.coverage-card h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 6px;
}

.coverage-card p {
    font-size: 14px;
    color: var(--color-gray-500);
}

.coverage-tag {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 4px 10px;
    background: var(--color-accent);
    color: var(--color-white);
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-xs);
}

.coverage-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 32px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 500;
    color: var(--color-gray-700);
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--color-accent);
    color: var(--color-gray-900);
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
}

/* Why Us */
.why-us {
    padding: 100px 0;
    background: var(--color-gray-50);
}

.why-us-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-us-list {
    margin-top: 40px;
}

.why-us-list li {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.list-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary);
    border-radius: var(--radius-sm);
    font-size: 18px;
}

.why-us-list strong {
    display: block;
    font-size: 16px;
    color: var(--color-gray-900);
    margin-bottom: 4px;
}

.why-us-list p {
    font-size: 14px;
    color: var(--color-gray-500);
    margin: 0;
}

.why-us-stats {
    display: grid;
    gap: 20px;
}

.stat-card {
    background: var(--color-white);
    padding: 28px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-gray-200);
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 15px;
    color: var(--color-gray-500);
    font-weight: 500;
}

/* Contact */
.contact {
    padding: 100px 0;
    background: var(--color-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 26px;
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.9) 0%, rgba(255, 255, 255, 0.95) 100%);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: var(--shadow-card);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(212, 160, 18, 0.03) 100%);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.contact-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-card-hover);
    border-color: rgba(212, 160, 18, 0.15);
}

.contact-card:hover::before {
    opacity: 1;
}

.contact-icon {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    font-size: 22px;
    box-shadow: var(--shadow-glass);
}

.contact-details {
    position: relative;
    z-index: 1;
}

.contact-details h3 {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-gray-900);
    margin-bottom: 4px;
}

.contact-details a {
    display: block;
    font-size: 17px;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 4px;
    transition: color var(--transition-fast);
}

.contact-details a:hover {
    color: var(--color-accent);
}

.contact-details p,
.contact-details address {
    font-size: 13px;
    color: var(--color-gray-500);
    line-height: 1.5;
}

/* Glass Form Wrapper */
.contact-form-wrapper {
    background: linear-gradient(180deg, rgba(248, 250, 252, 0.95) 0%, rgba(255, 255, 255, 0.98) 100%);
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-card);
    position: relative;
    overflow: hidden;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-gold);
}

.contact-form h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 600;
    color: var(--color-gray-900);
    margin-bottom: 28px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-gray-600);
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    font-family: inherit;
    font-size: 14px;
    color: var(--color-gray-800);
    background: var(--color-white);
    border: 1px solid var(--color-gray-300);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 2px rgba(12, 31, 63, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--color-gray-400);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* CTA - Glass Design */
.cta {
    padding: 100px 0;
    background: var(--gradient-primary);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 50% 80% at 50% 120%, rgba(212, 160, 18, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 80% 50% at 20% 50%, rgba(22, 37, 68, 0.3) 0%, transparent 50%);
    pointer-events: none;
}

.cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 38px);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 36px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

/* Footer */
.footer {
    background: var(--color-gray-900);
    padding: 80px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-brand .logo-icon {
    font-size: 32px;
}

.footer-brand .logo-text {
    font-size: 26px;
}

.footer-brand p {
    font-size: 15px;
    color: var(--color-gray-400);
    line-height: 1.7;
    max-width: 320px;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 24px;
}

.footer-links ul,
.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-links a,
.footer-contact li {
    font-size: 15px;
    color: var(--color-gray-400);
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--color-accent);
}

.footer-contact a {
    color: var(--color-gray-400);
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: var(--color-gray-500);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-8px);
    }

    60% {
        transform: translateY(-4px);
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .why-us-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .why-us-stats {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-brand {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--color-primary-dark);
        flex-direction: column;
        padding: 24px;
        gap: 8px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all var(--transition-base);
    }

    .nav-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-link {
        width: 100%;
        text-align: center;
        padding: 14px;
    }

    .nav-link-cta {
        margin-left: 0;
        margin-top: 8px;
    }

    .hero-content {
        padding: 140px 20px 100px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .hero-cta .btn {
        width: 100%;
        max-width: 300px;
    }

    .hero-trust {
        flex-direction: column;
        gap: 16px;
    }

    .coverage-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .why-us-stats {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .footer-brand {
        grid-column: 1;
        align-items: center;
    }

    .footer-brand p {
        max-width: none;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }

    .section-title {
        font-size: 26px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 28px 20px;
    }

    .coverage-card {
        padding: 36px 24px;
    }
}

/* ===== SCROLL TO TOP BUTTON ===== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    color: var(--color-primary-dark);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-gold);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-base);
    z-index: 999;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold-lg), var(--shadow-glow-gold);
}

/* ===== GOOGLE MAPS SECTION ===== */
.map-section {
    margin-top: 80px;
}

.map-container {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-card-hover);
    height: 450px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    display: block;
    filter: grayscale(0.2) contrast(1.1);
}

.map-overlay {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    pointer-events: none;
}

.map-info {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: var(--blur-md);
    -webkit-backdrop-filter: var(--blur-md);
    padding: 24px 28px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-glass);
    border: 1px solid rgba(255, 255, 255, 0.8);
    pointer-events: all;
    max-width: 400px;
}

.map-info h3 {
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--color-gray-900);
    margin-bottom: 8px;
}

.map-info p {
    color: var(--color-gray-600);
    font-size: 14px;
    margin-bottom: 16px;
}

.map-info .btn-sm {
    padding: 10px 20px;
    font-size: 12px;
}

/* ===== LEGAL PAGE ===== */
.legal-content {
    padding: 140px 0 80px;
    min-height: 100vh;
}

.legal-header {
    text-align: center;
    margin-bottom: 60px;
}

.legal-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.legal-tab {
    padding: 12px 28px;
    background: var(--color-gray-100);
    color: var(--color-gray-700);
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    border: 1px solid var(--color-gray-200);
    transition: all var(--transition-base);
    cursor: pointer;
}

.legal-tab:hover {
    background: var(--color-gray-200);
    border-color: var(--color-gray-300);
}

.legal-tab.active {
    background: var(--gradient-gold);
    color: var(--color-primary-dark);
    border-color: var(--color-accent);
    box-shadow: var(--shadow-gold);
}

.legal-section {
    display: none;
    animation: fadeInUp 0.5s ease;
}

.legal-section.active {
    display: block;
}

.legal-article {
    max-width: 900px;
    margin: 0 auto;
    background: var(--color-white);
    padding: 48px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    border: 1px solid var(--color-gray-200);
}

.legal-article h2 {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--color-gray-900);
    margin-top: 40px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--color-accent);
}

.legal-article h2:first-child {
    margin-top: 0;
}

.legal-article p {
    font-size: 15px;
    color: var(--color-gray-600);
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-article ul {
    list-style: disc;
    margin-left: 24px;
    margin-bottom: 16px;
}

.legal-article li {
    font-size: 15px;
    color: var(--color-gray-600);
    line-height: 1.8;
    margin-bottom: 8px;
}

.legal-article strong {
    color: var(--color-gray-800);
    font-weight: 600;
}

.legal-article a {
    color: var(--color-accent-dark);
    text-decoration: underline;
}

.legal-article a:hover {
    color: var(--color-accent);
}

.legal-footer {
    text-align: center;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--color-gray-200);
}

.legal-footer p {
    color: var(--color-gray-500);
    margin-bottom: 24px;
}

/* ===== RESOURCES PAGE ===== */
.resources-hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, var(--color-gray-50) 0%, var(--color-white) 100%);
    text-align: center;
}

.resources-section {
    padding: 60px 0 100px;
}

.resource-category {
    margin-bottom: 80px;
}

.category-header {
    text-align: center;
    margin-bottom: 48px;
}

.category-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.category-header h2 {
    font-family: var(--font-display);
    font-size: 32px;
    color: var(--color-gray-900);
    margin-bottom: 12px;
}

.category-header p {
    font-size: 16px;
    color: var(--color-gray-600);
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
}

.resource-card {
    background: var(--color-white);
    padding: 28px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-gray-200);
    box-shadow: var(--shadow-card);
    transition: all var(--transition-base);
}

.resource-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover);
    border-color: var(--color-accent);
}

.resource-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.resource-type {
    padding: 4px 10px;
    background: var(--color-accent);
    color: var(--color-white);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: var(--radius-xs);
}

.resource-size {
    font-size: 12px;
    color: var(--color-gray-500);
    font-weight: 500;
}

.resource-card h3 {
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--color-gray-900);
    margin-bottom: 12px;
}

.resource-card p {
    font-size: 14px;
    color: var(--color-gray-600);
    line-height: 1.6;
    margin-bottom: 20px;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 12px;
}

/* Links Grid */
.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.link-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--color-white);
    border: 1px solid var(--color-gray-200);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    transition: all var(--transition-base);
}

.link-card:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-card-hover);
    border-color: var(--color-accent);
}

.link-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-gray-50);
    border-radius: var(--radius-sm);
    font-size: 24px;
}

.link-content {
    flex: 1;
}

.link-content h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-gray-900);
    margin-bottom: 4px;
}

.link-content p {
    font-size: 13px;
    color: var(--color-gray-600);
}

.link-arrow {
    flex-shrink: 0;
    font-size: 20px;
    color: var(--color-accent);
    transition: transform var(--transition-base);
}

.link-card:hover .link-arrow {
    transform: translateX(4px);
}

/* Resources CTA */
.resources-cta {
    margin-top: 80px;
}

.cta-glass {
    background: var(--gradient-primary);
    padding: 60px 40px;
    border-radius: var(--radius-xl);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-glass::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.cta-glass h2 {
    font-family: var(--font-display);
    font-size: 32px;
    color: var(--color-white);
    margin-bottom: 16px;
}

.cta-glass p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-glass .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-bottom a {
    color: var(--color-accent);
    margin: 0 8px;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-bottom a:hover {
    color: var(--color-accent-light);
    text-decoration: underline;
}

/* ===== TOOLS GRID ===== */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 28px;
}

.tool-card {
    background: linear-gradient(135deg, var(--color-white) 0%, var(--color-gray-50) 100%);
    padding: 32px;
    border-radius: var(--radius-xl);
    border: 2px solid var(--color-gray-200);
    box-shadow: var(--shadow-card);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.tool-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
}

.tool-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card-hover), var(--shadow-glow-soft);
    border-color: var(--color-accent);
}

.tool-card:hover::before {
    transform: scaleX(1);
}

.tool-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.tool-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    font-size: 32px;
    box-shadow: var(--shadow-glass);
}

.tool-badge {
    padding: 6px 14px;
    background: var(--color-accent);
    color: var(--color-white);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-sm);
}

.tool-card h3 {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--color-gray-900);
    margin-bottom: 12px;
    font-weight: 600;
}

.tool-card p {
    font-size: 15px;
    color: var(--color-gray-600);
    line-height: 1.7;
    margin-bottom: 20px;
}

.tool-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.feature-tag {
    padding: 6px 12px;
    background: rgba(212, 160, 18, 0.1);
    color: var(--color-accent-dark);
    font-size: 12px;
    font-weight: 600;
    border-radius: var(--radius-xs);
    border: 1px solid rgba(212, 160, 18, 0.2);
}

.tool-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-accent);
    font-size: 14px;
    font-weight: 600;
    transition: all var(--transition-base);
}

.tool-card:hover .tool-arrow {
    gap: 12px;
    color: var(--color-accent-light);
}

/* ===== CONTACT FORM PREMIUM DESIGN ===== */
.contact-form-wrapper {
    background: linear-gradient(135deg, var(--color-white) 0%, var(--color-gray-50) 100%);
    border-radius: var(--radius-xl);
    padding: 0;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--color-gray-200);
    overflow: hidden;
}

.contact-form {
    padding: 40px;
}

/* Form Header */
.form-header {
    text-align: center;
    margin-bottom: 36px;
    padding-bottom: 24px;
    border-bottom: 2px solid var(--color-gray-100);
}

.form-header-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    font-size: 32px;
    margin: 0 auto 16px;
    box-shadow: var(--shadow-glass);
}

.form-header h3 {
    font-family: var(--font-display);
    font-size: 26px;
    color: var(--color-gray-900);
    margin-bottom: 8px;
}

.form-header p {
    font-size: 14px;
    color: var(--color-gray-600);
}

/* Form Row - Two columns */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

/* Form Group */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-gray-700);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    font-size: 15px;
    font-family: var(--font-body);
    color: var(--color-gray-800);
    background: var(--color-white);
    border: 2px solid var(--color-gray-200);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--color-gray-400);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(212, 160, 18, 0.1);
}

.form-group input:hover,
.form-group textarea:hover,
.form-group select:hover {
    border-color: var(--color-gray-300);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2364748b' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

/* Form Footer */
.form-footer {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--color-gray-200);
}

.form-privacy {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: var(--color-gray-600);
    margin-bottom: 20px;
    padding: 14px;
    background: rgba(212, 160, 18, 0.05);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(212, 160, 18, 0.1);
}

.privacy-icon {
    flex-shrink: 0;
    font-size: 16px;
}

.form-privacy a {
    color: var(--color-accent-dark);
    text-decoration: underline;
    font-weight: 600;
}

.form-privacy a:hover {
    color: var(--color-accent);
}

/* Responsive Form */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-form {
        padding: 28px 20px;
    }

    .form-header-icon {
        width: 56px;
        height: 56px;
        font-size: 28px;
    }

    .form-header h3 {
        font-size: 22px;
    }
}
/* Language Switcher */
.lang-switcher {
    display: flex;
    gap: 4px;
    background: rgba(255, 255, 255, 0.1);
    padding: 4px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.lang-btn {
    padding: 4px 8px;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    border-radius: var(--radius-xs);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
}

.lang-btn:hover {
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.1);
}

.lang-btn.active {
    background: var(--color-accent);
    color: var(--color-primary-dark);
}

/* Enhanced FAQ Design */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-gray-200);
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-card);
}

.faq-item:hover {
    box-shadow: var(--shadow-card-hover);
    border-color: var(--color-accent);
    transform: translateY(-2px);
}

.faq-question {
    width: 100%;
    padding: 24px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    border: none;
    font-size: 18px;
    font-weight: 600;
    color: var(--color-primary);
    cursor: pointer;
    text-align: left;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--color-accent-dark);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    background: var(--color-gray-50);
}

.faq-answer p {
    padding: 0 32px 24px;
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-gray-600);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-icon {
    font-size: 24px;
    color: var(--color-accent);
    transition: transform 0.3s ease;
    min-width: 24px;
    text-align: center;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* Map Section Styles */
.coverage-map-container {
    margin-top: 60px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-glass-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.coverage-map-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.coverage-map-container:hover .coverage-map-img {
    transform: scale(1.02);
}


/* ===== ADVANCED VISUAL EFFECTS 2026 ===== */

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Parallax hero background */
.hero-bg {
    background-image: url('images/hero-bg.png');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

/* Enhanced glassmorphism */
.glass-enhanced {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.2);
}
\n/* Floating animation for cards */
@keyframes float-smooth {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}
\n.floating-card {
    animation: float-smooth 6s ease-in-out infinite;
}
\n/* Pulse effect for important elements */
@keyframes pulse-subtle {
    0%, 100% {
        box-shadow: 0 0 20px rgba(212, 160, 18, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(212, 160, 18, 0.5);
    }
}
\n/* Image zoom on hover */\nimg {
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);\n}\n\nimg:hover {\n    transform: scale(1.05);\n}\n\n/* Smooth section reveal */\n.reveal-on-scroll {\n    opacity: 0;\n    transform: translateY(40px);\n    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);\n}\n\n.reveal-on-scroll.revealed {\n    opacity: 1;\n    transform: translateY(0);\n}\n\n/* Timeline design */\n.process-timeline {\n    position: relative;\n    padding-left: 50px;\n}\n\n.process-timeline::before {\n    content: '';\n    position: absolute;\n    left: 0;\n    top: 0;\n    bottom: 0;\n    width: 4px;\n    background: var(--gradient-gold);\n    border-radius: 2px;\n}\n\n.timeline-step {\n    position: relative;\n    padding: 30px 0;\n}\n\n.timeline-step::before {\n    content: '';\n    position: absolute;\n    left: -57px;\n    top: 35px;\n    width: 16px;\n    height: 16px;\n    background: var(--color-accent);\n    border: 4px solid white;\n    border-radius: 50%;\n    box-shadow: 0 0 30px rgba(212, 160, 18, 0.6);\n}\n\n/* Number counters */\n.counter-animation {\n    font-size: 48px;\n    font-weight: 700;\n    background: var(--gradient-gold);\n    -webkit-background-clip: text;\n    -webkit-text-fill-color: transparent;\n    background-clip: text;\n}\n\n/* Advanced button hover */\n.btn-advanced {\n    position: relative;\n    overflow: hidden;\n}\n\n.btn-advanced::after {\n    content: '';\n    position: absolute;\n    top: 50%;\n    left: 50%;\n    width: 0;\n    height: 0;\n    border-radius: 50%;\n    background: rgba(255, 255, 255, 0.3);\n    transform: translate(-50%, -50%);\n    transition: width 0.6s, height 0.6s;\n}\n\n.btn-advanced:hover::after {\n    width: 300px;\n    height: 300px;\n}

/* WhatsApp Floating Button */
.whatsapp-bubble {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 1000;
    animation: float-smooth 3s ease-in-out infinite;
}

.whatsapp-btn {
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.whatsapp-icon {
    font-size: 32px;
    line-height: 1;
}

.whatsapp-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: #ff3b30;
    color: white;
    font-size: 12px;
    font-weight: bold;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
}

.whatsapp-tooltip {
    position: absolute;
    left: 70px;
    top: 50%;
    transform: translateY(-50%);
    background-color: white;
    padding: 8px 12px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    white-space: nowrap;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.whatsapp-bubble:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    left: 75px;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--color-accent);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.scroll-to-top:hover {
    background: var(--color-accent-dark);
    transform: translateY(-5px);
}

