/* Fonts Setup */
@font-face {
    font-family: 'Juliette';
    src: url('../fonts/Juliette Font/Juliette/juliette_regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Messina Sans';
    src: url('../fonts/messinafont/MessinaSans-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Messina Sans';
    src: url('../fonts/messinafont/MessinaSans-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Messina Sans';
    src: url('../fonts/messinafont/MessinaSans-SemiBold.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Messina Sans';
    src: url('../fonts/messinafont/MessinaSans-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Messina Sans';
    src: url('../fonts/messinafont/MessinaSans-Black.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
}

:root {
    --primary-green: #2A371E;
    /* VERDANT */
    --dark-green: #2A371E;
    /* VERDANT */
    --accent-orange: #C25C2A;
    /* REVIVE */
    --renewal-green: #606C39;
    /* RENEWAL GREEN */
    --deep-brown: #381B1A;
    /* DEEP COGNITION */
    /* Fallback */
    --accent-gradient: linear-gradient(135deg, #2A371E 0%, #C25C2A 100%);
    --light-beige: #EEECE5;
    /* SERENITY */
    --text-dark: #1a1a1a;
    /* Near black for light backgrounds */
    --text-light: #ffffff;
    /* SERENITY */
    --serif-font: 'Juliette', serif;
    --sans-font: 'Messina Sans', sans-serif;
}

/* Override text-white-50 and text-muted to be pure white as requested */
.text-white-50,
.text-white-75,
.opacity-50,
.opacity-75,
.text-muted,
.bg-dark-green .text-muted,
section .text-muted {
    color: #ffffff !important;
    opacity: 1 !important;
}

body,
html {
    font-family: var(--sans-font);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--serif-font);
}

p {
    line-height: 1.6 !important;
}

.serif-font {
    font-family: var(--serif-font);
}

.ls-1 {
    letter-spacing: 1px;
}

.ls-2 {
    letter-spacing: 2px;
}

/* Navigation */
.navbar {
    transition: all 0.3s ease;
    padding-top: 2rem;
    padding-bottom: 2rem;
    background: transparent;
}

.navbar.scrolled {
    background: var(--dark-green);
    padding-top: 1rem;
    padding-bottom: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    color: #ffffff !important;
}

.navbar-brand .leaf-icon {
    color: #ffffff !important;
}

.navbar-brand .brand-top,
.navbar-brand .brand-bottom,
.navbar-brand .opacity-50 {
    color: #ffffff !important;
    opacity: 1 !important;
}

/* Active Nav State */
.navbar .nav-item .nav-link.active-home,
.navbar .nav-item .nav-link.active {
    background-color: #606C39 !important;
    /* RENEWAL GREEN match */
    color: #ffffff !important;
    border-radius: 50px;
    padding: 0.4rem 1.25rem !important;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    opacity: 1;
}

/* Default Nav Link Style */
.nav-link {
    color: #ffffff !important;
    font-size: 0.65rem;
    letter-spacing: 1.5px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
    opacity: 0.9;
}

.nav-link:hover {
    opacity: 1;
}

.condition-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.btn-nav-contact {
    background-color: var(--accent-orange) !important;
    color: #ffffff !important;
    border-radius: 50px;
    padding: 0.75rem 1.5rem !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: none;
    opacity: 1 !important;
    font-size: 0.65rem !important;
}

.btn-nav-contact:hover {
    background-color: #a0491d !important;
    transform: translateY(-2px);
}

/* Hero Section */
#hero {
    color: #a7f3d0;
    height: 70vh;
    min-height: 200px;
    background: url('../images/image copy 17.png') center center/cover no-repeat;
    position: relative;
    border-bottom-left-radius: 60px;
    border-bottom-right-radius: 60px;
    overflow: hidden;
}



.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 200px;
    max-width: 500px;
    margin: 0 auto;
}

.hero-title {
    font-family: var(--serif-font);
    font-weight: 400;
    line-height: 1.1;
    font-size: 6rem;
    /* Larger hero text */
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Colors & Backgrounds */
.bg-dark-green {
    background-color: var(--primary-green);
}

/* Specific Welcome Section tweaks */
#welcome hr {
    margin-top: 1.5rem;
    margin-bottom: 3rem;
    opacity: 1;
    border-top: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-light-beige {
    background-color: #f0ebe3;
    border: 1px solid #f0ebe3;
    color: #c25e28;
    /* Rust/Orange text color from reference */
    transition: all 0.3s ease;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    padding: 1rem 2rem;
}

.btn-light-beige:hover {
    background-color: #e6e0d6;
    border-color: #e6e0d6;
    color: #a0491d;
}

.btn-outline-light {
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: white;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    padding: 1rem 2rem;
    background: transparent;
}

.btn-outline-light:hover {
    border-color: white;
    background: white;
    color: var(--dark-green);
}

/* Treatment Options Section */
#treatment {
    /* Wavy texture background from user */
    background: url('../images/BG-TreatmentTexture.png') center/cover no-repeat;
    position: relative;
    padding-top: 5rem;
    padding-bottom: 5rem;
}

#treatment h2 {
    font-size: 3.5rem;
    color: #1a1a1a;
    /* Dark almost black */
    margin-bottom: 0.5rem;
}

#treatment .text-orange {
    color: #c25e28 !important;
    letter-spacing: 2px;
    font-weight: 700;
    font-size: 0.75rem;
}

/* Treatment Cards - New Design */
.treatment-card {
    background-size: cover;
    background-position: center;
    border-radius: 0px;
    /* No radius since g-0 grid */
    padding: 3rem 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    transition: transform 0.3s ease;
    border: none;
    position: relative;
    z-index: 1;
}

.treatment-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    /* Dark overlay */
    z-index: -1;
    transition: background 0.3s ease;
}

.treatment-card:hover .treatment-overlay {
    background: rgba(0, 0, 0, 0.6);
}

.treatment-card:hover {
    transform: none;
    /* No lift in grid */
    z-index: 2;
}

/* Content Styling */
.card-overlay-light {
    background: transparent !important;
    padding: 0 !important;
    height: auto !important;
}

.treatment-card h3 {
    font-family: var(--serif-font);
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.treatment-card p {
    font-family: var(--sans-font);
    font-size: 0.9rem;
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 2rem;
    padding: 0 0.5rem;
}

.treatment-card .btn {
    border: 1px solid rgba(255, 255, 255, 0.6);
    color: white;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-transform: uppercase;
}

.treatment-card .btn:hover {
    background-color: #fff;
    color: #000;
}

/* Icons */
.leaf-icon {
    color: #d97706 !important;
}

/* Utilities */
.text-orange {
    color: var(--accent-orange) !important;
}

.x-small {
    font-size: 0.75rem;
}

/* Buttons */
.btn-orange {
    background: #c25e28;
    /* Adjust to match reference more closely - darker orange/brown */
    border: none;
    transition: background-color 0.3s ease;
}

.btn-orange:hover {
    background-color: #a0491d;
}

/* Forms */
.form-control {
    font-size: 0.9rem;
}

.form-control:focus {
    box-shadow: 0 0 0 0.25rem rgba(194, 94, 40, 0.25);
    border-color: #c25e28;
}

/* Conditions */
.condition-card {
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.condition-card:hover {
    transform: translateY(-5px);
}

/* Footer link hover */
.hover-white:hover {
    color: white !important;
    text-decoration: underline !important;
}

/* Contact Section Override */
#contact {
    background: linear-gradient(180deg, #1a2f20 0%, #1a2f20 60%, #c25e28 100%), url('../images/BG-hero.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    padding-bottom: 0;
}

#contact p.text-uppercase {
    color: #e3d3b6 !important;
}

/* Form Styles */
#contact .bg-light-beige {
    background-color: #fcfbf9 !important;
    border-radius: 2rem !important;
    padding: 3rem !important;
}

#contact form label {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: #333;
}

