@import url('https://fonts.googleapis.com/css2?family=Cabin:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&display=swap');

:root {
    --primary: #50C7D5;
    --primary-hover: #3bb3c1;
    --primary-dark: #2B4C59;
    --primary-light: #F0FAFB;
    --primary-border: #D8F2F5;
    --dark-accent: #2B4C59;
    --text-main: #1A1A1A;
    --text-secondary: #4A4A4A;
    --text-light: #7A7A7A;
    --bg-white: #FFFFFF;
    --bg-light: #F8FCFD;
    --border-color: #E6F3F5;
    --shadow-sm: 0 2px 8px rgba(80, 199, 213, 0.08);
    --shadow-md: 0 8px 24px rgba(80, 199, 213, 0.12);
    --shadow-lg: 0 16px 36px rgba(80, 199, 213, 0.16);
    --font-family: 'Cabin', sans-serif;
    --transition-fast: 0.2s ease;
    --transition-normal: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-family: var(--font-family);
    color: var(--text-main);
    background-color: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    max-width: 100vw;
    width: 100%;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--text-main);
    background-color: var(--bg-white);
    overflow-x: hidden;
    max-width: 100vw;
    width: 100%;
}

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

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

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

/* Global SVG & Lucide Icon Defaults */
svg.lucide,
.lucide,
svg[class*="lucide"] {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
    display: inline-block;
    vertical-align: middle;
    flex-shrink: 0;
}

/* Specific SVG Icon Component Scopes */
.hero-badge-item svg {
    width: 14px !important;
    height: 14px !important;
    stroke: var(--primary) !important;
    stroke-width: 2.4 !important;
    fill: none !important;
    flex-shrink: 0 !important;
}

.trust-bar-icon svg {
    width: 20px !important;
    height: 20px !important;
    stroke: var(--primary) !important;
    stroke-width: 2 !important;
    fill: none !important;
    flex-shrink: 0 !important;
}

.problem-card-icon svg {
    width: 22px !important;
    height: 22px !important;
    stroke: var(--primary) !important;
    stroke-width: 2.2 !important;
    fill: none !important;
    flex-shrink: 0 !important;
}

.impact-icon-badge,
.amplify-impact-item .impact-icon-badge {
    width: 44px !important;
    height: 44px !important;
    border-radius: 12px !important;
    background: rgba(80, 199, 213, 0.12) !important;
    border: 1px solid rgba(80, 199, 213, 0.25) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
}

.impact-icon-badge svg,
.amplify-impact-item svg {
    width: 22px !important;
    height: 22px !important;
    stroke: var(--primary-dark) !important;
    stroke-width: 2.2 !important;
    fill: none !important;
    flex-shrink: 0 !important;
}

.bento-usp-icon svg {
    width: 20px !important;
    height: 20px !important;
    stroke: var(--primary) !important;
    stroke-width: 2.2 !important;
    fill: none !important;
    flex-shrink: 0 !important;
}

.chiro-pill svg {
    width: 12px !important;
    height: 12px !important;
    stroke: var(--primary) !important;
    stroke-width: 2.2 !important;
    fill: none !important;
    flex-shrink: 0 !important;
}

.chiro-certs-list li svg {
    width: 15px !important;
    height: 15px !important;
    stroke: var(--primary) !important;
    stroke-width: 2.2 !important;
    fill: none !important;
    flex-shrink: 0 !important;
}

.pricing-features-list li svg {
    width: 18px !important;
    height: 18px !important;
    stroke: var(--primary-dark) !important;
    stroke-width: 2.2 !important;
    fill: none !important;
    flex-shrink: 0 !important;
}

.faq-chevron {
    width: 20px !important;
    height: 20px !important;
    stroke: var(--primary-dark) !important;
    stroke-width: 2.2 !important;
    fill: none !important;
    flex-shrink: 0 !important;
    transition: transform 0.3s ease !important;
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg) !important;
    stroke: var(--dark-accent) !important;
}

.location-details-card .loc-item h3,
.location-info-card h3,
.loc-item h3 {
    display: flex;
    align-items: center;
    gap: 10px;
}

.location-details-card .loc-item h3 svg,
.location-info-card h3 svg,
.loc-item h3 svg {
    width: 18px !important;
    height: 18px !important;
    stroke: var(--primary) !important;
    stroke-width: 2.2 !important;
    fill: none !important;
    flex-shrink: 0 !important;
}

.mobile-nav-toggle svg {
    width: 24px !important;
    height: 24px !important;
    stroke: #FFFFFF !important;
    stroke-width: 2 !important;
    fill: none !important;
    flex-shrink: 0 !important;
}

.btn-header svg,
.btn-submit svg,
.btn-bottom-cta svg {
    width: 16px !important;
    height: 16px !important;
    stroke: #FFFFFF !important;
    stroke-width: 2 !important;
    fill: none !important;
    flex-shrink: 0 !important;
}

.btn-wa-hero svg,
.btn-sticky-wa svg {
    width: 18px !important;
    height: 18px !important;
    stroke: currentColor !important;
    stroke-width: 2 !important;
    fill: none !important;
    flex-shrink: 0 !important;
}

.section-eyebrow {
    display: block !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    letter-spacing: 1.5px !important;
    text-transform: uppercase !important;
    color: var(--primary-hover) !important;
    margin-bottom: 8px !important;
}

/* Transparent & Dynamic Inverting Header */
.landing-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

header.landing-header.scrolled {
    background: rgba(14, 28, 36, 0.94) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    border-bottom: 1px solid rgba(80, 199, 213, 0.25) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35) !important;
}

header.landing-header.scrolled .header-container {
    padding: 12px 24px;
}

header.landing-header.scrolled .header-logo img {
    filter: brightness(0) invert(1) !important;
}

header.landing-header.scrolled .header-nav a {
    color: #FFFFFF !important;
}

header.landing-header.scrolled .header-nav a:hover {
    color: var(--primary) !important;
}

header.landing-header.scrolled .mobile-nav-toggle {
    color: #FFFFFF !important;
    border-color: rgba(80, 199, 213, 0.35) !important;
    background: rgba(255, 255, 255, 0.08) !important;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 18px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: var(--transition-normal);
}

.header-logo {
    display: flex;
    align-items: center;
    flex-shrink: 1;
    min-width: 0;
}

/* Unscrolled (Transparent Header - White Logo & White Links) */
.header-logo img {
    height: 44px;
    max-width: 200px;
    width: auto;
    object-fit: contain;
    display: block;
    filter: brightness(0) invert(1);
    transition: filter 0.35s ease;
}

.header-nav {
    display: flex;
    gap: 32px;
}

.header-nav a {
    color: #FFFFFF;
    font-weight: 500;
    font-size: 15px;
    position: relative;
    padding: 8px 0;
    transition: color 0.35s ease;
}

.header-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition-fast);
}

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

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

.header-cta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.header-cta .btn-header {
    background-color: var(--primary);
    color: #0E1C24;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    white-space: nowrap;
    line-height: 1.2;
    transition: var(--transition-fast);
    box-shadow: 0 4px 14px rgba(80, 199, 213, 0.3);
}

.header-cta .btn-header:hover {
    background-color: var(--primary-hover);
    color: #FFFFFF;
    transform: translateY(-2px);
}

