/*
 * ALTAIR HEARING REVOLUTION - CSS Design System
 * Highly optimized, responsive, and premium look & feel.
 */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
    /* Colors */
    --primary-blue: #0b356c;
    --primary-blue-dark: #072246;
    --primary-blue-light: #164f96;
    --accent-orange: #0b356c; /* Adopt brand deep navy blue for primary CTA buttons */
    --accent-orange-hover: #0052cc; /* Royal blue on hover */
    --accent-blue: #0052cc; /* Royal blue for highlighting highlights & accents */
    --accent-green: #10b981; /* Premium success green from screenshots */
    --accent-green-hover: #059669;
    
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --text-light: #94a3b8;
    
    --bg-light: #f4f8fd; /* Soft light ice-blue background */
    --bg-blue-gradient: linear-gradient(135deg, #f0f6fc 0%, #ffffff 100%); /* Matches screenshots backdrop gradient */
    --bg-blue-dark: #0b356c; /* Navy blue background */
    
    /* Fonts */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    /* Box Shadows */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 20px -2px rgba(11,53,108,0.1);
    --shadow-lg: 0 10px 30px -5px rgba(11,53,108,0.15);
    --shadow-xl: 0 20px 40px -5px rgba(11,53,108,0.25);
    
    /* Borders */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

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

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: #ffffff;
    line-height: 1.5;
    overflow-x: hidden;
}

/* Containers & Layouts */
.container {
    width: 100%;
    max-width: 1240px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 20px;
    padding-left: 20px;
}

/* Visibility Helper Classes */
.hidden-desktop {
    display: block;
}

.hidden-mobile {
    display: none !important;
}

@media (min-width: 1024px) {
    .hidden-desktop {
        display: none !important;
    }
    .hidden-mobile {
        display: block !important;
    }
    /* Flex and grid variations for hidden-mobile */
    .hidden-mobile.flex {
        display: flex !important;
    }
    .hidden-mobile.grid {
        display: grid !important;
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
}

/* Header & Navigation Styles */
/* Desktop Top Bar */
.desktop-top-bar {
    background-color: var(--primary-blue);
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.signia-partner-badge {
    display: flex;
    align-items: center;
    gap: 8px;
}

.signia-icon-inline {
    height: 14px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.top-bar-features {
    display: flex;
    gap: 30px;
}

.top-bar-feature {
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-bar-feature i {
    color: #93c5fd; /* Soft light blue icon */
}

/* Main Header */
.main-header {
    background-color: #ffffff;
    border-bottom: 1px solid #f1f5f9;
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 12px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

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

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

.logo-img {
    height: 48px;
    object-fit: contain;
}

.logo-badge {
    color: var(--accent-orange);
    font-weight: 700;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    letter-spacing: 0.5px;
    border-left: 2px solid #e2e8f0;
    padding-left: 12px;
}

/* Header Right for Desktop */
.header-right-desktop {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: nowrap;
}

.header-cta-btn {
    padding: 10px 22px !important;
    font-size: 0.9rem !important;
    white-space: nowrap;
}

.expert-contact {
    display: flex;
    align-items: center;
    gap: 10px;
}

.expert-contact-icon {
    width: 36px;
    height: 36px;
    background-color: #fff7ed;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-orange);
    font-size: 1.1rem;
    border: 1px solid #ffedd5;
}

.expert-contact-text span {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.expert-contact-text a {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--primary-blue);
    text-decoration: none;
}

/* Header for Mobile */
.header-mobile-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.expert-call-mobile {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #fff7ed;
    border: 1px solid #ffedd5;
    padding: 6px 12px;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 700;
    color: var(--primary-blue);
    font-size: 0.85rem;
}

.expert-call-mobile i {
    color: var(--accent-orange);
}

.burger-menu-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-blue);
    cursor: pointer;
    padding: 4px;
}

/* Mobile Side Navigation Drawer */
.mobile-nav-drawer {
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100vh;
    background-color: #ffffff;
    box-shadow: -5px 0 30px rgba(0,0,0,0.15);
    z-index: 1000;
    transition: right var(--transition-normal);
    padding: 30px 20px;
    display: flex;
    flex-col: column;
    flex-direction: column;
}

.mobile-nav-drawer.active {
    right: 0;
}

.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0,0,0,0.4);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-fast);
}

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

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.drawer-close-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
}

.drawer-menu {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: auto;
}

.drawer-menu a {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-blue);
    text-decoration: none;
    padding: 10px 0;
    border-bottom: 1px solid #f1f5f9;
}

.drawer-footer {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 700;
    text-decoration: none;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
    padding: 12px 24px;
    font-size: 0.95rem;
    text-align: center;
}

.btn-orange {
    background-color: var(--accent-orange);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(11, 53, 108, 0.25);
}

.btn-orange:hover {
    background-color: var(--accent-orange-hover);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(11, 53, 108, 0.35);
}

.btn-green {
    background-color: var(--accent-green);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.2);
}

.btn-green:hover {
    background-color: var(--accent-green-hover);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.btn-large {
    padding: 16px 36px;
    font-size: 1.1rem;
}

/* Hero Section Styles */
.hero-section {
    position: relative;
    padding: 40px 0;
    overflow: hidden;
}

/* Mobile Hero */
.hero-section.mobile-layout {
    background: linear-gradient(to bottom, #F2F6FF 0%, #e1ebf9 55%, #dae0ef 100%);
    padding: 10px 0 0 0; /* Reduced top padding to tighten spacing */
    position: relative;
    overflow: hidden;
    text-align: center;
}

/* Background plant pot styled exactly to match the reference */
.mobile-hero-plant {
    position: absolute;
    left: -5px;    /* Shifted slightly right (from -20px) */
    bottom: 130px; /* Shifted slightly above (from 105px) */
    width: 90px;   /* Perfectly scaled down */
    height: auto;
    z-index: 3;    /* Layers in front of the pedestals for deep 3D composition */
    pointer-events: none;
    opacity: 0.95;
    filter: blur(2.5px); /* Strong depth-of-field blur */
}

.hero-section.mobile-layout .container {
    position: relative;
    z-index: 2;
}

.hero-subtitle {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent-orange);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

/* ── CHENNAI tag ── */
.hero-chennai-tag {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 800;
    color: #0052cc;
    letter-spacing: 4px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.hero-chennai-tag .tag-dash {
    color: #16a34a; /* Vibrant green dashes */
    font-weight: 900;
    font-size: 1.1rem;
}

/* ── Title ── */
.hero-title {
    font-size: 2.8rem;
    color: #0a1d37;
    line-height: 1.08;
    margin-bottom: 12px;
    font-weight: 800;
    letter-spacing: -0.8px;
    font-family: var(--font-heading);
}

.hero-title span.highlight {
    color: #0052cc; /* Bright blue like reference */
    display: block;
    font-size: 3.2rem;
    font-weight: 900;
    font-style: normal; /* NOT italic, matching first-page.png */
    margin-top: 4px;
}

/* ── Curved line divider ── */
.hero-curved-line {
    width: 90%;
    max-width: 320px;
    margin: 4px auto 18px auto;
}

/* ── Description ── */
.hero-desc {
    font-size: 1.05rem;
    color: #1e293b;
    font-weight: 500;
    margin-bottom: 15px;
    line-height: 1.45;
    max-width: 330px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 10px;
}

/* ── Circular Feature Badges Row ── */
.hero-circular-badges {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8px;
    margin: 16px 0 16px 0;
    width: 100%;
    padding: 0 15px;
}

.hero-circular-badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    min-width: 0;
}

.hero-circle-icon-box {
    width: 58px;
    height: 58px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0052cc;
    box-shadow: 0 4px 12px rgba(11, 53, 108, 0.05);
    border: 1px solid #bfdbfe; /* Elegant blue outline */
    transition: all 0.3s ease;
}

.hero-circular-badge-item:hover .hero-circle-icon-box {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 82, 204, 0.12);
    border-color: #3b82f6;
}

.hero-circle-label {
    margin-top: 10px;
    font-size: 0.65rem;
    font-weight: 700;
    color: #0a1d37;
    line-height: 1.3;
    text-align: center;
    font-family: var(--font-body);
}

.hero-bullets {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 0px;
    align-items: center;
}

.hero-bullet-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-blue-dark);
    background-color: rgba(255, 255, 255, 0.95);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(11, 53, 108, 0.05);
    width: 85%;
    max-width: 320px;
}

.hero-bullet-item i {
    color: var(--primary-blue);
    font-size: 1.1rem;
}

