/* ==========================================================================
   1. BRAND THEME TOKENS & DESIGN VARIABLES
   ========================================================================== */
:root {
    /* Color Palette Tokens */
    --primary: #008080;          /* Teal green */
    --primary-hover: #d45900;
    --secondary: #1e2843;        /* Premium Navy Slate Blue */
    --accent: #2e7d32;           /* Trust Green */
    --whatsapp-green: #25D366;   /* Official WhatsApp Brand Hex */
    --whatsapp-hover: #20ba5a;
    --bg-light: #f8f9fa;         /* Soft light background body tint */
    --bg-white: #ffffff;
    
    /* Dynamic Inline Badge Tiers Colors */
    --badge-verified: #2e7d32;
    --badge-sponsored: #6b21a8;
    --badge-top-rated: #1d4ed8;
    --badge-popular: #b45309;

    /* Typography & Text */
    --text-main: #333333;
    --text-muted: #666666;
    --font-stack: Arial, sans-serif;

    /* Spacing & Decorative Accents */
    --border-color: #e9ecef;
    --radius-lg: 12px;
    --radius-md: 8px;
    --shadow-sm: 0 4px 10px rgba(0,0,0,0.03);
    --shadow-md: 0 10px 30px rgba(0,0,0,0.08);
    --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   2. GLOBAL ACCENTS & CSS RESETS
   ========================================================================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-stack);
    background-color: var(--bg-light);
    color: var(--text-main);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Skip link styling for keyboard accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary);
    color: white;
    padding: 8px;
    z-index: 2000;
    transition: top 0.2s;
}

.skip-link:focus {
    top: 0;
}

/* Focus indicator states for keyboard navigation accessibility */
button:focus-visible, a:focus-visible {
    outline: 3px dashed var(--primary);
    outline-offset: 4px;
}

/* ==========================================================================
   3. SITE HEADER SYSTEM (RESPONSIVE NAVBAR LAYER)
   ========================================================================== */
.site-header {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-links a {
    font-weight: 600;
    font-size: 15px;
    color: var(--text-main);
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-cta {
    background: var(--primary);
    color: var(--bg-white) !important;
    padding: 10px 20px;
    border-radius: var(--radius-md);
    font-weight: 700 !important;
    box-shadow: 0 4px 12px rgba(242, 102, 0, 0.2);
    transition: var(--transition) !important;
}

.nav-cta:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
}

.breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px 16px;
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 14px;
}

.breadcrumb a {
  color: #0066cc;
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb span {
  color: #666666;
}

/* ==========================================================================
   4. MARKETING URGENCY BANNER & ANIMATED GRADIENT BUTTON
   ========================================================================== */
.alert-banner {
    background: linear-gradient(135deg, #fff3eb 0%, #ffeae0 100%);
    border-bottom: 1px dashed var(--primary);
    padding: 20px;
}

.banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    text-align: center;
}

.alert-banner p {
    font-size: 15px;
    color: var(--secondary);
}

.badge {
    background: #e11d48;
    color: var(--bg-white);
    font-weight: 800;
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 50px;
    letter-spacing: 0.5px;
}

.animated-banner-btn {
    display: inline-block;
    color: var(--bg-white) !important;
    padding: 10px 22px;
    border-radius: var(--radius-md);
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    background: linear-gradient(-45deg, #F26600, #6b21a8, #1d4ed8, #e11d48);
    background-size: 300% 300%;
    animation: shiftingGradient 4s ease infinite, breathingGrow 2s infinite ease-in-out;
    box-shadow: 0 4px 15px rgba(242, 102, 0, 0.35);
    transition: var(--transition);
}

.animated-banner-btn:hover {
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 6px 20px rgba(107, 33, 168, 0.5);
}

/* ==========================================================================
   5. CONTAINER FRAMEWORK & CENTERED HEADING LAYOUT
   ========================================================================== */
.main-content {
    padding: 20px 0;
}

.section-wrapper {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    text-align: center; 
}

.no-margin-wrapper {
    margin: 0 auto !important;
}

.hero-title {
    font-size: 32px;
    color: var(--secondary);
    font-weight: 800;
    margin-bottom: 12px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

.section-title {
    font-size: 26px;
    color: var(--secondary);
    font-weight: 800;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 15px;
    color: var(--text-muted);
    margin-top: 15px;
    margin-bottom: 40px;
    text-align: center;
}

/* ==========================================================================
   6. USER AWARENESS ACCENT CARDS
   ========================================================================== */
.awareness-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 25px;
}

.awareness-card {
    background: var(--bg-white);
    padding: 35px 25px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
}

.awareness-card:hover {
    box-shadow: var(--shadow-md);
    border-color: #eee;
    transform: translateY(-2px);
}

.awareness-icon {
    font-size: 40px;
    margin-bottom: 15px;
    display: block;
}

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

.awareness-card p {
    font-size: 14px;
    color: var(--text-muted);
    text-align: center;
}

/* ==========================================================================
   7. CATEGORY TAXONOMY & ENHANCED RESPONSIVE CITY GRID
   ========================================================================== */
.taxonomy-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: center; 
}

.category-block {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: border-color 0.2s ease;
}

.block-header {
    width: 100%;
    padding: 22px 25px;
    display: flex;
    align-items: center;
    background: var(--bg-white);
    user-select: none;
    position: relative;
    border: none;
    text-align: center;
    font-family: inherit;
}

.block-icon {
    width: 26px;
    height: 26px;
    fill: var(--primary);
    margin-right: 12px;
    flex-shrink: 0;
}

.block-header h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary);
}