/* Mobile Navigation Toggle & Responsive Menu */
.mobile-nav-toggle {
    display: none;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    color: #FFFFFF;
    padding: 6px 10px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.landing-header.scrolled .mobile-nav-toggle {
    color: var(--text-main);
    border-color: var(--border-color);
}

@media (max-width: 991px) {
    .header-container {
        padding: 12px 20px;
        gap: 12px;
    }

    .header-logo img {
        height: 38px;
        max-width: 160px;
    }

    .mobile-nav-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .header-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #0E1C24;
        flex-direction: column;
        padding: 20px 24px;
        gap: 16px;
        border-bottom: 1px solid rgba(80, 199, 213, 0.2);
        display: none;
        box-shadow: 0 16px 36px rgba(0, 0, 0, 0.3);
    }

    .landing-header.scrolled .header-nav {
        background: rgba(14, 28, 36, 0.98);
        border-bottom: 1px solid rgba(80, 199, 213, 0.25);
    }

    .landing-header.scrolled .header-nav a {
        color: #FFFFFF;
    }

    .header-nav.active {
        display: flex;
    }

    .header-cta {
        display: flex;
        align-items: center;
        gap: 8px;
        flex-shrink: 0;
    }

    .header-cta .btn-header {
        padding: 8px 14px;
        font-size: 13px;
        white-space: nowrap;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 10px 14px;
        gap: 8px;
    }

    .header-logo img {
        height: 32px;
        max-width: 130px;
    }

    .header-cta {
        gap: 6px;
    }

    .header-cta .btn-header {
        padding: 6px 10px;
        font-size: 12px;
        gap: 5px;
        white-space: nowrap;
    }

    .header-cta .btn-header svg {
        width: 14px;
        height: 14px;
    }

    .mobile-nav-toggle {
        padding: 5px 8px;
        width: 36px;
        height: 34px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* Scrolled Header State (Accent Dark Glassmorphism) */
.landing-header.scrolled {
    background: rgba(14, 28, 36, 0.94) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    border-bottom: 1px solid rgba(80, 199, 213, 0.25) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35) !important;
}

.landing-header.scrolled .header-container {
    padding: 12px 24px;
}

.landing-header.scrolled .header-logo img {
    filter: brightness(0) invert(1) !important;
}

.landing-header.scrolled .header-nav a {
    color: #FFFFFF !important;
}

.landing-header.scrolled .header-nav a:hover {
    color: var(--primary) !important;
}

.landing-header.scrolled .btn-header {
    background-color: var(--primary) !important;
    color: #0E1C24 !important;
    box-shadow: 0 4px 16px rgba(80, 199, 213, 0.35) !important;
}

/* Sections Global */
section {
    padding: 80px 24px;
    position: relative;
}

.section-light {
    background-color: var(--bg-light);
}

.section-white {
    background-color: var(--bg-white);
}

.section-container {
    max-width: 1140px;
    margin: 0 auto;
    width: 100%;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 36px;
    color: var(--text-main);
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
}

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

.section-header p {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

/* Hero Section (100vh Full Screen Height & Centered Layout) */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 100px;
    padding-bottom: 40px;
    background: linear-gradient(135deg, rgba(14, 28, 36, 0.93) 0%, rgba(23, 47, 59, 0.89) 55%, rgba(12, 24, 31, 0.95) 100%), url('https://renew-chiropractic.lamanify.site/wp-content/uploads/2026/07/Untitled-design-11.webp') center/cover no-repeat;
    position: relative;
    color: #FFFFFF;
}

.hero-section-sentul {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 75px;
    padding-bottom: 25px;
    background: linear-gradient(135deg, rgba(14, 28, 36, 0.91) 0%, rgba(23, 47, 59, 0.86) 55%, rgba(12, 24, 31, 0.93) 100%), url('https://renew-chiropractic.lamanify.site/wp-content/uploads/2026/08/hero_spine_consult.webp') center 30%/cover no-repeat;
    position: relative;
    color: #FFFFFF;
}

.hero-section .section-container,
.hero-section-sentul .section-container {
    max-width: 1240px;
    width: 100%;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
    gap: 36px;
    align-items: center;
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

.hero-content,
.hero-form-container {
    min-width: 0;
    max-width: 100%;
    width: 100%;
}

.hero-content h1 {
    font-size: 42px;
    line-height: 1.18;
    margin-bottom: 12px;
    color: #FFFFFF;
    word-break: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

.hero-content h1 span {
    color: var(--primary);
    display: inline;
    word-break: break-word;
    overflow-wrap: break-word;
}

.hero-content .subhead {
    font-size: 15px;
    color: #D1E5EA;
    margin-bottom: 18px;
    line-height: 1.5;
    word-break: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

.hero-special-box {
    margin-top: 16px;
    padding: 14px 18px;
    background: rgba(80, 199, 213, 0.15);
    border-left: 4px solid var(--primary);
    border-radius: var(--radius-sm);
    max-width: 500px;
    width: 100%;
    box-sizing: border-box;
}

.hero-special-badge {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 4px;
}

.hero-special-box p {
    font-size: 13px;
    color: #D1E5EA;
    margin: 0;
}

/* Subtle Hero Eyebrows (Single Line Clean Theme) */
.hero-badges-horizontal {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.hero-badges-horizontal::-webkit-scrollbar {
    display: none;
}

.hero-badge-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 500;
    color: #E2F4F7;
    white-space: nowrap;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.hero-badge-item svg {
    width: 12px;
    height: 12px;
    stroke: var(--primary);
    stroke-width: 2.2;
    fill: none;
    opacity: 0.95;
}

/* Hero Form Card (Sleek Compact Dark Glassmorphism) */
.hero-form-card {
    background: rgba(20, 38, 48, 0.94);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(80, 199, 213, 0.25);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
    border-top: 4px solid var(--primary);
    color: #FFFFFF;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.hero-form-card h3 {
    font-size: 19px;
    margin-bottom: 2px;
    color: #FFFFFF;
}

.hero-form-card p {
    font-size: 12.5px;
    color: #B2D1D8;
    margin-bottom: 12px;
}

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

.form-group label {
    display: block;
    font-size: 11.5px;
    font-weight: 600;
    color: #E2F4F7;
    margin-bottom: 3px;
}

.form-row-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.form-control {
    width: 100%;
    height: 36px;
    padding: 7px 11px;
    border: 1px solid rgba(80, 199, 213, 0.3);
    border-radius: var(--radius-sm);
    font-family: var(--font-family);
    font-size: 13px;
    color: #FFFFFF;
    background-color: rgba(10, 22, 29, 0.7);
    transition: var(--transition-fast);
    box-sizing: border-box;
}

.form-control option {
    background-color: #142630;
    color: #FFFFFF;
}

.form-control::placeholder {
    color: #7A9CA5;
}

input[type="date"].form-control {
    color: #FFFFFF;
    color-scheme: light;
    accent-color: var(--primary);
}

input[type="date"].form-control::-webkit-calendar-picker-indicator {
    filter: invert(1) brightness(1.2);
    cursor: pointer;
    opacity: 0.95;
    padding: 2px;
}

input[type="date"].form-control::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    background-color: rgba(10, 22, 29, 0.95);
    box-shadow: 0 0 0 3px rgba(80, 199, 213, 0.25);
}

.btn-submit {
    width: 100%;
    background-color: var(--primary);
    color: #0E1C24;
    border: none;
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    font-family: var(--font-family);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-fast);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 14px rgba(80, 199, 213, 0.35);
    margin-top: 4px;
}

.btn-submit:hover {
    background-color: var(--primary-hover);
    color: #FFFFFF;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(80, 199, 213, 0.45);
}

.btn-wa-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 8px 12px;
    margin-top: 6px;
    background: #25D366;
    color: #FFF;
    font-weight: 600;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-size: 13px;
    box-sizing: border-box;
    transition: var(--transition-fast);
}

.btn-wa-hero:hover {
    background: #20BA5A;
    color: #FFF;
    transform: translateY(-1px);
}

.form-disclaimer {
    font-size: 10.5px;
    color: #8BA8B0;
    text-align: center;
    margin-top: 6px;
    line-height: 1.35;
}

/* Gravity Forms Styling Integration */
.gform_wrapper.gform-theme--no-framework,
.gform_wrapper {
    margin: 0 !important;
    padding: 0 !important;
}

.gform_wrapper .gform_heading {
    margin-bottom: 20px !important;
}

.gform_wrapper .gform_title {
    font-size: 22px !important;
    color: #FFFFFF !important;
    font-family: var(--font-family) !important;
    font-weight: 700 !important;
}

.gform_wrapper .gform_description {
    font-size: 14px !important;
    color: #B2D1D8 !important;
    margin-bottom: 20px !important;
}

.gform_wrapper label.gfield_label {
    font-size: 13px !important;
    font-weight: 600 !important;
    color: #E2F4F7 !important;
    margin-bottom: 6px !important;
    font-family: var(--font-family) !important;
}

.gform_wrapper input[type="text"],
.gform_wrapper input[type="tel"],
.gform_wrapper input[type="email"],
.gform_wrapper select,
.gform_wrapper textarea {
    width: 100% !important;
    padding: 12px 16px !important;
    border: 1px solid rgba(80, 199, 213, 0.3) !important;
    border-radius: var(--radius-sm) !important;
    font-family: var(--font-family) !important;
    font-size: 14px !important;
    color: #FFFFFF !important;
    background-color: rgba(10, 22, 29, 0.7) !important;
    transition: var(--transition-fast) !important;
}

.gform_wrapper select option {
    background-color: #142630 !important;
    color: #FFFFFF !important;
}

.gform_wrapper input:focus,
.gform_wrapper select:focus,
.gform_wrapper textarea:focus {
    outline: none !important;
    border-color: var(--primary) !important;
    background-color: rgba(10, 22, 29, 0.95) !important;
    box-shadow: 0 0 0 3px rgba(80, 199, 213, 0.25) !important;
}

.gform_wrapper input[type="submit"],
.gform_wrapper button[type="submit"],
.gform_wrapper .gform_button {
    width: 100% !important;
    background-color: var(--primary) !important;
    color: #0E1C24 !important;
    border: none !important;
    padding: 14px !important;
    border-radius: var(--radius-sm) !important;
    font-family: var(--font-family) !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    transition: var(--transition-fast) !important;
    box-shadow: 0 4px 14px rgba(80, 199, 213, 0.35) !important;
    margin-top: 10px !important;
}

.gform_wrapper input[type="submit"]:hover,
.gform_wrapper button[type="submit"]:hover,
.gform_wrapper .gform_button:hover {
    background-color: var(--primary-hover) !important;
    color: #FFFFFF !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 6px 20px rgba(80, 199, 213, 0.45) !important;
}

/* Trust Bar */
.trust-bar {
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    background-color: var(--bg-light);
    padding: 24px 20px;
}

.trust-bar-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    align-items: center;
}

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

.trust-bar-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: var(--bg-white);
    border: 1px solid var(--primary-border);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.trust-bar-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--primary);
    stroke-width: 2;
    fill: none;
    flex-shrink: 0;
}

