/* =========================================
   MedLink Homecare - Main Stylesheet
   ========================================= */

/* =========================================
   1. CORE VARIABLES & RESET
   ========================================= */
:root {
    /* Brand Colors - Professional Healthcare */
    --primary: #0284c7;
    --primary-dark: #0369a1;
    --primary-light: #38bdf8;
    --accent: #0d9488;
    --accent-light: #14b8a6;
    --warmth: #f59e0b;
    --warmth-light: #fbbf24;

    --text-dark: #0f172a;
    --text-body: #334155;
    --text-gray: #64748b;
    --text-light: #94a3b8;

    --bg-white: #ffffff;
    --bg-light: #f0f9ff;
    --bg-gray: #f8fafc;

    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.5);
    --glass-shadow: 0 8px 32px rgba(31, 38, 135, 0.1);
    --blur-strength: 12px;

    /* Layout */
    --container: 1280px;
    --header-height: 80px;

    /* Transitions */
    --transition: 0.3s ease;
    --transition-slow: 0.5s ease;
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-body);
    background: var(--bg-light);
    overflow-x: hidden;
    line-height: 1.7;
    font-size: 16px;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', Georgia, serif;
    line-height: 1.2;
    color: var(--text-dark);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }

p { margin-bottom: 1rem; }

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul { list-style: none; }
img { display: block; max-width: 100%; height: auto; }

/* =========================================
   2. AURORA BACKGROUND
   ========================================= */
.aurora-container {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    z-index: -1;
    overflow: hidden;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #f0fdfa 100%);
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: float 20s infinite alternate ease-in-out;
}

.blob-1 {
    top: -15%; left: -10%;
    width: 50vw; height: 50vw;
    background: #bae6fd;
}
.blob-2 {
    bottom: -15%; right: -10%;
    width: 55vw; height: 55vw;
    background: #ccfbf1;
    animation-delay: -7s;
}
.blob-3 {
    top: 35%; left: 35%;
    width: 35vw; height: 35vw;
    background: #e0f2fe;
    animation-duration: 25s;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1) rotate(0deg); }
    50% { transform: translate(40px, 60px) scale(1.1) rotate(5deg); }
    100% { transform: translate(-30px, -40px) scale(0.95) rotate(-5deg); }
}

/* =========================================
   3. UTILITY CLASSES
   ========================================= */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--blur-strength));
    -webkit-backdrop-filter: blur(var(--blur-strength));
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    box-shadow: var(--glass-shadow);
}

.section-padding {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-header p {
    color: var(--text-gray);
    font-size: 1.125rem;
    margin-top: 1rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(2, 132, 199, 0.1);
    color: var(--primary-dark);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(2, 132, 199, 0.2);
}

.badge svg {
    width: 16px;
    height: 16px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition);
    border: none;
    font-family: inherit;
}

.btn-primary {
    background: var(--primary-dark);
    color: white;
    box-shadow: 0 10px 30px -10px rgba(3, 105, 161, 0.5);
}

.btn-primary:hover {
    background: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px -10px rgba(3, 105, 161, 0.6);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.6);
    color: var(--primary-dark);
    border: 2px solid var(--primary-dark);
}

.btn-outline:hover {
    background: var(--primary-dark);
    color: white;
    transform: translateY(-3px);
}

.btn-warmth {
    background: var(--warmth);
    color: white;
    box-shadow: 0 10px 30px -10px rgba(245, 158, 11, 0.5);
}

.btn-warmth:hover {
    background: var(--warmth-light);
    transform: translateY(-3px);
}

.btn-lg {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

/* Grid Systems */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .grid-2 { grid-template-columns: 1fr; }
}

/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* =========================================
   4. HEADER & NAVIGATION
   ========================================= */
header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
    background: #ffffff;
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.06);
}

header.scrolled {
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 0.75rem 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--primary-dark);
    z-index: 1001;
}