/* Forces precisely 5 equal width columns on desktop viewpoints */
.responsive-city-grid {
    display: grid !important;
    grid-template-columns: repeat(5, 1fr) !important;
    gap: 16px !important;
    padding: 25px !important;
    width: 100%;
    background: #fafbfe;
    border-top: 1px solid var(--border-color);
}

.responsive-city-grid li {
    list-style: none !important;
    width: 100%;
}

.responsive-city-grid li a {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    background: var(--bg-white);
    padding: 20px 15px !important;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    transition: var(--transition);
    text-align: center !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

.responsive-city-grid li a:hover {
    border-color: var(--primary);
    color: var(--primary) !important;
    background: #fffbf7 !important;
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 6px 15px rgba(242, 102, 0, 0.08);
}

.city-icon {
    font-size: 28px;
    margin-bottom: 8px;
    display: block;
    transition: transform 0.2s ease;
}

.responsive-city-grid li a:hover .city-icon {
    transform: scale(1.15);
}

.city-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--secondary);
    display: block;
}

/* ==========================================================================
   8. BRAND MARQUEE SLIDER: EXACT 80x80px CONSTRAINTS 
   ========================================================================== */
.logo-slider-container {
    background: var(--bg-white);
    padding: 25px 0;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    width: 100%;
    position: relative;
}

/* Gradient Mask overlay shields to smoothly blur boundaries */
.logo-slider-container::before,
.logo-slider-container::after {
    content: "";
    height: 100%;
    position: absolute;
    top: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}
.logo-slider-container::before {
    left: 0;
    background: linear-gradient(to right, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
}
.logo-slider-container::after {
    right: 0;
    background: linear-gradient(to left, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
}

.logo-marquee-track {
    display: flex;
    align-items: center;
    gap: 30px;
    width: max-content;
    animation: linearMarquee 25s linear infinite;
}

/* Pause scroll movement on user hover triggers */
.logo-slider-container:hover .logo-marquee-track {
    animation-play-state: paused;
}

.logo-square-card {
    width: 80px !important;
    height: 80px !important;
    min-width: 80px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    transition: var(--transition);
    overflow: hidden;
    padding: 8px;
}

.logo-square-card:hover {
    border-color: var(--primary);
    background: var(--bg-white);
    transform: translateY(-2px);
}

.logo-square-card img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    filter: grayscale(100%);
    opacity: 0.75;
    transition: var(--transition);
}

.logo-square-card:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

@keyframes linearMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-80px * 10 - 30px * 10)); }
}

/* ==========================================================================
   9. TOP TRENDING VISUAL SHOWCASE GRID
   ========================================================================== */
.healthcare-showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.healthcare-visual-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.healthcare-visual-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: #ffe0cc;
}

.health-card-image-box {
    width: 100%;
    height: 220px;
    position: relative;
    background: #cbd5e1;
    overflow: hidden;
}

.health-card-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.healthcare-visual-card:hover .health-card-image-box img {
    transform: scale(1.06);
}

.health-card-floating-badge {
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary);
    color: var(--bg-white);
    font-size: 11px;
    font-weight: 800;
    padding: 5px 14px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.health-card-content-block {
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
    text-align: center;
}