#contact form .form-control {
    border-radius: 50px !important;
    padding: 0.8rem 1.5rem;
    background-color: #fff;
    border: 1px solid #e0e0e0;
}

#contact form textarea.form-control {
    border-radius: 1.5rem !important;
}

#contact form .btn-orange {
    width: 100%;
    padding: 1rem;
    font-size: 0.8rem;
    letter-spacing: 2px;
    background-color: #c25e28;
}

/* Footer Styles */
footer {
    background-color: #27392a !important;
    border-top: none !important;
}

footer h6 {
    font-size: 0.7rem;
    letter-spacing: 2px;
}

footer ul li {
    font-size: 0.8rem;
    line-height: 1.8;
}

/* Meet Harmony Section Redesign */
#meet-harmony {
    position: relative;
    background-color: #e6e2dd;
    overflow: hidden;
}

.meet-harmony-wave {
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 100%;
    height: 100%;
    background: url('../images/AbstractWavyLines-1-Verdant.png') no-repeat;
    background-size: cover;
    opacity: 0.6;
    z-index: 0;
    pointer-events: none;
    transform: rotate(-10deg) scale(1.2);
}

.meet-harmony-card {
    border-radius: 40px;
    background-color: #ffffff;
    padding: 4rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 1;
}

.bg-gradient-green-orange {
    background: linear-gradient(135deg, #1a2f20 0%, #2e4a33 50%, #c25e28 100%);
    position: relative;
    overflow: hidden;
}

.meet-harmony-card h2 {
    font-size: 3rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.meet-harmony-card .text-rust {
    color: #c25e28;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 2px;
}

.meet-harmony-card p {
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.8;
}

.btn-dark-brown {
    background-color: #3e2b26;
    color: white;
    border: none;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
}

.btn-dark-brown:hover {
    background-color: #2a1d1a;
    color: white;
}

.meet-harmony-img {
    border-radius: 30px;
    height: 100%;
    min-height: 450px;
    object-fit: cover;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Conditions Grid */
#conditions {
    background-color: #f7f6f2;
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.conditions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 992px) {
    .conditions-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.condition-item {
    border-right: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 4rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    cursor: pointer;
    min-height: 250px;
}

.condition-item:hover {
    background-color: #e8e6df;
}

@media (min-width: 992px) {
    .condition-item:nth-child(4n) {
        border-right: none;
    }

    .condition-item:nth-last-child(-n+4) {
        border-bottom: none;
    }
}

.condition-icon {
    width: 150px;
    height: 150px;
    margin-bottom: 2rem;
    color: #c25e28;
}

.condition-text {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #1a1a1a;
    margin-top: 1rem;
}

.condition-icon svg {
    width: 100%;
    height: 100%;
    stroke: #c25e28;
    stroke-width: 1.5;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

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

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

/* Team Section Texture */
#team-section::before {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 100%;
    height: 100%;
    background: url('../images/AbstractWavyLines-1-Verdant.png') no-repeat;
    background-size: cover;
    opacity: 0.2;
    pointer-events: none;
    transform: rotate(-10deg) scale(1.2);
    z-index: 0;
}

#team-section .container {
    position: relative;
    z-index: 1;
}

#team-section .img-fluid {
    height: 250px;
    object-fit: cover;
    width: 100%;
}

/* -------------------------------------------------------------------------
   GLOBAL TYPOGRAPHY OVERRIDES
   ------------------------------------------------------------------------- */

h1,
.display-1,
.display-2,
.display-3,
.display-4,
.display-5,
.display-6,
.hero-title,
.meet-harmony-card h2 {
    font-family: var(--serif-font) !important;
    font-weight: normal !important;
    font-size: 30pt !important;
    text-transform: capitalize !important;
    letter-spacing: -1px !important;
}

h3,
h4,
h5,
h6,
.h2,
.h3,
.h4,
.h5,
.h6 {
    font-family: var(--serif-font) !important;
    font-weight: normal !important;
    font-size: 16pt !important;
    line-height: 20pt !important;
    text-transform: none !important;
    letter-spacing: -0.5px !important;
}

p,
.fw-light,
.text-muted,
.text-white-50,
li,
.small,
.fs-5 {
    font-family: var(--sans-font) !important;
    font-weight: 300 !important;
    font-size: 11pt !important;
    line-height: 13pt !important;
    text-transform: none !important;
    letter-spacing: 0px !important;
}

.text-uppercase.small,
.ls-2,
.text-orange.small,
.text-rust,
footer h6,
.condition-text,
.text-orange {
    font-family: var(--sans-font) !important;
    font-weight: 700 !important;
    font-size: 10pt !important;
    line-height: 12pt !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
}

.btn,
.btn-nav-contact,
.nav-link,
button {
    font-family: var(--sans-font) !important;
    font-weight: 700 !important;
    font-size: 8pt !important;
    line-height: 10pt !important;
    text-transform: uppercase !important;
    letter-spacing: 0px !important;
}

/* FAQ accordion question buttons — override global .btn uppercase rule */
.faq-btn {
    text-transform: none !important;
    font-size: 0.9rem !important;
    line-height: 1.4 !important;
    letter-spacing: 0.2px !important;
    font-weight: 700 !important;
}

/* Responsive adjustments */

/* ===== TABLET & BELOW (max-width: 991px) ===== */
@media (max-width: 991.98px) {

    /* --- Navbar Mobile --- */
    .navbar {
        background: var(--dark-green) !important;
        padding-top: 0.75rem;
        padding-bottom: 0.75rem;
    }

    .navbar .container-fluid {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    .navbar-brand img {
        max-width: 170px !important;
    }

    .navbar-toggler {
        border: 2px solid rgba(255, 255, 255, 0.7);
        background-color: rgba(255, 255, 255, 0.95);
        padding: 0.4rem 0.6rem;
        border-radius: 8px;
    }

    .navbar-toggler:focus {
        box-shadow: none;
    }

    .navbar-toggler-icon {
        width: 1.2em;
        height: 1.2em;
    }

    /* Mobile Menu Dropdown */
    .navbar-collapse {
        background: var(--dark-green);
        padding: 1rem 0;
        margin-top: 0.5rem;
        border-radius: 0 0 12px 12px;
    }

    .navbar-nav {
        align-items: flex-start !important;
        gap: 0 !important;
    }

    .navbar-nav .nav-item {
        width: 100%;
    }

    .navbar-nav .nav-link {
        padding: 0.75rem 1rem !important;
        font-size: 0.75rem !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .navbar-nav .nav-link.active-home,
    .navbar-nav .nav-link.active {
        border-radius: 0 !important;
        padding: 0.75rem 1rem !important;
        background-color: rgba(96, 108, 57, 0.4) !important;
    }

    .navbar-nav .dropdown-menu {
        background-color: rgba(42, 55, 30, 0.9) !important;
        border: none !important;
        padding-left: 1rem;
    }

    .navbar-nav .dropdown-item {
        color: rgba(255, 255, 255, 0.8) !important;
        font-size: 0.75rem;
    }

    .navbar-nav .dropdown-item:hover {
        background-color: rgba(255, 255, 255, 0.1) !important;
        color: #fff !important;
    }

    /* --- Hero Sections --- */
    .hero-title {
        font-size: 2.5rem !important;
    }

    section[style*="min-height: 50vh"],
    section[style*="min-height: 55vh"] {
        min-height: 40vh !important;
        padding-top: 120px !important;
        padding-bottom: 50px !important;
    }

    /* --- Content Sections --- */
    .container-fluid .row.g-0>.col-lg-6 {
        min-height: 400px !important;
    }

    /* --- Treatment Cards --- */
    .treatment-card {
        height: auto;
        min-height: 350px;
    }

    /* --- Footer Responsive --- */
    footer .row>div {
        margin-bottom: 1.5rem;
    }

    footer .col-lg-4 {
        text-align: left;
    }

    /* --- Buttons --- */
    .btn-light-beige,
    .btn-outline-light,
    .btn-dark-brown {
        padding: 0.75rem 1.5rem;
        font-size: 0.7rem !important;
    }

    /* --- Two-column layouts stack on tablet --- */
    .row.g-5>.col-lg-5,
    .row.g-5>.col-lg-7 {
        width: 100%;
    }
}

/* ===== MOBILE (max-width: 767px) ===== */
@media (max-width: 767.98px) {

    /* --- General Spacing --- */
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .py-5 {
        padding-top: 2.5rem !important;
        padding-bottom: 2.5rem !important;
    }

    .p-5 {
        padding: 1.5rem !important;
    }

    .px-5 {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    /* --- Hero Sections Mobile --- */
    .hero-title {
        font-size: 2rem !important;
    }

    #hero {
        height: 50vh;
        min-height: 300px;
        border-bottom-left-radius: 30px;
        border-bottom-right-radius: 30px;
    }

    .hero-content {
        padding-top: 140px;
    }

    /* --- Full-width rows on mobile --- */
    .row.g-0>.col-lg-6,
    .container-fluid .row.g-0>.col-lg-6 {
        min-height: 300px !important;
    }

    /* --- Condition Grid Mobile --- */
    .conditions-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .condition-item {
        padding: 2rem 1rem;
        min-height: 180px;
    }

    .condition-icon {
        width: 120px;
        height: 120px;
    }

    /* --- Treatment Cards Mobile --- */
    .treatment-card {
        min-height: 300px;
        padding: 2rem 1.5rem;
    }

    /* --- Meet Harmony Section --- */
    .meet-harmony-card {
        padding: 2rem !important;
        border-radius: 25px !important;
    }

    .meet-harmony-img {
        min-height: 300px;
        border-radius: 20px;
    }

    /* --- Form Cards Mobile --- */
    .rounded-5[style*="background-color: #f7f5f0"] {
        padding: 1.5rem !important;
    }

    .form-control.rounded-pill {
        padding: 0.5rem 0.75rem !important;
    }

    /* --- Footer Mobile --- */
    footer {
        text-align: left;
    }

    footer .col-lg-2,
    footer .col-lg-3,
    footer .col-lg-4 {
        margin-bottom: 2rem;
    }

    footer .offset-lg-1 {
        margin-left: 0;
    }

    /* --- Cards with big border radius --- */
    div[style*="border-radius: 40px"],
    div[style*="border-radius: 50px"] {
        border-radius: 20px !important;
    }

    section[style*="border-bottom-left-radius: 50px"] {
        border-bottom-left-radius: 25px !important;
        border-bottom-right-radius: 25px !important;
    }

    /* --- CTA Buttons Full Width on Mobile --- */
    .btn.rounded-pill[style*="max-width: 450px"] {
        max-width: 100% !important;
    }
}

/* ===== SMALL MOBILE (max-width: 575px) ===== */
@media (max-width: 575.98px) {

    /* --- Typography --- */
    h1,
    h2,
    .display-1,
    .display-2,
    .display-3,
    .display-4,
    .display-5,
    .display-6,
    .hero-title,
    .meet-harmony-card h2 {
        font-size: 1.8rem !important;
        line-height: 1.2 !important;
        word-wrap: break-word !important;
    }

    h3,
    h4,
    h5,
    h6,
    .h2,
    .h3,
    .h4,
    .h5,
    .h6 {
        font-size: 1.3rem !important;
        line-height: 1.3 !important;
    }

    /* --- Navbar Small --- */
    .navbar-brand img {
        max-width: 150px !important;
    }

    /* --- Hero Small --- */
    #hero {
        height: 45vh;
        min-height: 250px;
        border-bottom-left-radius: 20px;
        border-bottom-right-radius: 20px;
    }

    .hero-content {
        padding-top: 120px;
        max-width: 100%;
    }

    /* --- Buttons Small --- */
    .btn,
    .btn-dark-brown,
    .btn-light-beige,
    .btn-outline-light {
        font-size: 0.65rem !important;
        padding: 0.7rem 1.2rem !important;
    }

    /* CTA buttons */
    .btn.rounded-pill.text-white.fw-bold.text-uppercase {
        font-size: 0.65rem !important;
        padding: 0.8rem 1.5rem !important;
    }

    /* --- Psychiatry cards --- */
    div[style*="border-radius: 40px"][class*="bg-white"] {
        padding: 1.5rem !important;
        border-radius: 15px !important;
    }

    /* --- Condition grid 2-col on small --- */
    .conditions-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .condition-item {
        padding: 1.5rem 0.75rem;
        min-height: 150px;
    }

    .condition-icon {
        width: 100px;
        height: 100px;
        margin-bottom: 1rem;
    }

    /* --- Footer Small ---
    footer .d-flex.justify-content-between {
        flex-direction: column;
        gap: 0.25rem;
    } */

    /* --- Team section images --- */
    #team-section .img-fluid {
        height: 200px;
    }

    /* --- Signs & Symptoms cards --- */
    .d-flex.align-items-start.gap-3.p-4 {
        padding: 1rem !important;
        flex-direction: column;
        text-align: center;
        align-items: center !important;
    }

    /* --- Referring Providers form --- */
    .rounded-5.shadow-sm[style*="background-color: #f7f5f0"] {
        padding: 1.25rem !important;
        border-radius: 20px !important;
    }

    /* --- Video embeds --- */
    iframe[src*="youtube"] {
        height: 200px !important;
    }
}

/* ===== LINK CURSOR ===== */
a {
    cursor: pointer !important;
}

/* ===== HR SCROLL ANIMATION ===== */
hr {
    transform-origin: center;
    transition: transform 0.9s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.65s ease;
}