.hero-cta-wrapper {
    margin-bottom: 20px;
}

.hero-cta-wrapper .btn {
    width: 100%;
    max-width: 360px;
}

/* Hero Platform Image & Wrapper */
.hero-platform-wrapper {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 2;
    line-height: 0; /* Prevents text line-height from creating bottom spacing */
}

.hero-clickable-image {
    display: inline-block;
    width: 100%;
    max-width: 100%;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    line-height: 0; /* Prevents inline-block baseline gap */
}

/* No glow on mobile */
.hero-clickable-image::before {
    display: none;
}

.hero-platform-img {
    display: block; /* Removes inline element baseline descender gap */
    vertical-align: bottom; /* Forces image to sit flush on the bottom boundary */
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 15px 20px rgba(11, 53, 108, 0.14)); /* Creates realistic 3D shadow around transparent image shape */
    transition: transform var(--transition-normal);
}

/* Expanded to 100% viewport width on mobile to push the cut-off pedestal edges off-screen */
.hero-section.mobile-layout .hero-platform-wrapper {
    margin-left: -20px;
    margin-right: -20px;
    width: calc(100% + 40px);
    margin-top: 15px;
}

/* Hover transitions */
.hero-clickable-image:hover .hero-platform-img {
    transform: translateY(-3px) scale(1.01);
}

/* Mobile Lead Section (Second Page) */
.mobile-lead-section {
    padding: 30px 0 40px 0;
    background-color: #ffffff;
    position: relative;
    z-index: 5;
}

.mobile-lead-section .container {
    max-width: 480px; /* Center and constrain the card for premium layout */
    margin: 0 auto;
    padding: 0 20px;
}

/* Mobile Doctor Card (Below Form) */
.mobile-doctor-card {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #ebf3fc 0%, #f1f7fe 100%);
    border-radius: 20px;
    border: 1px solid rgba(0, 82, 204, 0.06);
    padding: 16px 20px;
    margin-top: 25px;
    gap: 18px;
    text-align: left;
    box-shadow: 0 4px 15px rgba(11, 53, 108, 0.04);
}

.mobile-doctor-img-wrapper {
    flex: 0 0 85px;
    width: 85px;
    height: 85px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ffffff;
    box-shadow: 0 4px 10px rgba(0, 82, 204, 0.08);
}

.mobile-doctor-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mobile-doctor-info {
    flex: 1;
    min-width: 0;
}

.mobile-doctor-info h4 {
    font-size: 1.1rem;
    color: #0b356c;
    font-weight: 800;
    margin-bottom: 8px;
    font-family: var(--font-heading);
    line-height: 1.25;
}

.mobile-doctor-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.mobile-doctor-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.35;
}

.mobile-doctor-bullets li i {
    color: #16a34a; /* Vibrant premium green checkmark */
    font-size: 0.95rem;
    margin-top: 1px;
    flex-shrink: 0;
}

/* Mobile Trusted Ratings Card (Below Doctor Card) */
.mobile-trusted-ratings-card {
    background: #ffffff;
    border: 1px solid rgba(0, 82, 204, 0.06);
    border-radius: 20px;
    padding: 20px 15px;
    margin-top: 20px;
    box-shadow: 0 4px 15px rgba(11, 53, 108, 0.04);
    text-align: center;
}

.mobile-trusted-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #0b356c;
    margin: 0;
    text-transform: none;
    letter-spacing: normal;
    font-family: var(--font-heading);
}

.mobile-trusted-accent-line {
    width: 44px;
    height: 3.5px;
    background-color: #16a34a; /* Green theme accent line */
    border-radius: 2px;
    margin: 8px auto 20px auto;
}

.mobile-trusted-metrics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 5px;
    align-items: start;
}

.mobile-trusted-metric-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-right: 1px solid #e2e8f0;
    padding: 0 4px;
}

.mobile-trusted-metric-item:last-child {
    border-right: none;
}

.mobile-trusted-logo {
    height: 22px;
    object-fit: contain;
    margin-bottom: 6px;
}

.mobile-trustpilot-big-star {
    width: 28px;
    height: 28px;
    margin-bottom: 4px;
}

.mobile-happy-icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 22px;
    margin-bottom: 6px;
    color: #0052cc;
}

.mobile-rating-val {
    font-size: 1.35rem;
    font-weight: 800;
    color: #16a34a; /* Large green score text exactly like mockup */
    margin-bottom: 4px;
    line-height: 1.1;
    font-family: var(--font-heading);
}

.mobile-rating-val.customer-count {
    margin-top: 1px;
}

.mobile-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 6px;
}

.mobile-stars .sharp-star {
    width: 14px;
    height: 14px;
    display: block;
}

.mobile-trustpilot-star-boxes {
    display: flex;
    gap: 1.5px;
    margin-bottom: 6px;
}

.mobile-star-box {
    width: 13px;
    height: 13px;
    background-color: #16a34a;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1.5px;
}

.mobile-star-box svg {
    width: 8px;
    height: 8px;
    display: block;
    fill: #ffffff;
}

.mobile-star-box.half-active {
    background: linear-gradient(90deg, #16a34a 50%, #d1d5db 50%);
}

.mobile-metric-lbl {
    font-size: 0.72rem;
    font-weight: 800;
    color: #0b356c; /* Rich dark navy text labels */
    line-height: 1.25;
}

.mobile-metric-lbl.text-navy {
    color: #0b356c;
}

/* Desktop Hero Layout */
.hero-section.desktop-layout {
    background: var(--bg-blue-gradient);
    padding: 20px 0 10px 0; /* Minimized top/bottom padding to bring everything upward! */
    position: relative;
}
.hero-section.desktop-layout::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/background.png');
    background-repeat: no-repeat;
    background-position: left center;
    background-size: contain;
    opacity: 0.18;
    filter: blur(4px);
    z-index: 0;
    pointer-events: none;
}
.hero-section.desktop-layout .container {
    position: relative;
    z-index: 1;
}

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

.hero-bottom-row-desktop {
    display: none;
}

@media (min-width: 1025px) {
    .hero-bottom-row-desktop {
        display: grid;
        grid-template-columns: 1.1fr 0.9fr;
        gap: 40px;
        margin-top: -15px;
        align-items: stretch;
    }
}

.hero-content-desktop {
    display: flex;
    flex-direction: column;
}

.hero-content-desktop .hero-title {
    font-size: 3.2rem;
    margin-bottom: 20px;
}

.hero-content-desktop .hero-desc {
    font-size: 1.25rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 30px;
}

.hero-bullets-desktop {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 0px;
}

.hero-bullets-desktop .hero-bullet-item {
    width: 100%;
    max-width: none;
    box-shadow: none;
    background-color: transparent;
    border: none;
    padding: 0;
}

.hero-bullets-desktop .hero-bullet-item i {
    color: #2563eb; /* premium blue icon tint */
    font-size: 1.25rem;
}

.hero-content-desktop .hero-platform-wrapper {
    margin-top: 15px;
    justify-content: flex-start;
}

.hero-content-desktop .hero-clickable-image {
    max-width: 650px;
}

/* Form Card on Desktop Hero & Mobile Modal (Matched to Web UI) */
.hero-form-card,
.matched-form-card {
    background-color: #ffffff;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(11, 53, 108, 0.08);
    padding: 35px;
    position: relative;
    z-index: 10;
}

.form-icon-circle-top {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: var(--accent-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin: -15px auto 15px auto; /* Overlaps nicely over the top borders of the white cards! */
    box-shadow: var(--shadow-sm);
    z-index: 15;
    position: relative;
}

@media (min-width: 768px) {
    .form-icon-circle-top {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
        margin: -25px auto 15px auto; /* Perfect overlap offset for desktop */
    }
}

.form-subtitle-highlighted {
    display: block;
    color: var(--accent-green);
    font-size: 1.2rem;
    font-weight: 800;
    text-align: center;
    margin-top: 2px;
    margin-bottom: 25px;
}

@media (max-width: 767px) {
    .form-subtitle-highlighted {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }
}

.input-icon-wrapper {
    position: relative;
    width: 100%;
}

.input-icon-wrapper .form-input,
.input-icon-wrapper .form-select {
    padding-left: 45px !important; /* Make room for the left input icon! */
}

.input-field-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    font-size: 0.95rem;
    pointer-events: none;
    transition: color var(--transition-fast);
}

.input-icon-wrapper:focus-within .input-field-icon {
    color: var(--primary-blue);
}

