/* ==========================================================================
   Orelo Ear Care - Custom Stylesheet
   ========================================================================== */

/* Design Tokens & Theme Variables */
:root {
    --primary: #0b4c53;          /* Deep Teal */
    --primary-light: #16646d;    /* Medium Teal */
    --accent: #1da1ab;           /* Bright Teal Accent */
    --accent-glow: rgba(29, 161, 171, 0.15);
    --dark: #0d272b;             /* Dark Slate Text */
    --dark-muted: #334d52;       /* Slate Grey Muted */
    --light: #f3f8f9;            /* Light Soft Teal Tint */
    --light-bg: #fafdfd;         /* Clean background tint */
    --white: #ffffff;
    --gray-light: #e6eded;
    --error: #d9534f;
    --success: #2ca58d;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --shadow-sm: 0 2px 8px rgba(11, 76, 83, 0.04);
    --shadow-md: 0 8px 30px rgba(11, 76, 83, 0.08);
    --shadow-lg: 0 16px 40px rgba(11, 76, 83, 0.12);
    
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-circle: 50%;
}

/* Modern CSS Reset & Core Defaults */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--white);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--primary);
    font-weight: 700;
    line-height: 1.25;
}

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

ul {
    list-style: none;
}

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

/* Reusable Components & Layout Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background-color: var(--light);
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 50px;
    margin-bottom: 16px;
    border: 1px solid rgba(29, 161, 171, 0.15);
}

.section-badge.badge-light {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--accent);
    border-color: rgba(29, 161, 171, 0.3);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--primary);
}

.section-desc {
    font-size: 1.1rem;
    color: var(--dark-muted);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: var(--transition-normal);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--accent);
    color: var(--white);
    box-shadow: 0 4px 14px var(--accent-glow);
}

.btn-primary:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(11, 76, 83, 0.2);
}

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

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

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

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

.btn-block {
    display: flex;
    width: 100%;
}

.btn-block i {
    margin-left: 8px;
}

/* Float Badges */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background-color: var(--light);
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--primary);
    border: 1px solid rgba(29, 161, 171, 0.2);
}

.badge-icon {
    color: var(--accent);
    font-size: 1rem;
}

/* Header & Navigation */
.main-header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    border-bottom: 1px solid rgba(11, 76, 83, 0.05);
}

.main-header.scrolled {
    padding: 10px 0;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    transition: var(--transition-normal);
}

.main-header.scrolled .header-container {
    height: 70px;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 58px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-normal);
}

.main-header.scrolled .logo-img {
    height: 48px;
}


.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.5px;
}

.nav-menu ul {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--dark);
    position: relative;
    padding: 4px 0;
}

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

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

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

.nav-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.mobile-nav-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    z-index: 1100;
}

.mobile-nav-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: var(--primary);
    border-radius: 2px;
    transition: var(--transition-normal);
}

/* Hero Section Styling */
.hero-section {
    padding-top: 180px;
    padding-bottom: 100px;
    background: radial-gradient(circle at 80% 20%, var(--light) 0%, var(--white) 50%);
    position: relative;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-content .badge {
    margin-bottom: 24px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--dark-muted);
    margin-bottom: 36px;
    line-height: 1.6;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.hero-trust {
    display: flex;
    gap: 32px;
    border-top: 1px solid rgba(11, 76, 83, 0.1);
    padding-top: 32px;
    width: 100%;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
}

.trust-icon {
    color: var(--accent);
    font-size: 1.2rem;
}

.hero-media {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 440px;
    border-radius: var(--radius-lg);
    overflow: visible;
}

.hero-image {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    object-fit: cover;
    aspect-ratio: 1 / 1;
}

.hero-image-wrapper::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--accent);
    border-radius: var(--radius-lg);
    z-index: -1;
}

.floating-card {
    position: absolute;
    background-color: var(--white);
    padding: 16px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 14px;
    border: 1px solid rgba(29, 161, 171, 0.15);
}