.logo svg {
    color: var(--primary);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-text .brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.logo-text .brand-name .med {
    color: var(--primary-dark);
}

.logo-text .brand-name .link {
    color: var(--accent);
}

.logo-text .brand-tagline {
    font-size: 0.65rem;
    font-weight: 400;
    color: var(--text-gray);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a:not(.btn) {
    font-weight: 500;
    color: var(--text-gray);
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-links a:not(.btn):hover {
    color: var(--primary-dark);
}

.nav-links a:not(.btn):hover::after {
    width: 100%;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
    background: transparent;
    border: none;
    padding: 0.5rem;
}

.hamburger span {
    width: 28px; height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: var(--transition);
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}
.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

@media (max-width: 1024px) {
    .nav-links {
        position: fixed;
        top: 0; left: 0;
        width: 100%; height: 100vh;
        background: #ffffff;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        gap: 0;
        padding: 100px 1.5rem 2rem;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    /* Kill the underline pseudo-element on all mobile nav links */
    .nav-links a:not(.btn)::after {
        display: none !important;
    }

    /* Top-level direct links (Home, FAQs) */
    .nav-links > a:not(.btn) {
        font-size: 1.05rem;
        padding: 0.9rem 0;
        border-bottom: 1px solid var(--bg-light);
        color: var(--text-dark);
    }

    /* Dropdown containers get the same border */
    .nav-links > .nav-dropdown {
        border-bottom: 1px solid var(--bg-light);
    }

    /* Contact Us button full-width */
    .nav-links .btn {
        margin-top: 1.25rem;
        width: 100%;
        text-align: center;
    }

    .hamburger {
        display: flex;
    }
}

/* =========================================
   5. HERO SECTION
   ========================================= */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: calc(var(--header-height) + 2rem);
    padding-bottom: 4rem;
    position: relative;
}

.hero-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    position: relative;
    z-index: 2;
}

.hero h1 {
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero h1 span {
    color: var(--primary);
    font-style: italic;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    max-width: 540px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.trust-icon {
    width: 48px; height: 48px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.trust-icon svg {
    width: 24px; height: 24px;
    color: var(--primary);
}

.trust-text {
    font-size: 0.9rem;
}

.trust-text strong {
    display: block;
    color: var(--text-dark);
    font-size: 1rem;
}

.trust-text span {
    color: var(--text-gray);
}

/* Hero Visuals */
.hero-visuals {
    position: relative;
    height: 550px;
}

.hero-image-main {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 380px; height: 380px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent) 100%);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: morph 8s ease-in-out infinite;
}

.hero-image-main svg {
    width: 120px; height: 120px;
    color: white;
    opacity: 0.9;
}

@keyframes morph {
    0%, 100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    25% { border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%; }
    50% { border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%; }
    75% { border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%; }
}

.float-card {
    position: absolute;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 260px;
    animation: floatCard 6s ease-in-out infinite;
}

.fc-1 { top: 5%; right: 5%; animation-delay: 0s; }
.fc-2 { bottom: 15%; left: 0; animation-delay: 2s; }
.fc-3 { top: 55%; right: -5%; animation-delay: 4s; }

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.fc-icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.fc-icon svg {
    width: 24px; height: 24px;
    color: var(--primary);
}

.fc-content h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.fc-content span {
    font-size: 0.85rem;
    color: var(--text-gray);
}

@media (max-width: 1024px) {
    .hero-layout {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-trust {
        justify-content: center;
    }

    .hero-visuals {
        display: none;
    }
}

/* =========================================
   6. ABOUT / E-E-A-T SECTION
   ========================================= */
.about-section {
    background: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-light), transparent);
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image-main {
    width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--bg-light) 0%, #e0f2fe 100%);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.about-image-main svg {
    width: 100px; height: 100px;
    color: var(--primary);
    opacity: 0.3;
}

.about-stats {
    position: absolute;
    bottom: -30px; right: -30px;
    display: flex;
    gap: 1rem;
}

.stat-card {
    padding: 1.5rem;
    text-align: center;
    min-width: 120px;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-top: 0.5rem;
}

.about-content h2 {
    margin-bottom: 1.5rem;
}

.about-content > p {
    color: var(--text-gray);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.eeat-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.eeat-item {
    display: flex;
    gap: 1rem;
}

.eeat-icon {
    width: 52px; height: 52px;
    background: var(--bg-light);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.eeat-icon svg {
    width: 26px; height: 26px;
    color: var(--primary);
}

.eeat-item h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.eeat-item p {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin: 0;
}

@media (max-width: 968px) {
    .about-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-stats {
        position: relative;
        bottom: 0; right: 0;
        justify-content: center;
        margin-top: 1.5rem;
    }
}

/* =========================================
   7. SERVICES SECTION
   ========================================= */
.services-section {
    position: relative;
}

.service-card {
    padding: 2.5rem;
    transition: all var(--transition);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 70px; height: 70px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(-5deg);
}

.service-icon svg {
    width: 32px; height: 32px;
    color: white;
}

.service-card h3 {
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-body);
}

.service-features li svg {
    width: 16px; height: 16px;
    color: var(--accent);
    flex-shrink: 0;
}

/* =========================================
   8. HOW IT WORKS SECTION
   ========================================= */
.how-section {
    background: var(--bg-white);
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
}

.main-content .steps-container {
    grid-template-columns: 1fr;
    gap: 2rem;
}

.main-content .steps-container::before {
    display: none;
}

.main-content .step-card {
    text-align: left;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0 1.5rem;
    padding: 2rem;
}

.main-content .step-card .step-number {
    grid-row: 1 / 3;
    width: 70px;
    height: 70px;
    font-size: 1.8rem;
    margin: 0;
}

.main-content .step-card h3 {
    align-self: end;
}

.main-content .step-card p,
.main-content .step-card .check-list {
    grid-column: 2;
}

.steps-container::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 12%;
    right: 12%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-light), var(--accent));
    z-index: 0;
}