.hero-form-card h2 {
    color: var(--primary-blue-dark);
    font-size: 1.85rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 6px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.form-subtitle {
    display: block;
    color: var(--text-muted);
    font-size: 0.95rem;
    text-align: center;
    margin-bottom: 25px;
    font-weight: 500;
}

.form-group {
    margin-bottom: 18px;
    text-align: left;
}

.form-label {
    display: block;
    color: var(--primary-blue-dark);
    font-size: 0.88rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.hero-form-card .form-input,
.matched-form-card .form-input,
.hero-form-card .form-select,
.matched-form-card .form-select {
    width: 100%;
    padding: 14px 18px;
    border-radius: 10px;
    border: 1px solid #cbd5e1;
    background-color: #f8fafc;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-dark);
    outline: none;
    transition: var(--transition-fast);
}

.hero-form-card .form-input::placeholder,
.matched-form-card .form-input::placeholder {
    color: var(--text-light);
}

.hero-form-card .form-input:focus,
.matched-form-card .form-input:focus,
.hero-form-card .form-select:focus,
.matched-form-card .form-select:focus {
    border-color: var(--accent-orange);
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(255, 120, 0, 0.15);
}

/* Custom Dropdown select arrow */
.hero-form-card .form-select,
.matched-form-card .form-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230b356c' stroke-width='3' 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 18px center;
    background-size: 16px;
    padding-right: 40px;
    cursor: pointer;
}

.hero-form-card .form-select option,
.matched-form-card .form-select option {
    background-color: #ffffff;
    color: var(--text-dark);
}

.form-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.4;
    cursor: pointer;
    margin: 22px 0;
}

.form-checkbox-label input {
    margin-top: 3px;
    accent-color: var(--accent-orange);
}

.form-checkbox-label i {
    color: var(--accent-green);
    font-size: 0.95rem;
}

.hero-form-card .btn-submit,
.matched-form-card .btn-submit {
    width: 100%;
    padding: 16px;
    border-radius: 50px;
    background: var(--accent-orange);
    color: #ffffff;
    font-weight: 800;
    font-size: 1.05rem;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition-fast);
    box-shadow: 0 4px 14px rgba(11, 53, 108, 0.25);
}

.hero-form-card .btn-submit:hover,
.matched-form-card .btn-submit:hover {
    background: var(--accent-orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(11, 53, 108, 0.35);
}

.hero-form-card .btn-submit i,
.matched-form-card .btn-submit i {
    font-size: 1rem;
    transition: transform var(--transition-fast);
    color: #ffffff;
}

.hero-form-card .btn-submit:hover i,
.matched-form-card .btn-submit:hover i {
    transform: translateX(4px);
}

.form-disclaimer {
    font-size: 0.72rem;
    color: var(--text-light);
    text-align: center;
    margin-top: 15px;
    line-height: 1.4;
}

/* Social Proof Bar Styles */
.social-proof-section {
    padding: 30px 0;
    background-color: #ffffff;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
}

.social-proof-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: center;
    text-align: center;
}

@media (min-width: 768px) {
    .social-proof-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

.social-proof-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

@media (min-width: 768px) {
    .social-proof-item {
        flex-direction: row;
        text-align: left;
        align-items: center;
        padding: 0 10px;
    }
    .social-proof-item:not(:last-child) {
        border-right: 1px solid #e2e8f0;
    }
}

.social-proof-logo {
    height: 28px;
    object-fit: contain;
}

.social-proof-stars {
    color: #fbbf24;
    font-size: 0.85rem;
    display: flex;
    gap: 2px;
}

.trustpilot-stars {
    color: #00b67a;
    font-size: 0.95rem;
    display: inline-flex;
    gap: 1px;
}

.trustpilot-star-square {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #00b67a;
    color: #ffffff;
    width: 16px;
    height: 16px;
    font-size: 0.55rem;
}

.social-proof-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (min-width: 768px) {
    .social-proof-rating {
        align-items: flex-start;
    }
}

.rating-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.rating-number {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary-blue-dark);
}

.rating-lbl {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

.happy-customers-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #eff6ff;
    color: #2563eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.happy-customers-txt {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

.happy-customers-txt strong {
    display: block;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary-blue-dark);
    line-height: 1.1;
    margin-bottom: 2px;
}

/* Why Choose Us Section Styles */
.section-title-wrapper {
    text-align: center;
    margin-bottom: 40px;
}

.section-tag {
    display: inline-block;
    color: var(--accent-blue);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.section-title {
    font-size: 1.85rem;
    color: var(--primary-blue-dark);
    font-weight: 800;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }
}

.why-choose-section {
    padding: 40px 0;
    background-color: #ffffff;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px 15px;
}

@media (min-width: 768px) {
    .why-choose-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
}

@media (min-width: 1024px) {
    .why-choose-grid {
        grid-template-columns: repeat(6, 1fr);
        gap: 20px;
    }
}

.why-choose-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px;
    transition: transform var(--transition-fast);
}

.why-choose-card:hover {
    transform: translateY(-2px);
}

.why-choose-icon-circle {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background-color: #f0f6fc;
    border: 1px solid #dbeafe;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 1.45rem;
    margin-bottom: 15px;
    box-shadow: 0 4px 6px -1px rgba(11,53,108,0.03);
    transition: var(--transition-fast);
}

.why-choose-card:hover .why-choose-icon-circle {
    background-color: var(--primary-blue);
    color: #ffffff;
    border-color: var(--primary-blue);
}

.why-choose-card h3 {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--primary-blue-dark);
    line-height: 1.4;
}

/* Exclusive Offers Banner Styles */
.exclusive-offers-section {
    padding: 20px 0 40px;
    background-color: #ffffff;
}

.exclusive-offers-banner {
    background-color: var(--bg-blue-dark);
    color: #ffffff;
    border-radius: var(--radius-md);
    padding: 30px 20px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .exclusive-offers-banner {
        border-radius: var(--radius-lg);
        padding: 40px 50px;
    }
}

.offers-header {
    text-align: center;
    margin-bottom: 30px;
}

.offers-header h2 {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 0.5px;
}

@media (min-width: 768px) {
    .offers-header h2 {
        font-size: 1.8rem;
    }
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px 15px;
}

@media (min-width: 1024px) {
    .offers-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }
}

.offer-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

@media (min-width: 1024px) {
    .offer-item {
        justify-content: center;
    }
    .offer-item:not(:last-child) {
        border-right: 1px solid rgba(255,255,255,0.15);
        padding-right: 15px;
    }
}

.offer-icon-wrapper {
    color: var(--accent-orange);
    font-size: 1.65rem;
    flex-shrink: 0;
}

.offer-text-wrapper {
    display: flex;
    flex-direction: column;
}

.offer-lbl {
    font-size: 0.72rem;
    color: #93c5fd;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.offer-val {
    font-size: 0.95rem;
    font-weight: 800;
    line-height: 1.25;
}

@media (min-width: 768px) {
    .offer-val {
        font-size: 1.15rem;
    }
}

/* Testimonials Section Styles */
.testimonials-section {
    padding: 40px 0;
    background-color: #ffffff;
    overflow: hidden;
}

.testimonials-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.testimonials-header-left {
    max-width: 600px;
}

.see-more-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: color var(--transition-fast);
}

.see-more-link:hover {
    color: var(--accent-orange);
}

/* Mobile Testimonials Carousel Layout */
.carousel-outer-container {
    position: relative;
    width: 100%;
}

.carousel-viewport {
    width: 100%;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    transition: transform var(--transition-normal);
    width: 400%; /* 4 slides */
}

.carousel-slide {
    width: 25%; /* 1/4 of track */
    flex-shrink: 0;
    padding: 0 10px;
}

.testimonial-card-mobile {
    background-color: #ffffff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid #f1f5f9;
    padding: 20px;
    min-height: 220px;
    display: flex;
    flex-direction: column;
}

.testimonial-mobile-top {
    display: flex;
    gap: 15px;
    margin-bottom: 12px;
}

.testimonial-mobile-img {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-sm);
    object-fit: cover;
    flex-shrink: 0;
}

.testimonial-mobile-meta {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial-mobile-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-blue-dark);
}