.trust-bar-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.trust-bar-text h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.3;
    margin: 0;
}

.trust-bar-text p {
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.35;
    margin: 0;
}

@media (max-width: 991px) {
    .trust-bar-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

/* Option 1: Room-by-Room Story Walk Interactive Split Explorer */
.room-explorer-layout {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 32px;
    align-items: flex-start;
    margin-top: 24px;
}

/* Left Column: Zone Navigation & Story Card */
.room-explorer-left {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.room-nav-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.room-nav-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: #FFFFFF;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    text-align: left;
    width: 100%;
}

.room-nav-item:hover {
    border-color: var(--primary-border);
    background-color: #F8FDFF;
    transform: translateX(4px);
}

.room-nav-item.active {
    background: var(--primary-light);
    border-color: var(--primary);
    border-left: 5px solid var(--primary);
    box-shadow: 0 4px 16px rgba(80, 199, 213, 0.18);
    transform: translateX(6px);
}

.room-nav-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: #FFFFFF;
    border: 1px solid var(--border-color);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    transition: var(--transition-fast);
}

.room-nav-item.active .room-nav-icon {
    background: var(--primary);
    border-color: var(--primary);
}

.room-nav-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--text-main);
    stroke-width: 2;
    fill: none;
}

.room-nav-item.active .room-nav-icon svg {
    stroke: #0E1C24;
}

.room-nav-meta h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-main);
    margin: 0 0 2px 0;
    line-height: 1.3;
}

.room-nav-meta p {
    font-size: 12px;
    color: var(--text-secondary);
    margin: 0;
}

.room-nav-item.active .room-nav-meta h4 {
    color: var(--dark-accent);
}

/* Right Column: Hero Visual & Sub-Thumbnails & Story Details */
.room-explorer-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: #FFFFFF;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-sm);
}

.room-hero-visual {
    position: relative;
    width: 100%;
    height: 420px;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: #0A161D;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    cursor: pointer;
}

.room-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
}

.room-hero-visual:hover .room-hero-img {
    transform: scale(1.04);
}

.room-badge-tag {
    position: absolute;
    top: 18px;
    left: 18px;
    background: rgba(14, 28, 36, 0.88);
    backdrop-filter: blur(10px);
    color: #FFFFFF;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 2;
}

.room-zoom-trigger {
    position: absolute;
    bottom: 18px;
    right: 18px;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(8px);
    padding: 8px 16px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-main);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    transition: var(--transition-fast);
    z-index: 2;
}

.room-hero-visual:hover .room-zoom-trigger {
    background: var(--cta-orange);
    color: #FFFFFF;
    transform: translateY(-2px);
}

.room-hero-visual:hover .room-zoom-trigger svg {
    stroke: #FFFFFF;
}

/* Thumbnail Selector Strip */
.room-thumbs-strip {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 6px;
}

.room-thumb-item {
    width: 88px;
    height: 64px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid var(--border-color);
    cursor: pointer;
    flex-shrink: 0;
    transition: all 0.25s ease;
    opacity: 0.7;
    background: #EBF2F5;
}

.room-thumb-item:hover {
    opacity: 1;
    border-color: var(--primary);
    transform: translateY(-2px);
}

.room-thumb-item.active {
    opacity: 1;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(80, 199, 213, 0.35);
    transform: translateY(-2px);
}

.room-thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Zone Story Details & Comfort Highlights */
.room-story-details {
    padding-top: 14px;
    border-top: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.room-story-header h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-main);
    margin: 0 0 6px 0;
}

.room-story-header p {
    font-size: 14.5px;
    color: var(--text-secondary);
    line-height: 1.55;
    margin: 0;
}

.room-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.room-feature-box {
    background: #F8FDFF;
    border: 1px solid var(--primary-border);
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.room-feature-box h5 {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-main);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.room-feature-box h5 svg {
    width: 16px;
    height: 16px;
    stroke: var(--primary);
    stroke-width: 2.2;
    fill: none;
    flex-shrink: 0;
}

.room-feature-box p {
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.4;
    margin: 0;
}

/* Lightbox Modal */
.gallery-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(10, 20, 26, 0.94);
    backdrop-filter: blur(12px);
    z-index: 10000;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
}

.gallery-lightbox.active {
    display: flex;
    animation: fadeIn 0.25s ease;
}

.lightbox-content {
    max-width: 960px;
    width: 100%;
    background: #142630;
    border: 1px solid rgba(80, 199, 213, 0.3);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.6);
    position: relative;
    display: flex;
    flex-direction: column;
}

.lightbox-img-wrap {
    width: 100%;
    max-height: 70vh;
    background: #0A141A;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.lightbox-img-wrap img {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    display: block;
}

.lightbox-info {
    padding: 20px 24px;
    background: #142630;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.lightbox-info h3 {
    font-size: 20px;
    color: #FFFFFF;
    margin: 0 0 6px 0;
}

.lightbox-info p {
    font-size: 14px;
    color: #B2D1D8;
    margin: 0;
}

.lightbox-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 24px;
    line-height: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-fast);
}

.lightbox-close:hover {
    background: #FF6B00;
    color: #FFFFFF;
}

/* Responsive Explorer */
@media (max-width: 991px) {
    .room-explorer-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .room-nav-list {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 8px;
        gap: 10px;
        -webkit-overflow-scrolling: touch;
    }
    
    .room-nav-item {
        min-width: 200px;
        padding: 12px 16px;
    }
    
    .room-hero-visual {
        height: 320px;
    }
    
    .room-features-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

@media (max-width: 576px) {
    .room-explorer-right {
        padding: 18px;
    }
    
    .room-hero-visual {
        height: 240px;
    }
    
    .room-nav-item {
        min-width: 170px;
        padding: 10px 14px;
    }
    
    .room-nav-icon {
        width: 32px;
        height: 32px;
    }
    
    .room-nav-meta h4 {
        font-size: 13px;
    }
    
    .room-nav-meta p {
        font-size: 11px;
    }
}

/* About The Practice Blocks Section (Sleek & Airy Layout) */
.practice-blocks-container {
    display: flex;
    flex-direction: column;
    gap: 72px;
    margin-top: 20px;
}

.practice-block-row {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 56px;
    align-items: center;
}

.practice-block-row.reverse {
    grid-template-columns: 0.95fr 1.05fr;
}

.practice-block-row.reverse .practice-block-image {
    order: -1;
}

.practice-block-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.practice-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--primary-hover);
}

.practice-block-content h3 {
    font-size: 28px;
    color: var(--text-main);
    line-height: 1.3;
}

.practice-block-content p.practice-lead {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 8px;
}

/* Modern Lucide Icon Pointers List */
.practice-pointers-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.practice-pointer-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 14px 18px;
    transition: var(--transition-fast);
}

.practice-pointer-item:hover {
    border-color: var(--primary-border);
    background-color: var(--primary-light);
    transform: translateX(4px);
}