.health-card-content-block h3 {
    font-size: 20px;
    color: var(--secondary);
    margin-bottom: 12px;
    font-weight: 800;
    text-align: center;
}

.health-card-content-block p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.5;
    text-align: center;
}

.health-card-action-link {
    display: inline-block;
    background: var(--primary);
    color: var(--bg-white) !important;
    padding: 10px 24px;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 14px;
    transition: var(--transition);
    text-align: center;
    width: 100%;
    max-width: 220px;
}

.health-card-action-link:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
}

/* ==========================================================================
   10. COMPETITOR PRICING MATRIX TIERS
   ========================================================================== */
.health-matrix-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 20px;
    align-items: stretch;
}

.health-matrix-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    text-align: center;
}

.health-matrix-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.health-matrix-card.high-lighted {
    border: 2px solid var(--primary);
    box-shadow: 0 15px 35px rgba(242, 102, 0, 0.1);
}

.health-matrix-header {
    background: #fafbfe;
    padding: 30px 20px;
    border-bottom: 1px solid var(--border-color);
    text-align: center;
}

.health-matrix-card.high-lighted .health-matrix-header {
    background: #fff8f4;
}

.health-matrix-header h3 {
    font-size: 20px;
    color: var(--secondary);
    font-weight: 800;
    margin-bottom: 10px;
    text-align: center;
}

.health-price-amount {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: var(--secondary);
    text-align: center;
}

.health-price-amount small {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 400;
}

.health-matrix-ribbon {
    position: absolute;
    top: 12px;
    right: -35px;
    background: var(--primary);
    color: var(--bg-white);
    font-size: 10px;
    font-weight: 800;
    padding: 4px 35px;
    transform: rotate(45deg);
    text-transform: uppercase;
}

.health-matrix-features {
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-grow: 1;
    align-items: center;
    list-style: none;
}

.health-matrix-features li {
    font-size: 14px;
    color: var(--text-main);
    border-bottom: 1px dashed var(--border-color);
    padding-bottom: 8px;
    width: 100%;
    max-width: 260px;
    text-align: center;
}

.health-matrix-features li:last-child {
    border-bottom: none;
}

.health-matrix-action-box {
    padding: 0 25px 30px 25px;
    text-align: center;
}

.health-matrix-cta-btn {
    display: block;
    background: var(--secondary);
    color: var(--bg-white) !important;
    text-align: center;
    padding: 12px;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 14px;
    transition: var(--transition);
}

.health-matrix-card.high-lighted .health-matrix-cta-btn {
    background: var(--primary);
}

.health-matrix-card.high-lighted .health-matrix-cta-btn:hover {
    background: var(--primary-hover);
}

.health-matrix-cta-btn:hover {
    background: #0d1322;
}

/* ==========================================================================
   11. MILESTONES DATA LAYER ACCENT BANNER
   ========================================================================== */
.metrics-accent-banner {
    background: linear-gradient(135deg, #0f172a 0%, #1e2843 100%);
    color: var(--bg-white);
    padding: 60px 20px;
    text-align: center;
}

.metrics-banner-title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 10px;
    text-align: center;
}

.metrics-banner-subtitle {
    font-size: 15px;
    opacity: 0.8;
    margin-bottom: 40px;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.metrics-numerical-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.metric-counter-block {
    padding: 20px;
    text-align: center;
}

.counter-number {
    display: block;
    font-size: 42px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
    text-align: center;
}

.counter-label {
    font-size: 14px;
    opacity: 0.9;
    line-height: 1.4;
    text-align: center;
}

/* ==========================================================================
   12. CREATIVE SPLIT TRUST AND SHIELD LAYER
   ========================================================================== */
.creative-split-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    align-items: center;
    text-align: center;
}

.split-visual-side {
    width: 100%;
    height: 100%;
    min-height: 380px;
    background: #1e293b;
}