.testimonial-mobile-location {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

.testimonial-mobile-quote {
    font-size: 0.88rem;
    color: var(--text-dark);
    font-style: italic;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 15px;
    flex-grow: 1;
}

.testimonial-mobile-stars {
    color: #fbbf24;
    font-size: 0.8rem;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 25px;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #cbd5e1;
    cursor: pointer;
    transition: background-color var(--transition-fast);
}

.carousel-dot.active {
    background-color: var(--primary-blue);
    width: 18px;
    border-radius: var(--radius-full);
}

/* Desktop Testimonials Grid Layout */
.testimonials-grid-desktop {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.testimonial-card-desktop {
    background-color: #ffffff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid #f1f5f9;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.testimonial-card-desktop:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.testimonial-desktop-img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    object-position: center top;
}

.testimonial-desktop-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.testimonial-desktop-quote {
    font-size: 0.88rem;
    color: var(--text-dark);
    font-style: italic;
    line-height: 1.55;
    margin-bottom: 20px;
    flex-grow: 1;
}

.testimonial-desktop-meta {
    margin-top: auto;
    border-top: 1px solid #f1f5f9;
    padding-top: 12px;
}

.testimonial-desktop-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-blue-dark);
}

.testimonial-desktop-location {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 8px;
}

.testimonial-desktop-stars {
    color: #fbbf24;
    font-size: 0.75rem;
}

/* Partner Brands Section Styles */
.brands-section {
    padding: 40px 0;
    background-color: #ffffff;
    border-bottom: 1px solid #f1f5f9;
}

.brands-title {
    text-align: center;
    font-size: 1.1rem;
    color: var(--primary-blue-dark);
    font-weight: 800;
    margin-bottom: 30px;
}

.brands-flex {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px 40px;
}

@media (min-width: 1024px) {
    .brands-flex {
        gap: 0;
        justify-content: space-between;
    }
}

.brand-logo {
    height: 75px;
    max-width: 170px;
    object-fit: contain;
    transition: transform var(--transition-fast);
}

.brand-logo:hover {
    transform: scale(1.05);
}

@media (min-width: 768px) {
    .brand-logo {
        height: 130px;
        max-width: 250px;
    }
}

/* Bottom CTA & Footer Section Styles */
/* Desktop Bottom CTA */
.bottom-cta-banner {
    background: var(--bg-blue-gradient);
    color: var(--primary-blue-dark);
    padding: 40px 0;
    border-top: 1px solid #e2e8f0;
}

.bottom-cta-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: center;
    text-align: center;
}

@media (min-width: 1024px) {
    .bottom-cta-grid {
        grid-template-columns: 1.2fr 0.8fr;
        text-align: left;
    }
}

.bottom-cta-left {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

@media (min-width: 768px) {
    .bottom-cta-left {
        flex-direction: row;
        align-items: center;
        gap: 25px;
    }
}

.bottom-cta-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(11, 53, 108, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 1.85rem;
    flex-shrink: 0;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .bottom-cta-icon {
        margin: 0;
    }
}

.bottom-cta-text h3 {
    font-size: 1.55rem;
    font-weight: 800;
    line-height: 1.25;
    color: var(--primary-blue-dark);
}

.bottom-cta-text p {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 600;
}

.bottom-cta-right {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .bottom-cta-right {
        flex-direction: row;
        max-width: none;
    }
    .bottom-cta-right .btn {
        flex: 1;
    }
}

/* Mobile Bottom CTA */
.bottom-cta-mobile {
    background: var(--bg-blue-gradient);
    padding: 35px 20px;
    text-align: center;
    border-top: 1px solid #e2e8f0;
}

.bottom-cta-mobile-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background-color: rgba(11, 53, 108, 0.06);
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.55rem;
    margin: 0 auto 15px;
}

.bottom-cta-mobile h3 {
    font-size: 1.35rem;
    color: var(--primary-blue-dark);
    font-weight: 800;
    margin-bottom: 6px;
}

.bottom-cta-mobile p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 25px;
    font-weight: 600;
}

.bottom-cta-mobile-btns {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Footer Trust Bar - Integrated inside footer */
.footer-trust-bar-integrated {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding-bottom: 20px;
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

@media (min-width: 1024px) {
    .footer-trust-bar-integrated {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }
}

.footer-trust-bar-integrated .footer-trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}

.footer-trust-bar-integrated .footer-trust-item i {
    color: var(--accent-orange);
    font-size: 1.15rem;
}

@media (max-width: 768px) {
    .footer-trust-bar-integrated {
        gap: 15px;
        padding-bottom: 15px;
        margin-bottom: 20px;
    }
    .footer-trust-bar-integrated .footer-trust-item {
        font-size: 0.72rem;
        justify-content: center;
        text-align: center;
    }
    .footer-trust-bar-integrated .footer-trust-item i {
        font-size: 0.95rem;
    }
}

/* Mobile Sticky Footer */
.mobile-sticky-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 64px;
    background-color: #ffffff;
    z-index: 999;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    border-top: none;
}

.sticky-footer-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    color: #ffffff;
    text-decoration: none;
    transition: background-color var(--transition-fast), transform var(--transition-fast);
}

.sticky-footer-btn i {
    font-size: 1.25rem;
    line-height: 1;
}

.sticky-footer-btn span {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1;
}


.sticky-footer-btn.whatsapp {
    background-color: var(--accent-green);
}

.sticky-footer-btn.whatsapp:hover,
.sticky-footer-btn.whatsapp:active {
    background-color: var(--accent-green-hover);
}

.sticky-footer-btn.call {
    background-color: var(--primary-blue);
}

.sticky-footer-btn.call:hover,
.sticky-footer-btn.call:active {
    background-color: var(--primary-blue-dark);
}

.sticky-footer-btn.appointment {
    background-color: #ff7800; /* Custom orange strictly for the mobile sticky footer Enquiry button */
}

.sticky-footer-btn.appointment:hover,
.sticky-footer-btn.appointment:active {
    background-color: #e66d00;
}

/* Success Modal Styles */
.success-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0,0,0,0.5);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-fast), visibility var(--transition-fast);
}

.success-modal.active {
    opacity: 1;
    visibility: visible;
}

.success-modal-card {
    background-color: #ffffff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    width: 90%;
    max-width: 450px;
    padding: 35px 25px;
    text-align: center;
    transform: scale(0.9);
    transition: transform var(--transition-normal);
}

.success-modal.active .success-modal-card {
    transform: scale(1);
}

.success-icon-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: #ecfdf5;
    border: 2px solid #a7f3d0;
    color: #10b981;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.85rem;
    margin: 0 auto 20px;
}

.success-modal-card h3 {
    font-size: 1.45rem;
    color: var(--primary-blue-dark);
    margin-bottom: 12px;
    font-weight: 800;
}

.success-modal-card p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 25px;
}

.success-modal-card .btn-modal-close {
    width: 100%;
}

/* ==================== PRODUCT SHOWCASE SECTION ==================== */
.products-section {
    padding: 40px 0;
    background-color: var(--bg-light);
    border-bottom: 1px solid #f1f5f9;
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
}

@media (min-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 860px;
        margin-left: auto;
        margin-right: auto;
    }
}

.product-card {
    background-color: #ffffff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid #e2e8f0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

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

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--primary-blue);
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
}

.product-badge.invisible-badge {
    background-color: var(--accent-orange);
}


.product-img-wrapper {
    height: 220px;
    padding: 30px;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #f1f5f9;
}

.product-img {
    height: 100%;
    max-width: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
    transition: transform var(--transition-normal);
}

.product-card:hover .product-img {
    transform: scale(1.06);
}

.product-details {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-type {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.product-title {
    font-size: 1.35rem;
    color: var(--primary-blue-dark);
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.2;
}

.product-desc {
    font-size: 0.88rem;
    color: var(--text-dark);
    line-height: 1.55;
    margin-bottom: 25px;
    flex-grow: 1;
}

.product-cta-wrapper {
    margin-top: auto;
}

.product-cta-wrapper .btn {
    width: 100%;
}

/* ==================== FOOTER SECTION ==================== */
.footer {
    background-color: var(--primary-blue-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 40px 0 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-green) 100%);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 1.5rem;
    align-items: center;
}

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
}

.footer-logo-badge {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 6px 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}

.footer-logo-img {
    height: 30px;
    width: auto;
    object-fit: contain;
    display: block;
}

.footer-partner-text {
    font-size: 0.92rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.3;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-title {
    color: #ffffff;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    padding: 0;
}

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

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

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.footer-contact-horizontal {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
}

.contact-icon-inline {
    color: var(--accent-orange);
    font-size: 1.1rem;
    margin-right: 6px;
    display: inline-flex;
    align-items: center;
}

.footer-phone-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: var(--transition-fast);
    font-weight: 600;
}