.pointer-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--bg-white);
    border: 1px solid var(--primary-border);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    margin-top: 2px;
    box-shadow: 0 2px 6px rgba(80, 199, 213, 0.1);
}

.pointer-icon svg.lucide {
    width: 16px;
    height: 16px;
    stroke: var(--primary);
    stroke-width: 2.2;
    fill: none;
}

.pointer-text h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 2px;
}

.pointer-text p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.practice-block-image {
    width: 100%;
    height: 420px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.practice-block-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.practice-block-image:hover img {
    transform: scale(1.03);
}

/* Bento Box USPs Section: Why Patients Choose Renew Chiropractic */
.practice-usps-section {
    margin-top: 64px;
    background: #F8FDFF;
    border: 1px solid rgba(80, 199, 213, 0.25);
    border-radius: var(--radius-lg);
    padding: 44px 36px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.03);
}

.usps-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 36px auto;
}

.usps-header .section-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 6px;
}

.usps-header h3 {
    font-size: 28px;
    color: var(--text-main);
    margin: 0 0 8px 0;
    line-height: 1.25;
}

.usps-header p {
    font-size: 14.5px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

/* Impact / Amplify Section Styles */
.amplify-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.amplify-card-full {
    background: #FFFFFF;
    border: 1px solid rgba(80, 199, 213, 0.25);
    border-radius: var(--radius-lg);
    padding: 48px 44px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.amplify-card-full::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--dark-accent) 100%);
}

.amplify-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--primary-dark);
    background: rgba(80, 199, 213, 0.12);
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.amplify-card-full h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.3;
    max-width: 800px;
    margin: 0 auto 16px auto;
}

.amplify-lead {
    font-size: 15.5px;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 840px;
    margin: 0 auto 36px auto;
}

.amplify-impact-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    text-align: left;
    margin-top: 32px;
}

.amplify-impact-item {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px 20px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.amplify-impact-item:hover {
    transform: translateY(-3px);
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    background: #FFFFFF;
}

.amplify-impact-item .impact-icon-badge {
    width: 44px !important;
    height: 44px !important;
    border-radius: 12px !important;
    background: rgba(80, 199, 213, 0.12) !important;
    border: 1px solid rgba(80, 199, 213, 0.25) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
}

.amplify-impact-item .impact-icon-badge svg {
    width: 22px !important;
    height: 22px !important;
    stroke: var(--primary-dark) !important;
    stroke-width: 2.2 !important;
    fill: none !important;
}

.impact-content h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-main);
    margin: 0 0 6px 0;
    line-height: 1.35;
}

.impact-content p {
    font-size: 13.5px;
    color: var(--text-secondary);
    line-height: 1.55;
    margin: 0;
}

@media (max-width: 991px) and (min-width: 601px) {
    .amplify-card-full {
        padding: 36px 28px;
    }
    .amplify-impact-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

@media (max-width: 600px) {
    .amplify-section {
        padding: 48px 0;
    }
    .amplify-card-full {
        padding: 28px 18px;
        border-radius: var(--radius-md);
    }
    .amplify-card-full h2 {
        font-size: 22px;
    }
    .amplify-lead {
        font-size: 14px;
        margin-bottom: 24px;
    }
    .amplify-impact-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 20px;
    }
    .amplify-impact-item {
        padding: 16px 14px;
        gap: 12px;
    }
}

.bento-usps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 992px) {
    .bento-usps-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 20px;
    }

    .bento-usps-grid.five-cards {
        grid-template-columns: repeat(6, minmax(0, 1fr));
        gap: 20px;
    }

    .bento-usps-grid.five-cards .bento-usp-card:nth-child(1),
    .bento-usps-grid.five-cards .bento-usp-card:nth-child(2),
    .bento-usps-grid.five-cards .bento-usp-card:nth-child(3) {
        grid-column: span 2;
    }

    .bento-usps-grid.five-cards .bento-usp-card:nth-child(4),
    .bento-usps-grid.five-cards .bento-usp-card:nth-child(5) {
        grid-column: span 3;
    }
}

@media (max-width: 991px) and (min-width: 601px) {
    .bento-usps-grid,
    .bento-usps-grid.five-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

    .bento-usps-grid.five-cards .bento-usp-card:nth-child(5) {
        grid-column: span 2;
    }
}

@media (max-width: 600px) {
    .bento-usps-grid,
    .bento-usps-grid.five-cards {
        grid-template-columns: 1fr;
        gap: 14px;
    }
}

.bento-usp-card {
    background: #FFFFFF;
    border: 1px solid rgba(80, 199, 213, 0.22);
    border-radius: var(--radius-md);
    padding: 24px 22px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
    position: relative;
    overflow: hidden;
    width: 100%;
}

.bento-usp-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary) 0%, rgba(80, 199, 213, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.bento-usp-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: 0 12px 28px rgba(80, 199, 213, 0.15);
}

.bento-usp-card:hover::before {
    opacity: 1;
}

.bento-usp-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 4px;
}

.bento-usp-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(80, 199, 213, 0.12);
    border: 1px solid rgba(80, 199, 213, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.bento-usp-card:hover .bento-usp-icon {
    background: var(--primary);
}

.bento-usp-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--primary);
    stroke-width: 2.2;
    fill: none;
    transition: stroke 0.3s ease;
}

.bento-usp-card:hover .bento-usp-icon svg {
    stroke: #0E1C24;
}

.bento-usp-tag {
    font-size: 11px;
    font-weight: 600;
    color: var(--primary-dark);
    background: rgba(80, 199, 213, 0.1);
    padding: 3px 8px;
    border-radius: 12px;
    letter-spacing: 0.3px;
}

.bento-usp-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.35;
    margin: 0;
}

.bento-usp-card p {
    font-size: 13.5px;
    color: var(--text-secondary);
    line-height: 1.55;
    margin: 0;
}

/* Interactive Conditions Tabs Component */
.conditions-tabs-layout {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 32px;
    align-items: stretch;
    margin-top: 40px;
}

.conditions-tabs-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tab-btn {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    font-family: var(--font-family);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-main);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: var(--transition-fast);
    text-align: left;
    box-shadow: 0 1px 3px rgba(0,0,0,0.02);
    width: 100%;
}

.tab-btn svg.lucide {
    width: 20px;
    height: 20px;
    stroke: var(--dark-accent);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    flex-shrink: 0;
    transition: var(--transition-fast);
}

.tab-btn img.condition-icon {
    width: 30px !important;
    height: 30px !important;
    max-width: 30px !important;
    max-height: 30px !important;
    object-fit: contain;
    flex-shrink: 0;
    transition: var(--transition-fast);
}

.tab-btn:hover {
    border-color: var(--primary-border);
    background-color: var(--primary-light);
    color: var(--dark-accent);
}

.tab-btn:hover svg.lucide {
    stroke: var(--primary);
}

.tab-btn.active {
    background-color: var(--primary-light) !important;
    color: var(--dark-accent) !important;
    border-color: var(--primary) !important;
    border-left: 4px solid var(--primary) !important;
    font-weight: 700 !important;
    box-shadow: 0 2px 10px rgba(80, 199, 213, 0.18) !important;
}

.tab-btn.active svg.lucide {
    stroke: var(--primary);
}

.tab-btn.active img.condition-icon {
    filter: none !important;
}

.conditions-detail-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 44px;
    box-shadow: var(--shadow-md);
    min-height: 480px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.tab-pane {
    display: none !important;
}

.tab-pane.active {
    display: block !important;
    animation: fadeIn 0.3s ease;
}

.detail-badge-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background-color: var(--primary-light);
    border: 1px solid var(--primary-border);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.detail-badge-icon img.condition-badge-img {
    width: 30px !important;
    height: 30px !important;
    max-width: 30px !important;
    max-height: 30px !important;
    object-fit: contain;
}

.detail-badge-icon svg.lucide {
    width: 28px;
    height: 28px;
    stroke: var(--dark-accent);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.detail-category-tag {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--primary-hover);
    margin-bottom: 8px;
    display: block;
}

.detail-title {
    font-size: 32px;
    color: var(--text-main);
    margin-bottom: 16px;
}

.detail-description {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 28px;
}

.detail-bullets {
    list-style: none;
    margin-bottom: 36px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.detail-bullets li {
    font-size: 15px;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 12px;
}

.detail-bullets li svg.lucide {
    width: 18px;
    height: 18px;
    stroke: var(--primary);
    stroke-width: 2.5;
    fill: none;
    flex-shrink: 0;
}

.detail-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-detail-primary {
    background-color: var(--dark-accent);
    color: var(--bg-white);
    padding: 13px 28px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-fast);
}