.step-card {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 100px; height: 100px;
    background: white;
    border: 3px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    box-shadow: 0 10px 30px rgba(2, 132, 199, 0.2);
    transition: var(--transition);
}

.step-card:hover .step-number {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
}

.step-card h3 {
    margin-bottom: 0.75rem;
}

.step-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

@media (max-width: 968px) {
    .steps-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-container::before {
        display: none;
    }
}

@media (max-width: 576px) {
    .steps-container {
        grid-template-columns: 1fr;
    }

    .main-content .step-card {
        display: block;
        text-align: center;
    }

    .main-content .step-card .step-number {
        margin: 0 auto 1rem;
    }

    .main-content .step-card h3 {
        margin-bottom: 0.75rem;
    }

    .main-content .step-card p,
    .main-content .step-card .check-list {
        text-align: left;
    }
}

/* =========================================
   9. SERVICE AREAS (GEO SECTION)
   ========================================= */
.areas-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.areas-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.areas-section .section-header {
    position: relative;
    z-index: 1;
}

.areas-section .section-header p {
    color: rgba(255, 255, 255, 0.8);
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.area-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.area-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
}

.area-item svg {
    width: 20px; height: 20px;
    color: var(--warmth);
    flex-shrink: 0;
}

.areas-cta {
    text-align: center;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.areas-cta p {
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    opacity: 0.9;
}

/* =========================================
   10. TESTIMONIALS SECTION
   ========================================= */
.testimonials-section {
    position: relative;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    padding: 2.5rem;
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 20px; left: 25px;
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    color: var(--primary);
    opacity: 0.15;
    line-height: 1;
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 1rem;
}

.testimonial-stars svg {
    width: 20px; height: 20px;
    fill: var(--warmth);
    color: var(--warmth);
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-body);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
}

.author-info strong {
    display: block;
    color: var(--text-dark);
}

.author-info span {
    font-size: 0.9rem;
    color: var(--text-gray);
}

/* =========================================
   11. FAQ SECTION (SEO Rich)
   ========================================= */
.faq-section {
    background: var(--bg-white);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: var(--bg-light);
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-family: inherit;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: var(--transition);
}

.faq-question:hover {
    background: #e0f2fe;
}

.faq-question svg {
    width: 24px; height: 24px;
    color: var(--primary);
    transition: transform var(--transition);
    flex-shrink: 0;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: white;
}