.footer-phone-link:hover {
    color: var(--accent-orange) !important;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.contact-item-icon {
    color: var(--accent-orange);
    flex-shrink: 0;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.contact-item-text {
    display: flex;
    flex-direction: column;
}

.contact-item-text a {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: var(--transition-fast);
    font-weight: 600;
}

.contact-item-text a:hover {
    color: var(--accent-orange);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        display: flex;
        flex-direction: column;
        gap: 20px !important;
        margin-bottom: 1.5rem !important;
        align-items: center;
        text-align: center;
    }
    
    .footer-brand {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 10px !important;
        width: 100% !important;
        text-align: left !important;
    }
    
    .footer-logo-badge {
        padding: 4px 10px !important;
        border-radius: 6px !important;
        margin: 0 !important;
        box-shadow: var(--shadow-sm) !important;
    }
    
    .footer-logo-img {
        height: 20px !important;
    }
    
    .footer-partner-text {
        font-size: 0.76rem !important;
        color: rgba(255, 255, 255, 0.95) !important;
        text-align: left !important;
        line-height: 1.25 !important;
        max-width: 180px !important;
        white-space: normal !important;
    }
    
    .footer-title {
        text-align: center;
        margin-bottom: 0.65rem !important;
        padding-bottom: 0.25rem !important;
        font-size: 0.98rem !important; /* Perfectly scaled title */
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-contact-horizontal {
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        font-size: 0.82rem !important;
    }

    .footer-phone-link {
        font-size: 0.82rem !important;
    }

    .footer {
        padding: 30px 0 85px 0 !important; /* Added 85px bottom padding so copyright is fully visible above sticky CTA footer */
    }
    
    .footer-bottom {
        padding-top: 1rem !important;
        width: 100%;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }
    
    .footer-bottom p {
        font-size: 0.75rem !important;
        line-height: 1.4 !important;
    }

    /* Mobile Popular Searches Tags Sizing & Alignment */
    .popular-tag-btn {
        font-size: 0.72rem !important;
        padding: 5px 12px !important;
    }
    
    .popular-tags-grid {
        gap: 8px 8px !important;
        justify-content: center !important;
    }
    
    /* Mobile Partner Brand Logos Sizing & Alignment */
    .brands-flex {
        gap: 15px 20px !important;
        justify-content: center !important;
    }
    
    .brand-logo {
        height: 38px !important;
        max-width: 75px !important;
    }
    
    /* Mobile Reviews Clean-up (Hiding avatars and see-more) */
    .see-more-link {
        display: none !important;
    }
    
    .testimonial-mobile-img {
        display: none !important;
    }

    /* Mobile Header Layout (Logo left, Enquiry right) */
    .header-mobile-right {
        display: none !important;
    }
    
    .main-header .container {
        justify-content: flex-start !important;
        padding-left: 5px !important;
        padding-right: 15px !important;
    }

    .mobile-header-cta {
        display: none !important;
    }

    /* Mobile Why Choose Us Grid (3 icons per row) */
    .why-choose-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 15px 8px !important;
    }
    
    .why-choose-icon-circle {
        width: 48px !important;
        height: 48px !important;
        font-size: 1.1rem !important;
        margin-bottom: 8px !important;
    }
    
    .why-choose-card h3 {
        font-size: 0.68rem !important;
        line-height: 1.25 !important;
    }

    /* Mobile Social Proof Ratings (Aligned horizontally side-by-side) */
    .social-proof-grid {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 8px !important;
        align-items: start !important;
    }
    
    .social-proof-item {
        flex-direction: column !important;
        text-align: center !important;
        padding: 0 !important;
        border-right: none !important;
    }
    
    .social-proof-logo {
        height: 16px !important;
    }
    
    .social-proof-rating {
        align-items: center !important;
    }
    
    .rating-number {
        font-size: 0.9rem !important;
    }
    
    .rating-lbl {
        font-size: 0.6rem !important;
    }
    
    .social-proof-stars, .trustpilot-stars {
        font-size: 0.62rem !important;
    }
    
    .trustpilot-star-square {
        width: 10px !important;
        height: 10px !important;
        font-size: 0.35rem !important;
    }
    
    .happy-customers-icon {
        width: 28px !important;
        height: 28px !important;
        font-size: 0.85rem !important;
    }
    
    .happy-customers-txt {
        font-size: 0.6rem !important;
        text-align: center !important;
    }
    
    .happy-customers-txt strong {
        font-size: 0.9rem !important;
    }
    
    .social-proof-item div[style*="font-weight"] {
        font-size: 0.8rem !important;
        gap: 2px !important;
        justify-content: center !important;
    }
    .social-proof-item div[style*="font-weight"] i {
        font-size: 0.9rem !important;
    }

    /* Mobile Compact Form Container & Input Overrides */
    .hero-form-card,
    .matched-form-card {
        padding: 20px !important;
    }
    
    .matched-form-card .drawer-header {
        margin-bottom: 12px !important;
        padding-bottom: 8px !important;
    }
    
    .form-subtitle {
        margin-bottom: 15px !important;
    }
    
    .form-group {
        margin-bottom: 10px !important;
    }
    
    .form-label {
        margin-bottom: 4px !important;
        font-size: 0.82rem !important;
    }
    
    .hero-form-card .form-input,
    .matched-form-card .form-input,
    .hero-form-card .form-select,
    .matched-form-card .form-select {
        padding: 10px 14px !important;
        font-size: 0.88rem !important;
        border-radius: 8px !important;
    }
    
    .hero-form-card .input-icon-wrapper .form-input,
    .matched-form-card .input-icon-wrapper .form-input,
    .hero-form-card .input-icon-wrapper .form-select,
    .matched-form-card .input-icon-wrapper .form-select {
        padding-left: 45px !important;
    }
    
    .hero-form-card .form-select,
    .matched-form-card .form-select {
        background-position: right 14px center !important;
        background-size: 14px !important;
    }
    
    .form-checkbox-label {
        margin: 10px 0 15px 0 !important;
        font-size: 0.78rem !important;
    }
    
    .hero-form-card .btn-submit,
    .matched-form-card .btn-submit {
        padding: 11px 18px !important;
        font-size: 0.95rem !important;
    }
}

/* Floating Contact Buttons */
.floating-contact-buttons {
    position: fixed;
    bottom: 25px;
    right: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
    transition: bottom 0.3s ease;
}

@media (max-width: 1023px) {
    .floating-contact-buttons {
        display: none !important; /* Hide floating circles on mobile viewports to prevent footer cta overlap */
    }
}

.floating-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.6rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    transition: transform var(--transition-fast), background-color var(--transition-fast);
    position: relative;
}

.floating-btn.whatsapp {
    background-color: var(--accent-green);
}

.floating-btn.whatsapp:hover {
    background-color: var(--accent-green-hover);
    transform: scale(1.08);
}

.floating-btn.appointment {
    background-color: var(--accent-orange);
}

.floating-btn.appointment:hover {
    background-color: var(--accent-orange-hover);
    transform: scale(1.08);
}

/* Tooltips */
.floating-tooltip {
    position: absolute;
    right: 70px;
    background-color: var(--primary-blue-dark);
    color: #ffffff;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-fast), visibility var(--transition-fast);
    box-shadow: var(--shadow-sm);
}

.floating-tooltip::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -4px;
    transform: translateY(-50%) rotate(45deg);
    width: 8px;
    height: 8px;
    background-color: var(--primary-blue-dark);
}

.floating-btn:hover .floating-tooltip {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 768px) {
    .floating-tooltip {
        display: none !important; /* Hide tooltips on mobile screens */
    }
    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }
}

/* Popular Searches Section styling */
.popular-searches-section {
    background: var(--bg-blue-gradient);
    padding: 40px 0;
    border-top: 1px solid #e2e8f0;
    text-align: center;
}

.popular-searches-header {
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.popular-searches-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background-color: rgba(11, 53, 108, 0.06);
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.55rem;
    margin-bottom: 12px;
}

.popular-searches-header h2 {
    color: var(--primary-blue-dark);
    font-size: 1.85rem;
    font-weight: 800;
    margin-bottom: 6px;
}

.popular-searches-header p {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 600;
}

.popular-tags-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 16px;
    max-width: 960px;
    margin: 0 auto;
    padding: 0 10px;
}

.popular-tag-btn {
    display: inline-block;
    background-color: #ffffff;
    border: 1px solid rgba(11, 53, 108, 0.1);
    color: var(--primary-blue-dark);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-fast);
}

.popular-tag-btn:hover {
    background-color: var(--accent-orange);
    color: #ffffff;
    border-color: var(--accent-orange);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 120, 0, 0.2);
}