.btn-detail-primary:hover {
    background-color: #1d353f;
    color: var(--bg-white);
    transform: translateY(-2px);
}

.btn-detail-secondary {
    background-color: transparent;
    border: 1px solid var(--border-color);
    color: var(--dark-accent);
    padding: 13px 28px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-fast);
}

.btn-detail-secondary:hover {
    border-color: var(--dark-accent);
    background-color: var(--primary-light);
}

/* Problem Grid */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.problem-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 28px;
    box-shadow: var(--shadow-sm);
}

.problem-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--primary-light);
    border: 1px solid var(--primary-border);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 18px;
}

.problem-card-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--primary);
    stroke-width: 2;
    fill: none;
}

.problem-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--text-main);
}

.problem-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Our Chiropractors Team Section (Professional & Expandable Profile Cards) */
.chiro-team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

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

.chiro-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.chiro-image-wrapper {
    width: 100%;
    height: 320px;
    overflow: hidden;
    position: relative;
    background-color: var(--primary-light);
}

.chiro-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.5s ease;
}

.chiro-card:hover .chiro-image-wrapper img {
    transform: scale(1.03);
}

.chiro-card-body {
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.chiro-role {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--primary-hover);
}

.chiro-card-body h3 {
    font-size: 22px;
    color: var(--text-main);
    line-height: 1.2;
}

.chiro-qualifications-tagline {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-accent);
    margin-bottom: 2px;
}

/* Quote banner styling */
.chiro-quote {
    background-color: var(--primary-light);
    border-left: 3px solid var(--primary);
    padding: 12px 16px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-size: 13px;
    font-style: italic;
    color: var(--dark-accent);
    line-height: 1.5;
}

/* Specialty Pill Badges */
.chiro-specialty-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.chiro-pill {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.chiro-pill svg {
    width: 13px;
    height: 13px;
    stroke: var(--primary);
    stroke-width: 2.2;
    fill: none;
}

.chiro-short-bio {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Expandable Full Bio Drawer */
.chiro-full-bio {
    display: none;
    border-top: 1px dashed var(--border-color);
    padding-top: 16px;
    margin-top: 6px;
    animation: fadeIn 0.35s ease;
}

.chiro-full-bio.open {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.chiro-full-bio p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.65;
}

.chiro-certs-header {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-main);
    margin-top: 6px;
}

.chiro-certs-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.chiro-certs-list li {
    font-size: 13px;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 10px;
}

.chiro-certs-list li svg {
    width: 15px;
    height: 15px;
    stroke: var(--primary);
    stroke-width: 2.2;
    fill: none;
    flex-shrink: 0;
}

/* Expand Button */
.btn-chiro-bio-toggle {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    color: var(--dark-accent);
    font-family: var(--font-family);
    font-size: 13px;
    font-weight: 700;
    padding: 10px 18px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition-fast);
    margin-top: auto;
}

.btn-chiro-bio-toggle:hover {
    border-color: var(--dark-accent);
    background-color: var(--primary-light);
}

.btn-chiro-bio-toggle svg.lucide-chevron {
    width: 16px;
    height: 16px;
    stroke: var(--dark-accent);
    stroke-width: 2.2;
    fill: none;
    transition: transform 0.3s ease;
}

.btn-chiro-bio-toggle.active svg.lucide-chevron {
    transform: rotate(180deg);
}

/* Services Bento Section Category Filters */
.bento-filter-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.bento-filter-btn {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    padding: 8px 20px;
    border-radius: 30px;
    font-family: var(--font-family);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition-fast);
}

.bento-filter-btn:hover {
    border-color: var(--primary-border);
    color: var(--primary);
}

.bento-filter-btn.active {
    background: var(--dark-accent);
    color: var(--bg-white);
    border-color: var(--dark-accent);
}

/* Bento Box Grid for Services & Modalities Section (9 Cards) */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
}

.bento-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 32px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-normal);
    z-index: 1;
}

.bento-card.hidden {
    display: none !important;
}

/* Bento Column Spans for 9-Item Grid */
.bento-col-8 {
    grid-column: span 8;
}

.bento-col-4 {
    grid-column: span 4;
}

.bento-col-6 {
    grid-column: span 6;
}

/* Bento Background Lucide Watermark Icon */
.bento-watermark-icon {
    position: absolute;
    right: -15px;
    bottom: -20px;
    z-index: 0;
    pointer-events: none;
    transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.bento-watermark-icon svg.lucide {
    width: 150px;
    height: 150px;
    stroke: var(--primary);
    stroke-width: 1.2;
    fill: none;
    opacity: 0.07;
}

/* Bento Interactive Hover States */
.bento-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.bento-card:hover .bento-watermark-icon {
    transform: scale(1.18) rotate(-6deg) translateY(-8px);
}

.bento-card:hover .bento-watermark-icon svg.lucide {
    opacity: 0.22;
    stroke: var(--primary-hover);
}

.bento-card-content {
    position: relative;
    z-index: 2;
}

.bento-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--primary-hover);
    margin-bottom: 12px;
}

.bento-top-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background-color: var(--primary-light);
    border: 1px solid var(--primary-border);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 16px;
    transition: var(--transition-fast);
}

.bento-card:hover .bento-top-icon {
    background-color: var(--primary);
}

.bento-top-icon svg.lucide {
    width: 22px;
    height: 22px;
    stroke: var(--primary-hover);
    stroke-width: 2;
    fill: none;
    transition: var(--transition-fast);
}

.bento-card:hover .bento-top-icon svg.lucide {
    stroke: var(--bg-white);
}

.bento-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-main);
}

.bento-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.55;
    margin-bottom: 20px;
}

/* Expandable Drawer inside Bento Card */
.bento-expandable {
    display: none;
    font-size: 13px;
    color: var(--text-secondary);
    border-top: 1px dashed var(--border-color);
    padding-top: 14px;
    margin-top: 10px;
    margin-bottom: 16px;
    animation: fadeIn 0.3s ease;
}

.bento-expandable.open {
    display: block;
}

.bento-expandable-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 8px;
}

.bento-expandable-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
}

.bento-expandable-list li svg {
    width: 14px;
    height: 14px;
    stroke: var(--primary);
    stroke-width: 2.5;
    fill: none;
    flex-shrink: 0;
}

.btn-bento-toggle {
    background: transparent;
    border: none;
    color: var(--primary);
    font-family: var(--font-family);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 0;
    margin-bottom: 14px;
    transition: var(--transition-fast);
}

.btn-bento-toggle:hover {
    color: var(--primary-hover);
    text-decoration: underline;
}

.bento-notice {
    background: #FFF9E6;
    border: 1px solid #FFEAA7;
    border-radius: var(--radius-sm);
    padding: 8px 12px;
    font-size: 12px;
    color: #8A6D3B;
    margin-bottom: 14px;
}

.bento-meta {
    border-top: 1px solid var(--border-color);
    padding-top: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
    gap: 10px;
}

.bento-price {
    font-weight: 700;
    font-size: 14px;
    color: var(--dark-accent);
}

.bento-duration {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-light);
}

/* Amplify Section */
.amplify-box {
    background: linear-gradient(135deg, #FAFDFD 0%, #F1FAFB 100%);
    border: 1px solid var(--primary-border);
    border-radius: var(--radius-lg);
    padding: 50px 60px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.amplify-box h3 {
    font-size: 26px;
    color: var(--text-main);
    margin-bottom: 20px;
}

.amplify-box p {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto 30px auto;
}

.amplify-highlight {
    font-weight: 700;
    color: var(--primary-hover);
}

/* Transformation (Reviews) */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 45px;
}

.review-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    position: relative;
}

.review-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.review-stars svg {
    width: 16px;
    height: 16px;
    fill: #FFB800;
    stroke: none;
}

.review-text {
    font-size: 14px;
    color: var(--text-secondary);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 20px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--primary-light);
    color: var(--primary-hover);
    font-weight: 700;
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--primary-border);
}

.review-author-info h4 {
    font-size: 14px;
    color: var(--text-main);
}

.review-author-info p {
    font-size: 12px;
    color: var(--text-light);
}

/* Reviews Autoplay Marquee Carousel */
.reviews-marquee-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
    margin-top: 40px;
    padding: 10px 0;
    mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

.reviews-marquee-track {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: marquee-scroll 40s linear infinite;
}