.split-visual-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.split-content-side {
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.mini-accent-pill {
    display: inline-block;
    background: #fff3eb;
    color: var(--primary);
    font-size: 11px;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 50px;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.split-content-side h2 {
    font-size: 26px;
    color: var(--secondary);
    font-weight: 800;
    margin-bottom: 15px;
    text-align: center;
}

.split-content-side p {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 25px;
    line-height: 1.6;
    text-align: center;
}

.bullet-feature-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin-bottom: 16px;
    width: 100%;
    max-width: 440px;
    text-align: center;
}

.bullet-checkmark {
    color: var(--accent);
    font-weight: 900;
    font-size: 18px;
}

.bullet-feature-row p {
    font-size: 14px;
    color: var(--text-main);
    margin-bottom: 0;
    text-align: center;
}

.bullet-feature-row p strong {
    color: var(--secondary);
}

.split-accent-btn {
    display: inline-block;
    margin-top: 15px;
    background: var(--secondary);
    color: var(--bg-white) !important;
    padding: 12px 30px;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 14px;
    transition: var(--transition);
    text-align: center;
}

.split-accent-btn:hover {
    background: #0d1322;
}

/* ==========================================================================
   13. HIGH-PERFORMANCE FAQ COLLAPSIBLE LAYOUTS
   ========================================================================== */
.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 25px;
    text-align: center;
}

.faq-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-header {
    width: 100%;
    background: var(--bg-white);
    padding: 18px 25px;
    text-align: center;
    border: none;
    font-size: 16px;
    font-weight: 700;
    color: var(--secondary);
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: inherit;
    gap: 15px;
}

.faq-header:hover {
    background: #fdfdfd;
    color: var(--primary);
}

.faq-header::after {
    content: '+';
    font-size: 20px;
    color: var(--text-muted);
    font-weight: bold;
}

.faq-card.active .faq-header::after {
    content: '\2212';
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: #fafbfe;
}

.faq-card.active .faq-body {
    max-height: 500px;
    border-top: 1px solid var(--border-color);
}

.faq-content-box p {
    padding: 20px 25px;
    font-size: 14px;
    color: var(--text-muted);
    text-align: center;
}

.faq-content-box p a {
    color: var(--primary);
    font-weight: bold;
}

.faq-content-box p a:hover {
    text-decoration: underline;
}

/* ==========================================================================
   14. SEO TEXT PATTERNS & PROMO CONVERSION BOX
   ========================================================================== */
.seo-section {
    background: var(--bg-white);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 60px 0;
}

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

.seo-text {
    text-align: center; 
    width: 100%;
}

.seo-text h2, .seo-text h3 {
    color: var(--secondary);
    margin-bottom: 15px;
    text-align: center;
}

.seo-text h3 {
    font-size: 18px;
    margin-top: 25px;
}

.seo-text p {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 15px;
    text-align: center; 
}