@media (max-width: 768px) {
    .popular-searches-section {
        padding: 30px 0;
    }
    .popular-searches-header h2 {
        font-size: 1.45rem;
    }
    .popular-searches-header p {
        font-size: 0.85rem;
    }
    .popular-tag-btn {
        font-size: 0.82rem;
        padding: 6px 14px;
    }
}

/* ==========================================================================
   VISUAL REDESIGN STYLES - PERFECT MOCKUP ALIGNMENT
   ========================================================================== */

/* Header Trust Pill Badge Strip */
.header-trust-pill {
    display: flex;
    align-items: center;
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 50px;
    padding: 8px 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.07);
    gap: 0;
}
.header-trust-pill-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 4px 18px;
}
.htpi-divider {
    width: 1px;
    height: 36px;
    background-color: #cbd5e1;
    flex-shrink: 0;
}
.htpi-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.htpi-icon-blue {
    background-color: rgba(26, 86, 219, 0.1);
}
.htpi-icon-green {
    background-color: rgba(22, 163, 74, 0.1);
}
.htpi-text {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
}
.htpi-lbl {
    font-size: 0.8rem;
    font-weight: 600;
    color: #1e293b;
    white-space: nowrap;
}
.htpi-val {
    font-size: 0.78rem;
    font-weight: 500;
    color: #64748b;
    white-space: nowrap;
}
.htpi-cta {
    margin-left: 10px;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Lady Doctor Expert Card */
.doctor-expert-card {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #ffffff;
    border: 1px solid rgba(11, 53, 108, 0.08);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}
.doctor-expert-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(11, 53, 108, 0.15);
}
.doctor-expert-img-wrapper {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(16, 185, 129, 0.15);
    flex-shrink: 0;
}
.doctor-expert-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.doctor-expert-info {
    flex-grow: 1;
}
.doctor-expert-info h4 {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--primary-blue-dark);
    margin-bottom: 4px;
}
.doctor-expert-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.doctor-expert-bullets li {
    font-size: 0.76rem;
    font-weight: 600;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}
.doctor-expert-bullets li i {
    color: var(--accent-green);
    font-size: 0.85rem;
}

/* WhatsApp Opt-in Strip */
.form-whatsapp-optin-strip {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: rgba(37, 211, 102, 0.06);
    border: 1px solid rgba(37, 211, 102, 0.15);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    margin-bottom: 15px;
}
.whatsapp-badge-icon {
    width: 28px;
    height: 28px;
    background-color: #25D366;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    flex-shrink: 0;
}
.form-whatsapp-optin-strip .form-checkbox-label {
    margin: 0;
    cursor: pointer;
}
.form-whatsapp-optin-strip .form-checkbox-label span {
    font-size: 0.78rem;
    font-weight: 700;
    color: #166534;
    line-height: 1.3;
}

/* Trusted Ratings Card directly under Form */
.trusted-ratings-card {
    background: #ffffff;
    border: 1px solid rgba(11, 53, 108, 0.08);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    box-shadow: var(--shadow-md);
}
.trusted-title {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--primary-blue-dark);
    text-align: center;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.trusted-metrics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1.1fr;
    gap: 12px;
    align-items: center;
}
.trusted-metric-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-right: 1px solid #f1f5f9;
    padding-right: 8px;
}
.trusted-metric-item:last-child {
    border-right: none;
    padding-right: 0;
}
.trusted-logo {
    height: 16px;
    object-fit: contain;
    margin-bottom: 4px;
}
.trustpilot-lbl {
    font-weight: 800;
    font-size: 0.8rem;
    color: var(--text-dark);
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 3px;
}
.trusted-stars {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 3px;
}
.trusted-stars .rating-val {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--text-dark);
}
.trusted-stars .stars {
    color: #ffb800;
    font-size: 0.65rem;
    display: flex;
    gap: 1px;
}
.trustpilot-star-boxes {
    display: flex;
    gap: 1px;
}
.trustpilot-star-boxes .star-box {
    width: 11px;
    height: 11px;
    background-color: #00b67a;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.5rem;
    border-radius: 1px;
}
.trustpilot-star-boxes .star-box.inactive {
    background-color: #dcdcdc;
    color: #a1a1a1;
}
.trusted-metric-item .lbl {
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--text-muted);
}
.trusted-metric-item.flex-row-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    text-align: left;
    padding-left: 6px;
}
.happy-icon-box {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: rgba(11, 53, 108, 0.06);
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
}
.happy-txt {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}
.happy-txt strong {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--text-dark);
}
.happy-txt span {
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--text-muted);
}

/* Features Row Section */
.features-row-section {
    background-color: #ffffff;
    padding: 50px 0;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
}
.section-title-wrapper-centered {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}
.section-title-centered {
    font-size: 2.1rem;
    font-weight: 800;
    color: var(--primary-blue-dark);
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
}
.section-title-centered::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: var(--accent-green);
    border-radius: 2px;
}
.features-row-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.features-row-card {
    background-color: #ffffff;
    border: 1px solid rgba(11, 53, 108, 0.08);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
    height: 100%;
}
.features-row-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(11, 53, 108, 0.15);
}
.card-image-wrapper {
    width: 100%;
    height: 145px;
    overflow: hidden;
    position: relative;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 10px 0 10px;
    border-bottom: 1px solid rgba(11, 53, 108, 0.04);
}

.feature-card-img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain; /* Perfect contain fitment prevents any image cropping! */
    border-radius: var(--radius-sm);
    transition: transform var(--transition-normal);
}

.features-row-card:hover .feature-card-img {
    transform: scale(1.06);
}

.card-content {
    padding: 14px 10px 18px 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: #ffffff;
    flex-grow: 1;
    justify-content: center;
}

.card-content h3 {
    font-size: 0.92rem;
    font-weight: 800;
    color: var(--primary-blue-dark);
    margin-bottom: 1px;
    line-height: 1.25;
}

.card-content p {
    font-size: 0.76rem;
    font-weight: 600;
    color: var(--text-muted);
    line-height: 1.25;
}

/* Split Columns Section */
.split-columns-section {
    background-color: #ffffff;
    padding: 40px 0;
}
.split-columns-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}
.column-title {
    font-size: 1.85rem;
    font-weight: 800;
    color: var(--primary-blue-dark);
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
}
.column-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 45px;
    height: 3px;
    background-color: var(--accent-green);
    border-radius: 1.5px;
}
.split-list-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.split-list-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #ffffff;
    border: 1px solid rgba(11, 53, 108, 0.06);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    box-shadow: var(--shadow-sm);
    min-height: 125px;
    transition: all var(--transition-normal);
    text-decoration: none;
    color: inherit;
}
.split-list-item:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(11, 53, 108, 0.12);
}
.split-item-icon-wrapper {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    border: 2px solid rgba(11, 53, 108, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    color: var(--primary-blue);
    font-size: 1.35rem;
    flex-shrink: 0;
    transition: all var(--transition-fast);
}
.split-list-item:hover .split-item-icon-wrapper {
    border-color: var(--accent-green);
    color: var(--accent-green);
    background-color: rgba(16, 185, 129, 0.05);
    transform: scale(1.05);
}

/* Why Choose Us Redesign Styles */
.why-choose-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 30px;
    max-width: 1100px;
    margin: 0 auto;
}
.why-choose-item {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 20px;
    background-color: #ffffff;
    border: 1px solid rgba(11, 53, 108, 0.06);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}
.why-choose-icon-wrapper {
    position: relative;
    overflow: hidden;
    width: 68px;
    height: 68px;
    border-radius: 50%;
    border: 2px solid rgba(11, 53, 108, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    flex-shrink: 0;
    transition: all var(--transition-fast);
}
.why-choose-icon-img {
    position: absolute;
    width: 250%;
    height: 250%;
    max-width: none;
    object-fit: contain;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.why-choose-image-wrapper {
    width: 90px;
    height: 90px;
    border-radius: var(--radius-md);
    overflow: hidden;
    flex-shrink: 0;
}
.why-choose-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}
.why-choose-text {
    flex-grow: 1;
}
.why-choose-text h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--primary-blue-dark);
    margin-bottom: 6px;
}
.why-choose-text p {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-muted);
    line-height: 1.45;
}

/* Hover interactions */
.why-choose-item:hover .why-choose-icon-wrapper {
    transform: scale(1.05);
}
.why-choose-item:hover .why-choose-photo {
    transform: scale(1.06);
}