.reviews-marquee-wrapper:hover .reviews-marquee-track {
    animation-play-state: paused;
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.reviews-marquee-track .review-card {
    width: 340px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #FFFFFF;
    border: 1px solid rgba(80, 199, 213, 0.25);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.reviews-marquee-track .review-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(80, 199, 213, 0.16);
    border-color: var(--primary);
}

/* Offer Box Section */
.offer-box-container {
    max-width: 780px;
    margin: 0 auto;
}

.offer-box {
    background: var(--bg-white);
    border: 2px solid var(--primary);
    border-radius: var(--radius-lg);
    padding: 50px 40px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.offer-badge {
    display: inline-block;
    position: static;
    transform: none;
    background-color: var(--primary);
    color: var(--bg-white);
    padding: 6px 18px;
    font-weight: 700;
    font-size: 0.85rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.offer-box h3 {
    font-size: 28px;
    margin-bottom: 12px;
    color: var(--text-main);
}

.offer-box h3 span {
    color: var(--primary-hover);
}

.offer-box .offer-subtitle {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.offer-inclusions {
    text-align: left;
    max-width: 500px;
    margin: 0 auto 36px auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.inclusion-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: var(--text-main);
}

.inclusion-item svg {
    width: 20px;
    height: 20px;
    stroke: var(--primary);
    stroke-width: 2;
    fill: none;
    flex-shrink: 0;
    margin-top: 2px;
}

.inclusion-item strong {
    font-weight: 600;
}

.offer-pricing {
    margin-bottom: 30px;
}

.offer-pricing .price-was {
    font-size: 16px;
    color: var(--text-light);
    text-decoration: line-through;
    margin-bottom: 4px;
    display: block;
}

.offer-pricing .price-now {
    font-size: 52px;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1;
}

.offer-pricing .price-now span {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-secondary);
}

.btn-offer {
    background-color: var(--primary);
    color: var(--bg-white);
    padding: 16px 40px;
    border-radius: var(--radius-sm);
    font-size: 18px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-fast);
}

.btn-offer:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.offer-footer-text {
    margin-top: 20px;
    font-size: 13px;
    color: var(--text-light);
}

/* Location & Access Section */
.location-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: stretch;
}

.map-wrapper {
    width: 100%;
    height: 100%;
    min-height: 380px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.location-details {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
}

.location-info-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow-sm);
}

.location-info-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-main);
}

.location-info-card h3 svg {
    width: 18px;
    height: 18px;
    stroke: var(--primary);
    stroke-width: 2;
    fill: none;
}

.location-info-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.hours-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
    color: var(--text-secondary);
    margin-top: 8px;
}

.hours-table tr {
    border-bottom: 1px solid var(--border-color);
}

.hours-table tr:last-child {
    border-bottom: none;
}

.hours-table td {
    padding: 8px 0;
}

.hours-table td:last-child {
    text-align: right;
    font-weight: 600;
    color: var(--text-main);
}

/* Response/Footer Block */
.bottom-cta-section {
    padding: 60px 24px;
    background: linear-gradient(135deg, #1A1A1A 0%, #2A2A2A 100%);
    color: var(--bg-white);
    text-align: center;
}

.bottom-cta-container {
    max-width: 800px;
    margin: 0 auto;
}

.bottom-cta-section h2 {
    color: var(--bg-white);
    font-size: 32px;
    margin-bottom: 16px;
}

.bottom-cta-section p {
    color: #CCCCCC;
    font-size: 16px;
    margin-bottom: 30px;
}

.btn-bottom-cta {
    background-color: var(--primary);
    color: var(--bg-white);
    padding: 16px 36px;
    border-radius: var(--radius-sm);
    font-size: 16px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-fast);
}

.btn-bottom-cta:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(80, 199, 213, 0.4);
}

.site-footer-minimal {
    background-color: #111111;
    color: #888888;
    padding: 30px 24px;
    text-align: center;
    border-top: 1px solid #222222;
    font-size: 13px;
}

.footer-links {
    margin-bottom: 12px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-links a {
    color: #888888;
}

/* Unique Centered Hero Layout Override (Dark Overlay with Background Photo) */
.hero-centered-layout {
    padding-top: 140px;
    padding-bottom: 90px;
    background: linear-gradient(180deg, rgba(14, 28, 36, 0.88) 0%, rgba(14, 28, 36, 0.94) 100%), url('../media/Random%20Photo/Untitled-design-11.webp') center/cover no-repeat;
    text-align: center;
    color: #FFFFFF;
}

.hero-centered-layout h1 {
    color: #FFFFFF;
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.hero-centered-layout h1 span {
    color: var(--primary);
}

.hero-centered-layout .subhead {
    color: #E2E8F0;
}

.hero-centered-layout .hero-badge-item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    color: #FFFFFF;
    border: 1px solid rgba(80, 199, 213, 0.4);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.hero-centered-layout .hero-badge-item svg {
    stroke: var(--primary);
}

.hero-centered-content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.center-badges {
    justify-content: center;
    margin-bottom: 24px;
}

.max-w-700 {
    max-width: 700px;
    margin: 0 auto 36px auto;
}

.hero-centered-card-wrapper {
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
}

/* Light Clinical Theme Form Override */
.hero-centered-layout .hero-form-card {
    background: #FFFFFF;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 16px 48px rgba(26, 42, 56, 0.08);
    border-top: 5px solid var(--primary);
    color: var(--text-main);
}

.hero-centered-layout .hero-form-card h3 {
    color: var(--text-main);
}

.hero-centered-layout .hero-form-card p {
    color: var(--text-secondary);
}

.hero-centered-layout .form-group label {
    color: var(--text-main);
}

.hero-centered-layout .form-control {
    background-color: #F8FCFD;
    border: 1px solid rgba(80, 199, 213, 0.2);
    color: var(--text-main);
}

.hero-centered-layout .form-control::placeholder {
    color: #A0B3B8;
}

.hero-centered-layout .form-control:focus {
    background-color: #FFFFFF;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(80, 199, 213, 0.15);
}

.hero-centered-layout .form-disclaimer {
    color: var(--text-light);
}

/* Light Gravity Form Overrides */
.hero-centered-layout .gform_wrapper .gform_title {
    color: var(--text-main) !important;
}
.hero-centered-layout .gform_wrapper .gform_description {
    color: var(--text-secondary) !important;
}
.hero-centered-layout .gform_wrapper label.gfield_label {
    color: var(--text-main) !important;
}
.hero-centered-layout .gform_wrapper input[type="text"],
.hero-centered-layout .gform_wrapper input[type="tel"],
.hero-centered-layout .gform_wrapper input[type="email"],
.hero-centered-layout .gform_wrapper select,
.hero-centered-layout .gform_wrapper textarea {
    background-color: #F8FCFD !important;
    border: 1px solid rgba(80, 199, 213, 0.2) !important;
    color: var(--text-main) !important;
}
.hero-centered-layout .gform_wrapper input:focus,
.hero-centered-layout .gform_wrapper select:focus,
.hero-centered-layout .gform_wrapper textarea:focus {
    background-color: #FFFFFF !important;
}
.hero-centered-layout .gform_wrapper select option {
    background-color: #FFFFFF !important;
    color: var(--text-main) !important;
}

.hero-card-wide {
    text-align: left;
}

.form-grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* Problem Cards Grid */
.problem-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}

@media (max-width: 991px) and (min-width: 601px) {
    .problem-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .problem-cards-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

.problem-card {
    background: #FFFFFF;
    border: 1px solid rgba(80, 199, 213, 0.25);
    border-radius: 16px;
    overflow: hidden;
    padding: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
    display: flex;
    flex-direction: column;
}

.problem-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 36px rgba(80, 199, 213, 0.18);
    border-color: var(--primary);
}

.problem-card-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    background-color: #F8FCFD;
}

.problem-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.problem-card-icon-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(80, 199, 213, 0.3);
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.problem-card:hover .problem-card-icon-badge {
    transform: scale(1.1);
    background: #FFFFFF;
}

.problem-card-body {
    padding: 20px 4px 4px 4px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.problem-card-body h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-main);
}

.problem-card-body p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.55;
    margin-bottom: 18px;
    flex: 1;
}

.problem-card-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s ease;
}

.problem-card-link .arrow {
    transition: transform 0.2s ease;
    display: inline-block;
}

.problem-card-link:hover {
    color: #38b2c2;
}

.problem-card-link:hover .arrow {
    transform: translateX(5px);
}