.hero-floating-card {
    bottom: 30px;
    left: -40px;
    animation: floatAnimation 4s ease-in-out infinite;
}

.float-card-icon {
    font-size: 2rem;
    color: var(--accent);
}

.floating-card h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 2px;
}

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

@keyframes floatAnimation {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Symptoms & About Wax Section */
.symptoms-section {
    background-color: var(--light-bg);
}

.symptoms-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.symptoms-image {
    width: 100%;
    border-radius: var(--radius-lg);
    transition: var(--transition-slow);
}

.symptoms-image-wrapper:hover .symptoms-image {
    transform: scale(1.03);
}

.symptoms-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 36px;
    margin-bottom: 36px;
}

.symptom-card {
    background-color: var(--white);
    padding: 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(11, 76, 83, 0.05);
    transition: var(--transition-normal);
}

.symptom-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-glow);
}

.symptom-icon-wrapper {
    width: 48px;
    height: 48px;
    background-color: var(--light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

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

.symptom-card h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.symptom-card p {
    font-size: 0.9rem;
    color: var(--dark-muted);
}

.symptoms-cta {
    background-color: var(--light);
    padding: 24px;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--accent);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Services Section Styling */
.services-section {
    background-color: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
}

.service-card {
    background-color: var(--light-bg);
    padding: 48px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(11, 76, 83, 0.05);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: transparent;
    transition: var(--transition-normal);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(29, 161, 171, 0.2);
}

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

.service-icon-box {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    background-color: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    box-shadow: 0 4px 10px rgba(11, 76, 83, 0.15);
}

.service-icon {
    font-size: 1.75rem;
}

.service-card-title {
    font-size: 1.6rem;
    margin-bottom: 16px;
    font-weight: 700;
}

.service-card-desc {
    color: var(--dark-muted);
    margin-bottom: 28px;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 500;
}

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

/* Transparent Pricing Alert Card */
.price-card {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: var(--radius-lg);
    padding: 40px;
    color: var(--white);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
    box-shadow: var(--shadow-lg);
}

.price-card h3 {
    color: var(--white);
    font-size: 1.6rem;
    margin-bottom: 12px;
}

.price-card p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    max-width: 700px;
}

.price-content {
    display: flex;
    gap: 24px;
}

.price-info-icon {
    font-size: 2.5rem;
    color: var(--accent);
    align-self: flex-start;
}

.price-action .btn {
    white-space: nowrap;
    background-color: var(--white);
    color: var(--primary);
}

.price-action .btn:hover {
    background-color: var(--accent);
    color: var(--white);
    transform: translateY(-3px);
}

/* Process Section (How It Works) */
.process-section {
    background-color: var(--light-bg);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
    margin-bottom: 56px;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 2px;
    background-color: var(--gray-light);
    z-index: 1;
}

.step-card {
    background-color: var(--white);
    padding: 32px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    text-align: center;
    position: relative;
    z-index: 2;
    border: 1px solid rgba(11, 76, 83, 0.05);
    transition: var(--transition-normal);
}

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

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--accent);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    border-radius: var(--radius-circle);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border: 4px solid var(--white);
    box-shadow: 0 4px 10px rgba(29, 161, 171, 0.2);
}

.step-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.step-card p {
    font-size: 0.9rem;
    color: var(--dark-muted);
}

.prep-tip-box {
    background-color: var(--white);
    border-radius: var(--radius-md);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    display: flex;
    gap: 20px;
    border: 1px solid rgba(29, 161, 171, 0.2);
}

.tip-icon-wrapper {
    width: 52px;
    height: 52px;
    background-color: var(--light);
    border-radius: var(--radius-circle);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tip-icon {
    font-size: 1.5rem;
    color: var(--accent);
}

.tip-text h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 6px;
}

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

/* Coverage Area Section */
.coverage-section {
    background-color: var(--white);
}