.split-product-photo-wrapper {
    width: 75px;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: none;
    border: none;
    padding: 0;
}
.split-product-photo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
}
.split-item-text {
    flex-grow: 1;
}
.split-item-text h3 {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--primary-blue-dark);
    margin-bottom: 4px;
}
.split-item-text p {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Serving Chennai Map Section */
.serving-chennai-section {
    background-color: #ffffff;
    padding: 60px 0;
    border-bottom: 1px solid #f1f5f9;
}
.serving-title {
    margin-bottom: 40px;
}
.serving-chennai-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}
.chennai-map-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: visible;
    background: none;
    border: none;
    box-shadow: none;
    padding: 0;
}
.chennai-map-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    overflow: visible;
}
.chennai-map-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-md);
    mix-blend-mode: multiply;
}
.map-marker-pin {
    position: absolute;
    transform: translate(-50%, -100%);
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    text-decoration: none;
}
.marker-icon-wrapper {
    position: relative;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue-dark);
    font-size: 1.65rem;
    filter: drop-shadow(0 2px 4px rgba(11, 53, 108, 0.2));
    transition: all 0.3s ease;
}
.marker-pulse-glow {
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translate(-50%, 50%);
    width: 14px;
    height: 6px;
    background: rgba(11, 53, 108, 0.15);
    border-radius: 50%;
    z-index: -1;
    transition: all 0.3s ease;
}
.marker-pulse-glow::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px solid rgba(11, 53, 108, 0.35);
    animation: pinPulse 2s infinite ease-out;
}
@keyframes pinPulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(3.5);
        opacity: 0;
    }
}
.marker-label {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 800;
    color: var(--primary-blue-dark);
    white-space: nowrap;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    pointer-events: auto;
    text-shadow: 0 0 5px #ffffff, 0 0 5px #ffffff, 0 0 10px #ffffff;
}
.marker-label.label-left {
    right: calc(100% + 8px);
}
.marker-label.label-right {
    left: calc(100% + 8px);
}

/* Hover popup effects */
.map-marker-pin:hover {
    z-index: 30;
}
.map-marker-pin:hover .marker-icon-wrapper {
    transform: scale(1.25) translateY(-5px);
    color: var(--accent-green);
    filter: drop-shadow(0 6px 12px rgba(16, 185, 129, 0.35));
}
.map-marker-pin:hover .marker-pulse-glow {
    background: rgba(16, 185, 129, 0.25);
}
.map-marker-pin:hover .marker-pulse-glow::after {
    border-color: rgba(16, 185, 129, 0.5);
}
.map-marker-pin:hover .marker-label {
    transform: translateY(-50%) scale(1.12) translateY(-2px);
    color: var(--accent-green);
    text-shadow: 0 0 8px rgba(16, 185, 129, 0.2), 0 0 5px #ffffff, 0 0 5px #ffffff;
}

@media (max-width: 576px) {
    .marker-label {
        font-size: 0.72rem;
    }
    .marker-label.label-left {
        right: calc(100% + 4px);
    }
    .marker-label.label-right {
        left: calc(100% + 4px);
    }
    .marker-icon-wrapper {
        width: 24px;
        height: 24px;
        font-size: 1.35rem;
    }
}

/* Serving Benefits 2x2 Grid Styling */
.serving-benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px 24px;
    text-align: center;
}
.serving-benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.benefit-icon-circle {
    position: relative;
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background-color: #f4f8fd;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.serving-benefit-item:hover .benefit-icon-circle {
    transform: scale(1.08) translateY(-4px);
    background-color: #e8f2fc;
    box-shadow: 0 8px 24px rgba(11, 53, 108, 0.08);
}
.benefit-icon-circle .main-icon {
    width: 42px;
    height: 42px;
    color: #0b356c;
    transition: all 0.3s ease;
}
.benefit-icon-circle .sub-icon {
    position: absolute;
    color: #10b981;
    transition: all 0.3s ease;
}
.serving-benefit-item:nth-child(1) .sub-icon {
    width: 18px;
    height: 18px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.serving-benefit-item:nth-child(2) .sub-icon {
    width: 16px;
    height: 16px;
    bottom: 23px;
    right: 23px;
}
.serving-benefit-item:nth-child(3) .sub-icon {
    width: 14px;
    height: 14px;
    bottom: 27px;
    left: 50%;
    transform: translateX(-50%);
}
.benefit-icon-circle .sub-number {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -46%);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.95rem;
    color: #0b356c;
    transition: all 0.3s ease;
}
.serving-benefit-item:hover .main-icon {
    color: #0052cc;
}
.serving-benefit-item:hover .sub-icon {
    color: #059669;
}
.serving-benefit-item:hover:nth-child(1) .sub-icon {
    transform: translate(-50%, -50%) scale(1.18);
}
.serving-benefit-item:hover:nth-child(2) .sub-icon {
    transform: scale(1.18);
}
.serving-benefit-item:hover:nth-child(3) .sub-icon {
    transform: translateX(-50%) scale(1.18);
}
.serving-benefit-item:hover .sub-number {
    color: #0052cc;
    transform: translate(-50%, -46%) scale(1.15);
}
.serving-benefit-item h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--primary-blue-dark);
    margin-bottom: 6px;
    transition: color 0.3s ease;
}
.serving-benefit-item:hover h3 {
    color: var(--primary-blue);
}
.serving-benefit-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.45;
    max-width: 220px;
    margin: 0 auto;
}
@media (max-width: 1024px) {
    .serving-benefits-grid {
        gap: 30px 15px;
    }
}
@media (max-width: 576px) {
    .serving-benefits-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px 10px !important;
    }
    .serving-benefit-item {
        padding: 0 4px;
    }
    .benefit-icon-circle {
        width: 60px !important;
        height: 60px !important;
        margin-bottom: 10px !important;
    }
    .benefit-icon-circle .main-icon {
        width: 28px !important;
        height: 28px !important;
    }
    .benefit-icon-circle .sub-icon {
        width: 12px !important;
        height: 12px !important;
    }
    .serving-benefit-item:nth-child(2) .sub-icon {
        bottom: 16px !important;
        right: 16px !important;
    }
    .serving-benefit-item:nth-child(3) .sub-icon {
        bottom: 18px !important;
    }
    .benefit-icon-circle .sub-number {
        font-size: 0.72rem !important;
    }
    .serving-benefit-item h3 {
        font-size: 0.8rem !important;
        line-height: 1.25 !important;
        margin-bottom: 4px !important;
    }
    .serving-benefit-item p {
        font-size: 0.65rem !important;
        line-height: 1.3 !important;
        max-width: none !important;
    }
}

/* Bottom Footer Strip */
.bottom-footer-strip {
    background: linear-gradient(90deg, var(--primary-blue-dark) 0%, var(--primary-blue) 100%);
    color: #ffffff;
    padding: 16px 0;
    border-bottom: 4px solid var(--accent-green);
}
.footer-strip-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.strip-left {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
}
.strip-left i {
    color: var(--accent-green);
    font-size: 1.1rem;
}
.strip-right {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.95);
}

/* Redesign Responsiveness Queries */
@media (max-width: 1024px) {
    .features-row-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .split-columns-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .serving-chennai-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .header-trust-pill {
        padding: 6px 14px;
    }
    .header-trust-pill-item {
        padding: 4px 12px;
        gap: 8px;
    }
    .htpi-icon {
        width: 34px;
        height: 34px;
    }
    .htpi-lbl {
        font-size: 0.73rem;
    }
    .htpi-val {
        font-size: 0.7rem;
    }
    .testimonials-grid-desktop {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 16px !important;
    }
}