/* Amplify Impact Chips */
.amplify-content-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.amplify-content-box h2 {
    font-size: 2rem;
    margin-bottom: 16px;
    color: var(--text-main);
}

.amplify-body-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
}

.impact-chips-wrapper {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.impact-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #FFFFFF;
    border: 1px solid rgba(80, 199, 213, 0.3);
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-main);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.impact-chip svg {
    stroke: var(--primary);
}

/* Methodology Grid */
.solution-intro {
    max-width: 780px;
    margin: 0 auto;
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.methodology-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 40px 0;
}

@media (max-width: 768px) {
    .methodology-grid {
        grid-template-columns: 1fr;
    }
}

.method-card {
    background: #FFFFFF;
    border: 1px solid rgba(80, 199, 213, 0.25);
    border-radius: 16px;
    padding: 16px;
    position: relative;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
    display: flex;
    flex-direction: column;
}

.method-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 36px rgba(80, 199, 213, 0.18);
    border-color: var(--primary);
}

.method-card-image {
    width: 100%;
    aspect-ratio: 3 / 4;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    background-color: #F8FCFD;
}

.method-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.method-step-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    background: rgba(80, 199, 213, 0.95);
    color: #FFFFFF;
    font-weight: 800;
    font-size: 1.1rem;
    padding: 6px 14px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(8px);
    transition: transform 0.3s ease;
}

.method-card:hover .method-step-badge {
    transform: scale(1.08);
}

.method-card-body {
    padding: 20px 4px 4px 4px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.method-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 8px;
}

.method-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.55;
}

/* Credibility Accent Card */
.credibility-accent-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #FFFFFF;
    border: 2px solid var(--primary);
    border-radius: 12px;
    padding: 24px 28px;
    box-shadow: 0 6px 20px rgba(80, 199, 213, 0.1);
    max-width: 840px;
    margin: 0 auto;
}

@media (max-width: 600px) {
    .credibility-accent-card {
        flex-direction: column;
        text-align: center;
    }
}

.credibility-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: #F0FAFB;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.credibility-text h4 {
    font-size: 1.1rem;
    color: var(--text-main);
    margin-bottom: 4px;
}

.credibility-text p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

@media (max-width: 768px) {
    .form-grid-2col {
        grid-template-columns: 1fr;
    }
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Mobile responsive fixes */
@media (max-width: 991px) {
    .bento-col-8,
    .bento-col-4,
    .bento-col-6 {
        grid-column: span 12;
    }

    .practice-block-row,
    .practice-block-row.reverse {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .practice-block-row.reverse .practice-block-image {
        order: 0;
    }

    .chiro-team-grid {
        grid-template-columns: 1fr;
    }

    .conditions-tabs-layout {
        grid-template-columns: 1fr;
    }
    
    /* Mobile Hero Light Mode with Right-Aligned Image & Left Light/Cream Overlay */
    .hero-section,
    .hero-section-sentul {
        min-height: auto;
        padding-top: 105px;
        padding-bottom: 50px;
        background-color: #FAF8F5 !important;
        background-image: 
            linear-gradient(to right, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.90) 42%, rgba(255, 255, 255, 0.35) 72%, rgba(255, 255, 255, 0) 100%), 
            url('https://renew-chiropractic.lamanify.site/wp-content/uploads/2026/08/hero_spine_consult.webp') !important;
        background-position: right 10% top !important;
        background-size: cover !important;
        background-repeat: no-repeat !important;
        color: var(--text-main) !important;
    }

    .landing-header:not(.scrolled) .header-logo img {
        filter: none !important;
    }

    .landing-header:not(.scrolled) .mobile-nav-toggle {
        color: #0F172A !important;
        border-color: rgba(15, 23, 42, 0.25) !important;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: left;
    }

    .hero-content {
        text-align: left;
    }

    .hero-content h1 {
        font-size: 34px !important;
        line-height: 1.2 !important;
        color: #0F172A !important;
        text-shadow: none !important;
        font-weight: 800 !important;
        max-width: 90% !important;
        margin-bottom: 14px !important;
    }

    .hero-content h1 span {
        color: #0D7A88 !important;
    }

    .hero-content p.subhead,
    .hero-content p {
        color: #334155 !important;
        text-shadow: none !important;
        font-size: 15px !important;
        line-height: 1.55 !important;
        max-width: 86% !important;
        margin-bottom: 24px !important;
        padding-bottom: 6px !important;
    }

    .hero-badges-horizontal {
        display: none !important;
    }

    .hero-special-box {
        background: rgba(19, 42, 54, 0.95) !important;
        border: 1px solid rgba(80, 199, 213, 0.4) !important;
        border-radius: var(--radius-md) !important;
        padding: 14px 18px !important;
        color: #FFFFFF !important;
        margin-top: 20px !important;
    }

    .hero-special-box p {
        color: rgba(255, 255, 255, 0.9) !important;
    }
    
    .location-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 16px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .amplify-box {
        padding: 30px 20px;
    }
    
    .offer-box {
        padding: 40px 20px;
    }
    
    .conditions-detail-card,
    .bento-card,
    .chiro-card-body {
        padding: 24px;
    }

    .practice-usps-section {
        margin-top: 36px !important;
        padding: 24px 16px !important;
        border-radius: 16px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .usps-header {
        text-align: center !important;
        margin: 0 auto 20px auto !important;
        padding: 0 4px !important;
        width: 100% !important;
    }

    .usps-header h3 {
        font-size: 22px !important;
        line-height: 1.3 !important;
        margin-bottom: 6px !important;
    }

    .usps-header p {
        font-size: 13.5px !important;
        line-height: 1.5 !important;
    }

    .bento-usps-grid {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        box-sizing: border-box !important;
    }

    .bento-usp-card {
        padding: 18px 16px !important;
        border-radius: 12px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .bento-usp-top {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        margin-bottom: 8px !important;
        width: 100% !important;
    }

    .bento-usp-card h4 {
        font-size: 16px !important;
        line-height: 1.3 !important;
        margin: 0 0 6px 0 !important;
        text-align: left !important;
    }

    .bento-usp-card p {
        font-size: 13px !important;
        line-height: 1.55 !important;
        margin: 0 !important;
        text-align: left !important;
    }

    .practice-block-image,
    .chiro-image-wrapper {
        height: 280px;
    }
}

/* Mobile Small Screen Enhancements (< 576px) */
@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 1.85rem !important;
        line-height: 1.25 !important;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .reviews-marquee-track .review-card {
        width: 290px;
        padding: 18px;
    }

    .amplify-content-box h2 {
        font-size: 1.5rem;
    }

    .impact-chips-wrapper {
        gap: 8px;
    }

    .impact-chip {
        padding: 8px 14px;
        font-size: 0.85rem;
    }

    .offer-box {
        padding: 30px 16px !important;
    }

    .offer-pricing .price-now {
        font-size: 38px !important;
    }

    .offer-pricing .price-now span {
        font-size: 15px !important;
        display: block;
        margin-top: 6px;
    }

    .credibility-accent-card {
        padding: 20px 16px;
    }
}

/* High-Converting Premium Orange CTA Buttons */
:root {
    --cta-orange: #FF6B00;
    --cta-orange-hover: #E05E00;
    --cta-orange-shadow: rgba(255, 107, 0, 0.32);
}

.btn-header,
.btn-primary,
.btn-submit,
.btn-offer,
.btn-cta,
.btn-bottom-cta,
.btn-chiro-consult {
    background: #FF6B00 !important;
    background-color: #FF6B00 !important;
    color: #FFFFFF !important;
    border-color: #FF6B00 !important;
    box-shadow: 0 4px 16px rgba(255, 107, 0, 0.32) !important;
}

.btn-header:hover,
.btn-primary:hover,
.btn-submit:hover,
.btn-offer:hover,
.btn-cta:hover,
.btn-bottom-cta:hover,
.btn-chiro-consult:hover {
    background: #E05E00 !important;
    background-color: #E05E00 !important;
    border-color: #E05E00 !important;
    color: #FFFFFF !important;
    box-shadow: 0 8px 24px rgba(255, 107, 0, 0.45) !important;
}

/* White Lucide Icons for All CTA Buttons */
.btn-header svg,
.btn-primary svg,
.btn-submit svg,
.btn-offer svg,
.btn-cta svg,
.btn-bottom-cta svg,
.btn-chiro-consult svg {
    stroke: #FFFFFF !important;
    color: #FFFFFF !important;
    fill: none !important;
    stroke-width: 2px !important;
    flex-shrink: 0;
}

/* Modern Clinic Operating Hours Table */
.hours-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-top: 14px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    background: #FFFFFF;
    box-shadow: 0 4px 16px rgba(80, 199, 213, 0.06);
}

.hours-table tr:not(:last-child) td {
    border-bottom: 1px solid var(--border-color);
}

.hours-table td {
    padding: 14px 18px;
    font-size: 0.95rem;
    color: var(--text-main);
    vertical-align: middle;
}

.hours-table tr td:first-child {
    font-weight: 500;
    color: var(--text-secondary);
    background: #F8FCFD;
}

.hours-table tr td:last-child {
    text-align: right;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.status-badge.open {
    background: #E6F4EA;
    color: #137333;
    border: 1px solid #CEEAD6;
}

.status-badge.closed {
    background: #FCE8E6;
    color: #C5221F;
    border: 1px solid #FAD2CF;
}

/* Doctor Profile Photo Wrapper - Vertical Height Increased to 640px */
.chiro-image-wrapper {
    position: relative;
    width: 100%;
    height: 640px !important;
    min-height: 640px !important;
    overflow: hidden;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    background: #0E1C24;
}

.chiro-image-wrapper img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: top center !important;
    display: block;
    transition: transform 0.4s ease;
}

.chiro-card:hover .chiro-image-wrapper img {
    transform: scale(1.04);
}

/* Offer Pricing Highlight & Breakdown Stack */
.offer-pricing {
    text-align: center;
    margin-top: 24px;
    margin-bottom: 24px;
}

.offer-pricing .price-now {
    font-size: 56px !important;
    font-weight: 800 !important;
    color: #1A1A1A !important;
    line-height: 1.1 !important;
    display: block !important;
    margin-bottom: 6px !important;
}

.offer-pricing .price-breakdown {
    font-size: 18px !important;
    font-weight: 600 !important;
    color: #555555 !important;
    display: block !important;
}

/* Mobile Sticky Footer CTA styles */
.mobile-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #FFFFFF;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.1);
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 10px 16px;
    z-index: 9999;
}
.mobile-sticky-cta a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    text-decoration: none !important;
}
.mobile-sticky-cta .btn-sticky-book {
    background-color: #FF6B00 !important;
    color: #FFFFFF !important;
}
.mobile-sticky-cta .btn-sticky-wa {
    background-color: #25D366 !important;
    color: #FFFFFF !important;
}
.mobile-sticky-cta svg {
    stroke: #FFFFFF !important;
    fill: none !important;
    stroke-width: 2.2px !important;
}
@media (max-width: 768px) {
    .mobile-sticky-cta {
        display: grid;
    }
    body {
        padding-bottom: 70px; /* space for sticky footer */
    }
}