.faq-answer-content {
    padding: 1.5rem 2rem;
    color: var(--text-body);
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

/* =========================================
   12. LEAD GENERATION / CONTACT FORM
   ========================================= */
.contact-section {
    position: relative;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    margin-bottom: 1.5rem;
}

.contact-info > p {
    color: var(--text-gray);
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-method-icon {
    width: 52px; height: 52px;
    background: var(--bg-light);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-method-icon svg {
    width: 24px; height: 24px;
    color: var(--primary);
}

.contact-method h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-method p {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin: 0;
}

.contact-accreditations {
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 16px;
}

.contact-accreditations h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-gray);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.accreditation-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.accreditation-badge {
    padding: 0.75rem 1.25rem;
    background: white;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.accreditation-badge svg {
    width: 18px; height: 18px;
    color: var(--accent);
}

/* Form Styles */
.contact-form-container {
    padding: 3rem;
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header h3 {
    margin-bottom: 0.5rem;
}

.form-header p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.form-group label .required {
    color: #ef4444;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem 1.25rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(2, 132, 199, 0.1);
}

.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='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 20px;
    padding-right: 3rem;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.form-checkbox input[type="checkbox"] {
    width: 20px; height: 20px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: var(--primary);
}

.form-checkbox label {
    font-size: 0.9rem;
    color: var(--text-gray);
    cursor: pointer;
}

.form-checkbox label a {
    color: var(--primary);
    text-decoration: underline;
}

.form-submit {
    margin-top: 1rem;
}

.form-submit .btn {
    width: 100%;
}

.form-note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-top: 1rem;
}

.form-note svg {
    width: 16px; height: 16px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 0.25rem;
    color: var(--accent);
}

/* Captcha */
.captcha-group {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.captcha-question {
    font-weight: 600;
    color: var(--primary-dark);
    font-size: 1.1rem;
    background: var(--bg-light);
    padding: 0.75rem 1.25rem;
    border-radius: 10px;
    white-space: nowrap;
}

.captcha-group input {
    max-width: 120px;
}

.form-error {
    color: #ef4444;
    font-size: 0.85rem;
    display: none;
}

.form-error.visible {
    display: block;
}

.form-success-msg {
    color: var(--accent);
    font-size: 0.95rem;
    display: none;
    text-align: center;
    padding: 1rem;
    background: rgba(13, 148, 136, 0.1);
    border-radius: 12px;
}

.form-success-msg.visible {
    display: block;
}

@media (max-width: 968px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   13. CAREERS SECTION
   ========================================= */
.careers-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.careers-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.careers-content h2 {
    color: white;
    margin-bottom: 1.5rem;
}

.careers-content > p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.careers-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.career-benefit {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.career-benefit svg {
    width: 24px; height: 24px;
    color: var(--warmth);
    flex-shrink: 0;
}

.career-benefit span {
    font-size: 0.95rem;
}

.careers-positions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.position-card {
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.position-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.position-info h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.25rem;
}

.position-info span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.position-card svg {
    width: 24px; height: 24px;
    color: var(--primary-light);
}

@media (max-width: 968px) {
    .careers-layout {
        grid-template-columns: 1fr;
    }

    .careers-benefits {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   14. FOOTER
   ========================================= */
footer {
    background: #0f172a;
    color: white;
    padding: 5rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin: 1.5rem 0;
    max-width: 300px;
    line-height: 1.8;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 44px; height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-social svg {
    width: 20px; height: 20px;
}

.footer-column h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-column a:hover {
    color: white;
    padding-left: 5px;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-legal a:hover {
    color: white;
}

@media (max-width: 968px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* =========================================
   15. SUCCESS MESSAGE MODAL
   ========================================= */
.success-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.success-modal.active {
    opacity: 1;
    visibility: visible;
}

.success-content {
    background: white;
    padding: 3rem;
    border-radius: 24px;
    text-align: center;
    max-width: 450px;
    margin: 1rem;
    transform: scale(0.9);
    transition: var(--transition);
}

.success-modal.active .success-content {
    transform: scale(1);
}

.success-icon {
    width: 80px; height: 80px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.success-icon svg {
    width: 40px; height: 40px;
    color: white;
}

.success-content h3 {
    margin-bottom: 1rem;
}

.success-content p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

/* =========================================
   16. DROPDOWN NAVIGATION
   ========================================= */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-trigger {
    cursor: pointer;
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 220px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    padding: 0.75rem 0.5rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
    z-index: 1100;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.nav-dropdown-wide {
    min-width: 260px;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
    display: block;
    padding: 0.7rem 1.75rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-body);
    transition: all 0.2s ease;
}

.nav-dropdown-menu a:hover {
    background: var(--bg-light);
    color: var(--primary-dark);
    padding-left: 1.75rem;
}

.nav-dropdown-menu a::after {
    display: none;
}

.nav-links a.active:not(.btn) {
    color: var(--primary-dark);
}

.nav-links a.active:not(.btn)::after {
    width: 100%;
}

@media (max-width: 1024px) {
    /* Dropdown trigger - same size as top-level items, with chevron */
    .nav-dropdown .nav-dropdown-trigger {
        font-size: 1.05rem !important;
        padding: 0.9rem 0 !important;
        display: flex !important;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        color: var(--text-dark) !important;
    }

    /* Chevron indicator on right side */
    .nav-links a.nav-dropdown-trigger::after {
        content: '' !important;
        display: block !important;
        position: static !important;
        width: 8px !important;
        height: 8px !important;
        background: none !important;
        border-right: 2px solid var(--text-gray);
        border-bottom: 2px solid var(--text-gray);
        transform: rotate(45deg);
        transition: transform 0.3s ease;
        flex-shrink: 0;
    }

    .nav-dropdown.mobile-open > a.nav-dropdown-trigger::after {
        transform: rotate(-135deg);
    }

    /* Submenu panel - collapsed by default */
    .nav-dropdown-menu {
        position: static;
        transform: none;
        box-shadow: none;
        border: none;
        background: transparent;
        border-radius: 0;
        min-width: auto;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        padding: 0;
        transition: max-height 0.35s ease, opacity 0.25s ease, padding 0.35s ease, visibility 0.25s ease;
    }

    /* Prevent hover from opening on touch devices */
    .nav-dropdown:hover .nav-dropdown-menu {
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        transform: none;
    }

    /* Expanded submenu */
    .nav-dropdown.mobile-open .nav-dropdown-menu {
        max-height: 600px;
        opacity: 1;
        visibility: visible;
        padding: 0.25rem 0 0.5rem;
    }

    /* Submenu links - smaller, indented, lighter color */
    .nav-dropdown-menu a {
        font-size: 0.95rem !important;
        padding: 0.5rem 0 0.5rem 1.25rem !important;
        color: var(--text-gray) !important;
        border-bottom: none !important;
        border-left: 2px solid var(--bg-light);
    }

    .nav-dropdown-menu a:hover {
        color: var(--primary-dark) !important;
        background: transparent !important;
        border-left-color: var(--primary) !important;
        padding-left: 1.25rem !important;
    }
}

/* =========================================
   17. PAGE HERO BANNER (Inner Pages)
   ========================================= */
.page-hero {
    padding: 10rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.page-hero-overlay {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--accent) 100%);
    padding: 10rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.page-hero-overlay::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.page-hero .container,
.page-hero-overlay .container {
    position: relative;
    z-index: 1;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb a:hover {
    color: white;
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.5);
}

.breadcrumb .current {
    color: white;
    font-weight: 500;
}

.page-hero-overlay h1 {
    color: white;
    margin-bottom: 1rem;
}

.page-hero-overlay p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    max-width: 650px;
    line-height: 1.8;
}

/* =========================================
   18. INNER PAGE CONTENT
   ========================================= */
.page-content {
    padding: 5rem 0;
}

.page-content h2 {
    margin-bottom: 1.5rem;
}

.page-content h3 {
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.page-content p {
    color: var(--text-body);
    line-height: 1.9;
    font-size: 1.05rem;
}

.page-content ul,
.page-content ol {
    margin: 1.5rem 0;
    padding-left: 0;
}

.page-content ul li,
.page-content ol li {
    padding: 0.4rem 0 0.4rem 1.75rem;
    position: relative;
    color: var(--text-body);
    line-height: 1.7;
}

.page-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.85rem;
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
}

.content-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 4rem;
    align-items: start;
}

@media (max-width: 968px) {
    .content-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* Sidebar */
.sidebar {
    position: sticky;
    top: calc(var(--header-height) + 2rem);
}

.sidebar-card {
    padding: 2rem;
    margin-bottom: 2rem;
}

.sidebar-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    margin-top: 0;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--bg-light);
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.sidebar-nav a {
    padding: 0.75rem 1rem;
    border-radius: 10px;
    font-weight: 500;
    color: var(--text-body);
    transition: all 0.2s ease;
    font-size: 0.95rem;
}

.sidebar-nav a:hover,
.sidebar-nav a.active {
    background: var(--bg-light);
    color: var(--primary-dark);
    padding-left: 1.25rem;
}

.sidebar-nav a.active {
    font-weight: 600;
    border-left: 3px solid var(--primary);
}

.sidebar-cta {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: white;
    text-align: center;
}

.sidebar-cta h3 {
    color: white;
    border-bottom-color: rgba(255,255,255,0.2);
}

.sidebar-cta p {
    color: rgba(255,255,255,0.9);
    font-size: 0.95rem;
}

.sidebar-cta a:not(.btn) {
    color: white;
    text-decoration: underline;
    text-decoration-color: rgba(255,255,255,0.5);
}

.sidebar-cta a:not(.btn):hover {
    text-decoration-color: white;
}

/* Ensure sidebar-cta text stays white inside page-content */
.page-content .sidebar-cta p {
    color: rgba(255, 255, 255, 0.9);
}

.page-content .sidebar-cta a:not(.btn) {
    color: white;
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.5);
}

.page-content .sidebar-cta a:not(.btn):hover {
    text-decoration-color: white;
}

/* Feature Grid for inner pages */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.feature-item {
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.feature-item .feature-icon {
    width: 70px;
    height: 70px;
    background: var(--bg-light);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.feature-item .feature-icon svg {
    width: 32px;
    height: 32px;
    color: var(--primary);
}

.feature-item h3 {
    margin-top: 0;
    font-size: 1.2rem;
}

.feature-item p {
    font-size: 0.95rem;
    color: var(--text-gray);
}

/* Value Card for mission page */
.value-card {
    padding: 2.5rem;
    text-align: center;
    height: 100%;
}

.value-card h3 {
    margin-top: 1rem;
    color: var(--primary-dark);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.value-icon svg {
    width: 36px;
    height: 36px;
    color: white;
}

/* Service detail page */
.service-detail-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

.service-detail-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: var(--bg-light);
    border-radius: 12px;
}

.service-detail-features li::before {
    display: none;
}

.service-detail-features li svg {
    width: 22px;
    height: 22px;
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 2px;
}

@media (max-width: 768px) {
    .service-detail-features {
        grid-template-columns: 1fr;
    }
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

/* Info boxes */
.info-box {
    padding: 2rem;
    border-radius: 16px;
    margin: 2rem 0;
    border-left: 4px solid var(--primary);
    background: var(--bg-light);
}

.info-box h4 {
    font-family: 'Outfit', sans-serif;
    margin-bottom: 0.75rem;
    color: var(--primary-dark);
}

.info-box p {
    margin: 0;
    font-size: 0.95rem;
}

/* Check list style */
.check-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.6rem 0;
    font-size: 1.05rem;
}

.check-list li::before {
    display: none;
}

.check-list li svg {
    width: 22px;
    height: 22px;
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 3px;
}

/* Employment form */
.employment-form .form-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.employment-form .form-section:last-of-type {
    border-bottom: none;
}

.employment-form .form-section h3 {
    margin-top: 0;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
}

.form-row-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.25rem;
}

@media (max-width: 768px) {
    .form-row-3 {
        grid-template-columns: 1fr;
    }
}

/* Areas we serve page */
.county-card {
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.county-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.county-card svg {
    width: 40px;
    height: 40px;
    color: var(--primary);
    margin-bottom: 1rem;
}

.county-card h3 {
    margin-top: 0;
    font-size: 1.15rem;
}

.county-card p {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin: 0;
}