@media (max-width: 768px) {
    .features-row-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .card-image-wrapper {
        height: 110px; /* Perfectly scaled image height for mobile viewports */
        padding: 8px 8px 0 8px;
    }
    .card-content {
        padding: 10px 8px 14px 8px;
    }
    .card-content h3 {
        font-size: 0.8rem;
    }
    .card-content p {
        font-size: 0.68rem;
    }
    .section-title-centered {
        font-size: 1.55rem;
    }
    .column-title {
        font-size: 1.45rem;
        margin-bottom: 20px !important;
        text-align: center;
    }
    .split-list-items {
        display: grid;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }
    .split-list-item {
        flex-direction: column !important;
        text-align: center !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 10px !important;
        padding: 16px 8px !important;
        min-height: 155px !important;
    }
    .split-item-icon-wrapper {
        width: 44px !important;
        height: 44px !important;
        font-size: 1.1rem !important;
    }
    .split-product-photo-wrapper {
        width: 60px !important;
        height: 60px !important;
    }
    .split-item-text h3 {
        font-size: 0.8rem !important;
        margin-bottom: 3px !important;
        line-height: 1.25 !important;
    }
    .split-item-text p {
        font-size: 0.65rem !important;
        line-height: 1.3 !important;
    }
    .chennai-map-wrapper {
        padding: 0;
    }
    .footer-strip-flex {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    .doctor-expert-card {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 15px;
    }
    .doctor-expert-bullets {
        align-items: center;
    }
    .trusted-metrics-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .trusted-metric-item {
        border-right: none;
        border-bottom: 1px solid #f1f5f9;
        padding-right: 0;
        padding-bottom: 12px;
    }
    .trusted-metric-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    /* Why Choose Us Redesign Mobile Overrides */
    .why-choose-list {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .why-choose-item {
        gap: 16px;
        padding: 16px;
        border-bottom: none;
    }
    .why-choose-icon-wrapper {
        width: 52px;
        height: 52px;
        border-width: 1.5px;
    }

    .why-choose-image-wrapper {
        width: 70px;
        height: 70px;
        border-radius: var(--radius-sm);
    }
    .why-choose-text h3 {
        font-size: 0.95rem;
        margin-bottom: 4px;
        line-height: 1.25;
    }
    .why-choose-text p {
        font-size: 0.78rem;
        line-height: 1.35;
    }

    /* Spacing & Padding Reductions for Compact Mobile View */
    .split-columns-section {
        padding: 24px 0 !important;
    }
    .serving-chennai-section {
        padding: 24px 0 !important;
    }
    .features-row-section {
        padding: 24px 0 !important;
    }
    .brands-section {
        padding: 20px 0 !important;
    }
    .popular-searches-section {
        padding: 20px 0 !important;
    }
    .mobile-lead-section {
        padding: 20px 0 24px 0 !important;
    }
    .section-title-wrapper-centered {
        margin-bottom: 20px !important;
    }
    .serving-title {
        margin-bottom: 20px !important;
    }
    .testimonials-grid-desktop {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }
    .testimonials-section {
        padding: 24px 0 !important;
    }
}

@media (max-width: 480px) {
    .features-row-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 8px !important;
    }
    .card-image-wrapper {
        height: 90px !important;
        padding: 6px 6px 0 6px !important;
    }
    .card-content {
        padding: 8px 4px 10px 4px !important;
        gap: 2px !important;
    }
    .card-content h3 {
        font-size: 0.72rem !important;
    }
    .card-content p {
        font-size: 0.62rem !important;
    }

}

@media (min-width: 1025px) {
    .hero-grid-desktop {
        align-items: start; /* Align grid columns tightly to the top fold */
    }
    .hero-content-desktop {
        display: flex;
        flex-direction: column;
        height: auto;
        min-height: max-content;
        gap: 0; /* Remove massive flex gap to bring elements closer */
    }
    .hero-content-desktop .doctor-expert-card {
        margin-top: 15px;
    }
    .hero-form-wrapper {
        display: flex;
        flex-direction: column;
        height: auto;
        min-height: max-content;
        gap: 15px; /* Compact spacing for right column */
    }
    .hero-form-wrapper .trusted-ratings-card {
        margin-top: 0;
    }
}

/* ==================== CENTERED HERO BADGES & DIVIDER ==================== */
.hero-curved-line {
    width: 270px;
    height: 10px;
    margin: 6px auto 14px auto;
    display: block;
}

.hero-curved-line svg {
    width: 100%;
    height: 100%;
    display: block;
}

.hero-circular-badges {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: calc(100% + 20px); /* Expanded to break out of the container's side padding */
    max-width: none;
    margin: 25px -10px 10px -10px; /* Negative margins to push the outer icons close to the screen edges */
    padding: 0; /* Overrides default side padding */
    gap: 6px; /* Spacing gap between items */
}

.hero-circular-badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    min-width: 0; /* Allows dynamic sizing */
}

.hero-circle-icon-box {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background-color: #ffffff;
    border: none; /* No border as shown in the reference image */
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-blue); /* Vibrant blue icon color */
    font-size: 1.25rem;
    box-shadow: 0 4px 12px rgba(11, 53, 108, 0.08); /* Soft shadow to define the white circles */
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.hero-circle-label {
    font-size: 0.65rem; /* Increased slightly for better legibility now that horizontal space is utilized */
    font-weight: 700;
    color: var(--primary-blue-dark);
    line-height: 1.25;
    margin-top: 8px;
    display: block;
    word-wrap: break-word;
    word-break: break-word;
}

/* Hover effect on badges (transform and shadow feedback only, colors remain static) */
.hero-circular-badge-item:hover .hero-circle-icon-box {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(11, 53, 108, 0.12);
}

/* Desktop layout centering and sizing modifications */
.hero-centered-header-desktop {
    text-align: left;
    max-width: 800px;
    margin: 0 0 30px 0;
    position: relative;
    z-index: 10;
}

.hero-centered-header-desktop .hero-title {
    font-size: 3.2rem;
    margin-bottom: 12px;
}

.hero-centered-header-desktop .hero-desc {
    font-size: 1.25rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 20px;
}

@media (min-width: 1024px) {
    .hero-curved-line {
        width: 340px;
        height: 12px;
        margin: 6px 0 14px 0; /* Tightened margins */
    }
    
    .hero-circular-badges {
        justify-content: flex-start;
        gap: 30px;
        max-width: none;
        margin: 12px 0 12px 0; /* Tightened badge margins */
    }
    
    .hero-circular-badge-item {
        flex: none;
        width: 110px;
        max-width: none;
    }
    
    .hero-circle-icon-box {
        width: 76px;
        height: 76px;
        font-size: 1.65rem;
        border-width: 2px;
        box-shadow: 0 6px 16px rgba(11, 53, 108, 0.07);
    }
    
    .hero-circle-label {
        font-size: 0.88rem;
        margin-top: 8px; /* Tightened text offset */
        line-height: 1.3;
        text-align: center;
    }
    
    /* Ensure left column elements align nicely to the left inside the grid column */
    .hero-content-desktop {
        align-items: flex-start;
        justify-content: flex-start;
    }
    .hero-content-desktop .hero-platform-wrapper {
        justify-content: flex-start;
        width: 100%;
        margin-top: -30px; /* Pulls showcase image upward to seamlessly close the white gap */
    }
    .hero-bottom-row-desktop .doctor-expert-card {
        width: 100%;
        padding: 20px 24px;
        gap: 20px;
        border-radius: var(--radius-md);
    }
    .hero-bottom-row-desktop .doctor-expert-img-wrapper {
        width: 72px;
        height: 72px;
        border-width: 3px;
    }
    .hero-bottom-row-desktop .doctor-expert-info h4 {
        font-size: 1.15rem;
        margin-bottom: 6px;
    }
    .hero-bottom-row-desktop .doctor-expert-bullets {
        gap: 6px;
    }
    .hero-bottom-row-desktop .doctor-expert-bullets li {
        font-size: 0.9rem;
        gap: 8px;
    }
    .hero-bottom-row-desktop .trusted-ratings-card {
        width: 100%;
        padding: 20px 24px;
        border-radius: var(--radius-md);
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .hero-bottom-row-desktop .trusted-title {
        font-size: 0.95rem;
        margin-bottom: 12px;
    }
    .hero-bottom-row-desktop .trusted-metrics-grid {
        gap: 16px;
    }
    .hero-bottom-row-desktop .trusted-logo {
        height: 22px;
        margin-bottom: 6px;
    }
    .hero-bottom-row-desktop .trustpilot-lbl {
        font-size: 0.95rem;
        margin-bottom: 6px;
    }
    .hero-bottom-row-desktop .trusted-stars .rating-val {
        font-size: 1.05rem;
    }
    .hero-bottom-row-desktop .trusted-stars .stars {
        font-size: 0.85rem;
        gap: 2px;
    }
    .hero-bottom-row-desktop .trustpilot-star-boxes .star-box {
        width: 15px;
        height: 15px;
        font-size: 0.65rem;
    }
    .hero-bottom-row-desktop .trusted-metric-item .lbl {
        font-size: 0.8rem;
    }
    .hero-bottom-row-desktop .happy-icon-box {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
    }
    .hero-bottom-row-desktop .happy-txt strong {
        font-size: 1.05rem;
    }
    .hero-bottom-row-desktop .happy-txt span {
        font-size: 0.8rem;
    }
}