/* ==========================================================================
   Comprehensive Mobile & Tablet Responsive Refinements (Zero Overflow)
   ========================================================================== */
html, body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
    width: 100% !important;
}

*, *::before, *::after {
    box-sizing: border-box !important;
}

@media (max-width: 991px) {
    .section-container {
        max-width: 100% !important;
        width: 100% !important;
        overflow-x: hidden !important;
    }

    .hero-grid {
        grid-template-columns: minmax(0, 1fr) !important;
        gap: 28px !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .hero-content, 
    .hero-form-container, 
    .hero-form-card {
        min-width: 0 !important;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .hero-content {
        text-align: left !important;
    }

    .hero-badges-horizontal {
        display: none !important;
    }

    .hero-special-box {
        margin: 14px 0 0 0 !important;
        max-width: 100% !important;
        width: 100% !important;
    }

    .room-explorer-layout {
        grid-template-columns: minmax(0, 1fr) !important;
        gap: 20px !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .room-explorer-left {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        overflow: visible !important;
    }

    .room-explorer-right {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        overflow: hidden !important;
    }

    .room-nav-list {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        max-width: 100% !important;
        width: 100% !important;
        -webkit-overflow-scrolling: touch;
        gap: 10px !important;
        padding-bottom: 8px !important;
        box-sizing: border-box !important;
    }

    .room-nav-item {
        flex: 0 0 auto !important;
        white-space: nowrap !important;
    }

    .room-features-grid {
        grid-template-columns: minmax(0, 1fr) !important;
        gap: 10px !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .reviews-marquee-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        overflow-x: hidden !important;
    }
}

@media (max-width: 768px) {
    section {
        padding: 50px 16px !important;
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
    }

    .section-container {
        padding-left: 0 !important;
        padding-right: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .hero-section,
    .hero-section-sentul {
        padding-top: 80px !important;
        padding-bottom: 30px !important;
        padding-left: 16px !important;
        padding-right: 16px !important;
        min-height: auto !important;
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
        background-color: #FAF8F5 !important;
        background-image: 
            linear-gradient(to right, rgba(250, 248, 245, 0.98) 0%, rgba(250, 248, 245, 0.92) 42%, rgba(250, 248, 245, 0.25) 75%, rgba(250, 248, 245, 0) 100%), 
            linear-gradient(to bottom, rgba(250, 248, 245, 0) 360px, rgba(250, 248, 245, 1) 480px),
            url('https://renew-chiropractic.lamanify.site/wp-content/uploads/2026/08/hero_spine_consult.webp') !important;
        background-position: right -15px top 0px !important;
        background-size: auto 490px !important;
        background-repeat: no-repeat !important;
        color: #0F172A !important;
    }

    .landing-header:not(.scrolled) {
        background: rgba(250, 248, 245, 0.9) !important;
        backdrop-filter: blur(8px) !important;
        -webkit-backdrop-filter: blur(8px) !important;
    }

    .landing-header:not(.scrolled) .header-logo img {
        filter: none !important;
    }

    .landing-header:not(.scrolled) .mobile-nav-toggle {
        color: #0F172A !important;
        border-color: rgba(15, 23, 42, 0.25) !important;
    }
    
    .hero-content h1 {
        font-size: 30px !important;
        line-height: 1.22 !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
        margin-bottom: 14px !important;
        max-width: 88% !important;
        color: #0F172A !important;
        text-shadow: none !important;
        text-align: left !important;
        font-weight: 800 !important;
    }

    .hero-content h1 span {
        display: inline !important;
        word-break: break-word !important;
        color: #0D7A88 !important;
    }

    .hero-content .subhead {
        font-size: 14px !important;
        line-height: 1.55 !important;
        margin-bottom: 24px !important;
        padding-bottom: 6px !important;
        max-width: 84% !important;
        color: #334155 !important;
        text-shadow: none !important;
        text-align: left !important;
    }

    .form-row-2col {
        grid-template-columns: minmax(0, 1fr) !important;
        gap: 8px !important;
        width: 100% !important;
    }

    .hero-form-card {
        padding: 18px 14px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .trust-bar-container {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 12px !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .room-features-grid {
        grid-template-columns: minmax(0, 1fr) !important;
        gap: 10px !important;
        width: 100% !important;
    }

    .room-hero-visual {
        height: 240px !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .chiro-image-wrapper {
        height: 440px !important;
        min-height: 440px !important;
        width: 100% !important;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 27px !important;
    }

    .trust-bar-container {
        grid-template-columns: minmax(0, 1fr) !important;
        gap: 10px !important;
    }

    .room-hero-visual {
        height: 210px !important;
    }

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



/* FAQ Accordion Section */
.faq-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.faq-container {
    max-width: 840px;
    margin: 0 auto;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 36px;
}

.faq-item {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition-fast);
}

.faq-item:hover {
    border-color: rgba(80, 199, 213, 0.4);
}

.faq-item.active {
    background: var(--bg-white);
    border-color: var(--primary);
    box-shadow: 0 4px 16px rgba(80, 199, 213, 0.12);
}

.faq-question-btn {
    width: 100%;
    padding: 20px 24px;
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-family);
}

.faq-question-btn h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.4;
    margin: 0;
    transition: color 0.2s ease;
}

.faq-item.active .faq-question-btn h4 {
    color: var(--dark-accent);
}

.faq-chevron {
    width: 20px;
    height: 20px;
    stroke: var(--primary-dark);
    stroke-width: 2.2;
    fill: none;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
    stroke: var(--dark-accent);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s ease;
    padding: 0 24px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 24px 22px 24px;
}

.faq-answer p {
    font-size: 14.5px;
    color: var(--text-secondary);
    line-height: 1.65;
    margin: 0;
}