.coverage-details {
    margin: 32px 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.coverage-item {
    display: flex;
    gap: 16px;
}

.coverage-icon {
    font-size: 1.5rem;
    color: var(--accent);
    margin-top: 4px;
}

.coverage-item h3 {
    font-size: 1.15rem;
    margin-bottom: 4px;
    font-weight: 700;
}

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

/* Styled map placeholder */
.coverage-visual {
    display: flex;
    justify-content: center;
}

.map-placeholder {
    width: 100%;
    max-width: 480px;
    height: 380px;
    background: radial-gradient(circle, var(--light) 20%, #e1ebeb 100%);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(11, 76, 83, 0.1);
}

.map-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--primary);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-sm);
    z-index: 5;
}

.map-inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.map-icon {
    font-size: 8rem;
    color: rgba(11, 76, 83, 0.08);
}

.location-pin {
    width: 60px;
    height: 60px;
    background-color: var(--accent);
    color: var(--white);
    border-radius: var(--radius-circle);
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    box-shadow: 0 0 20px rgba(29, 161, 171, 0.4);
    z-index: 4;
}

.pin-icon {
    font-size: 1.5rem;
}

.pulse-ring {
    width: 100px;
    height: 100px;
    border: 2px solid var(--accent);
    border-radius: var(--radius-circle);
    position: absolute;
    animation: pulseAnimation 2s linear infinite;
    opacity: 0;
}

.pulse-ring-2 {
    width: 180px;
    height: 180px;
    border: 1px solid var(--accent);
    border-radius: var(--radius-circle);
    position: absolute;
    animation: pulseAnimation 2s linear infinite;
    animation-delay: 0.8s;
    opacity: 0;
}

@keyframes pulseAnimation {
    0% { transform: scale(0.6); opacity: 0; }
    50% { opacity: 0.4; }
    100% { transform: scale(1.8); opacity: 0; }
}

/* FAQ Accordion Section */
.faq-section {
    background-color: var(--light-bg);
}

.faq-accordion-wrapper {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background-color: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(11, 76, 83, 0.05);
    overflow: hidden;
    transition: var(--transition-normal);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary);
}

.faq-arrow {
    font-size: 1rem;
    color: var(--accent);
    transition: var(--transition-normal);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal) ease-out;
    padding: 0 24px;
}

.faq-answer p {
    color: var(--dark-muted);
    font-size: 0.95rem;
    padding-bottom: 24px;
}

/* Active FAQ Item State */
.faq-item.active {
    border-color: var(--accent);
    box-shadow: var(--shadow-md);
}

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

.faq-item.active .faq-answer {
    max-height: 200px; /* arbitrary large value */
}

/* Booking & Contact Section */
.contact-section {
    background-color: var(--white);
    position: relative;
    padding-bottom: 120px;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background-color: var(--primary);
    z-index: 1;
}

.contact-section .container {
    position: relative;
    z-index: 2;
}

.contact-section .grid-2 {
    gap: 80px;
}

/* Left Panel - Dark Info Card */
.contact-info-panel {
    color: var(--white);
}

.contact-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.2;
}

.contact-desc {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    font-size: 1.05rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.contact-method-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-normal);
}

.contact-method-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--accent);
}

.contact-method-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background-color: var(--accent);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.contact-method-item h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 2px;
}

.contact-method-item p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.contact-advisory {
    display: flex;
    gap: 16px;
    background-color: rgba(217, 83, 79, 0.1);
    border-left: 4px solid var(--error);
    padding: 20px;
    border-radius: var(--radius-sm);
}

.advisory-icon {
    font-size: 1.5rem;
    color: var(--error);
    margin-top: 2px;
}

.contact-advisory h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 4px;
}

.contact-advisory p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.4;
}

/* Right Panel - Contact Form */
.contact-form-panel {
    background-color: var(--white);
    padding: 48px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(11, 76, 83, 0.08);
}

.form-title {
    font-size: 1.5rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.form-subtitle {
    color: var(--dark-muted);
    font-size: 0.9rem;
    margin-bottom: 32px;
}

.form-group-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--primary);
}