.reg-promo-box {
    background: linear-gradient(135deg, #fff3eb 0%, #ffeae0 100%);
    border: 2px dashed var(--primary);
    border-radius: var(--radius-lg);
    padding: 35px 25px;
    height: fit-content;
    text-align: center; 
    box-shadow: var(--shadow-sm);
    margin: 0 auto; 
    width: 100%;
    max-width: 360px;
}

.reg-promo-box h3 {
    color: var(--secondary);
    font-size: 20px;
    margin-bottom: 10px;
    text-align: center;
}

.offer-tag {
    display: inline-block;
    background: #e11d48;
    color: var(--bg-white);
    font-weight: bold;
    font-size: 12px;
    padding: 4px 12px;
    border-radius: 50px;
    text-transform: uppercase;
    margin-bottom: 15px;
    animation: pulse 2s infinite;
}

.reg-promo-box p {
    font-size: 14px;
    color: var(--text-main);
    margin-bottom: 20px;
    text-align: center;
}

.reg-btn {
    display: block;
    background: var(--secondary);
    color: var(--bg-white);
    padding: 12px 20px;
    border-radius: var(--radius-md);
    font-weight: bold;
    transition: var(--transition);
    text-align: center;
}

.reg-btn:hover {
    background: #0d1322;
}

/* ==========================================================================
   15. OUTSIDE REGIONAL CITY LINK HUB BAR (FIXED INLINE ARCHITECTURE)
   ========================================================================== */
.outside-cities-section {
    max-width: 1200px;
    margin: 40px auto 10px auto;
    padding: 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    background: var(--bg-white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.cities-badge {
    background: var(--primary);
    color: var(--bg-white);
    flex-shrink: 0;
    margin: 0;
    display: inline-block;
}

.cities-links-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px 22px;
}

.cities-links-row a {
    color: var(--secondary);
    font-weight: 700;
    font-size: 14px;
    transition: var(--transition);
}

.cities-links-row a:hover {
    color: var(--primary);
    transform: translateY(-1px);
}

/* ==========================================================================
   16. ALPHA SEO LONG-TAIL KEYWORD FOOTER LAYER
   ========================================================================== */
.main-footer {
    background: var(--secondary);
    color: #b9bbbf;
    padding: 60px 0 20px 0;
    font-size: 13px;
    text-align: center;
}

.footer-title {
    color: var(--bg-white);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    border-bottom: 1px solid #2d395a;
    padding-bottom: 15px;
    text-align: center;
}

.footer-seo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

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

.footer-col-heading {
    display: block;
    color: #ffffff;
    font-weight: bold;
    margin-bottom: 15px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
    line-height: 1.4;
    text-align: center;
}

.footer-col ul li a {
    color: #b9bbbf;
    transition: var(--transition);
    display: inline-block;
}

.footer-col ul li a:hover {
    color: var(--primary);
}

.footer-info-links {
    border-top: 1px solid #2d395a;
    padding: 25px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 10px;
}

.footer-info-links a {
    color: #9ca3af;
    font-size: 13px;
    font-weight: 600;
    transition: var(--transition);
}

.footer-info-links a:hover {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid #2d395a;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    font-size: 12px;
    text-align: center;
    width: 100%;
}

.footer-legal {
    display: flex;
    justify-content: center;
    width: 100%;
    gap: 20px;
}

.footer-legal a {
    font-size: 12px;
    transition: var(--transition);
}

.footer-legal a:hover {
    color: var(--primary);
}

/* ==========================================================================
   17. PULSE ANIMATIONS & STRUCTURAL MEDIA VIEWPORT BREAKPOINTS
   ========================================================================== */
@keyframes shiftingGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes breathingGrow {
    0% { transform: scale(1); }
    50% { transform: scale(1.04); box-shadow: 0 4px 20px rgba(225, 29, 72, 0.45); }
    100% { transform: scale(1); }
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(225, 29, 72, 0.4); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(225, 29, 72, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(225, 29, 72, 0); }
}

.popular-health-searches-section{
    padding:70px 20px;
    background:#f8fafc;
}

.popular-search-tags{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
    justify-content:center;
}

.popular-search-tags a{
    padding:12px 18px;
    background:#ffffff;
    border:1px solid #e2e8f0;
    border-radius:999px;
    text-decoration:none;
    color:#0f172a;
    font-weight:600;
    font-size:0.95rem;
    transition:0.3s ease;
}

.popular-search-tags a:hover{
    transform:translateY(-2px);
    border-color:#2563eb;
    color:#2563eb;
    box-shadow:0 10px 25px rgba(37,99,235,0.08);
}

/* RESPONSIVE RE-ARRANGEMENTS FOR MID-SIZE VIEWPORTS */
@media (max-width: 992px) {
    .responsive-city-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 12px !important;
        padding: 15px !important;
    }
    .seo-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .creative-split-container {
        grid-template-columns: 1fr;
    }
    .split-visual-side {
        min-height: 280px;
    }
    .footer-seo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* SMARTPHONE BREAKPOINT WITH 2-COLUMN FORCE MAPS */
@media (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }
    
    .header-container {
        padding: 12px 15px;
        flex-direction: row;
        justify-content: space-between;
    }
    
    .logo-img {
        height: 40px;
    }

    .nav-links {
        gap: 0;
    }

    .hero-title {
        font-size: 24px;
    }

    .section-title {
        font-size: 22px;
    }
    
    /* Dynamically snaps down cleanly to a 2-column list layout on mobile screens */
    .responsive-city-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
        padding: 12px !important;
    }
    
    .city-icon {
        font-size: 24px;
        margin-bottom: 6px;
    }
    
    .city-name {
        font-size: 14px;
    }
    
    .logo-slider-container {
        padding: 15px 0;
    }

    .outside-cities-section {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        margin: 30px 15px 10px 15px;
    }

    .cities-links-row {
        gap: 10px 16px;
    }
    
    .footer-info-links {
        gap: 15px 25px;
        padding: 20px 0;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    /* Safe fallback for exceptionally ultra-narrow smartphone form factors */
    .responsive-city-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    .animated-banner-btn,
    .logo-marquee-track {
        animation: none !important;
    }
    .logo-marquee-track {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }
}