.required {
    color: var(--error);
}

.form-group input, 
.form-group select, 
.form-group textarea {
    padding: 12px 16px;
    border: 1.5px solid var(--gray-light);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--dark);
    outline: none;
    transition: var(--transition-fast);
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

.form-checkbox {
    display: flex;
    gap: 12px;
    margin-bottom: 28px;
    align-items: flex-start;
}

.form-checkbox input {
    margin-top: 4px;
    cursor: pointer;
}

.form-checkbox label {
    font-size: 0.85rem;
    color: var(--dark-muted);
    cursor: pointer;
    line-height: 1.4;
}

/* Form Submit Loading/Status */
.form-status-msg {
    margin-top: 16px;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    display: none;
}

.form-status-msg.success {
    display: block;
    background-color: rgba(44, 165, 141, 0.1);
    color: var(--success);
    border: 1px solid var(--success);
}

.form-status-msg.error {
    display: block;
    background-color: rgba(217, 83, 79, 0.1);
    color: var(--error);
    border: 1px solid var(--error);
}

/* Footer Section */
.main-footer {
    background-color: var(--dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 0 0;
    border-top: 4px solid var(--accent);
}

.footer-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.footer-tagline {
    font-size: 0.95rem;
    line-height: 1.5;
    max-width: 320px;
}

.footer-credentials {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--white);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.text-white {
    color: var(--white);
}

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

.footer-links h3, 
.footer-contact h3 {
    color: var(--white);
    font-size: 1.15rem;
    margin-bottom: 24px;
    font-weight: 700;
    position: relative;
    padding-bottom: 8px;
}

.footer-links h3::after, 
.footer-contact h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--accent);
}

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

.footer-links a:hover {
    color: var(--accent);
    padding-left: 4px;
}

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

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
}

.footer-icon {
    color: var(--accent);
    margin-top: 4px;
}

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

.footer-bottom {
    background-color: #081a1d;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.85rem;
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */

@media (max-width: 1024px) {
    .grid-2 {
        gap: 40px;
    }
    .hero-container {
        gap: 40px;
    }
    .hero-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 992px) {
    section {
        padding: 80px 0;
    }
    
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 48px;
    }

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

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

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

    .hero-image-wrapper {
        max-width: 380px;
    }

    .hero-floating-card {
        left: -10px;
    }

    .symptoms-media {
        order: 2;
    }

    .symptoms-image-wrapper {
        max-width: 500px;
        margin: 0 auto;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .price-card {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 24px;
    }

    .price-content {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .price-info-icon {
        align-self: center;
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .process-steps::before {
        display: none;
    }

    .coverage-visual {
        max-width: 480px;
        margin: 0 auto;
        width: 100%;
    }

    .contact-section::before {
        width: 100%;
        height: 45%;
    }

    .contact-section {
        padding-bottom: 80px;
    }

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

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    /* Mobile Header */
    .mobile-nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--white);
        box-shadow: var(--shadow-lg);
        transition: var(--transition-normal);
        z-index: 999;
        overflow-y: auto;
    }

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

    .nav-menu ul {
        flex-direction: column;
        padding: 40px 24px;
        gap: 24px;
        align-items: stretch;
    }

    .nav-link {
        font-size: 1.15rem;
        display: block;
        padding: 10px 0;
        border-bottom: 1px solid var(--gray-light);
    }

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

    .nav-btn {
        margin-top: 10px;
        text-align: center;
        width: 100%;
        padding: 14px;
        font-size: 1rem;
    }

    /* Mobile active hamburger */
    .mobile-nav-toggle.active .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .mobile-nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .mobile-nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    /* Sections */
    .section-title {
        font-size: 2rem;
    }

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

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

    .process-steps {
        grid-template-columns: 1fr;
    }

    .prep-tip-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .contact-form-panel {
        padding: 24px;
    }

    .form-group-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }
}
