/* =============================================
   CURRAMBINE FAMILY PRACTICE — style.css
   ============================================= */

/* ── VARIABLES ── */
:root {
    --cream:      #F2EFE7;
    --navy:       #1C2B3A;
    --green:      #2A7A5B;
    --green-dark: #235F47;
    --grey:       #6B7280;
    --border:     #DDD9CF;
    --white:      #FFFFFF;
}

/* ── BASE ── */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--cream);
    color: var(--navy);
}

/* ── NAVBAR ── */
.navbar {
    background: var(--cream);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    min-height: 70px;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    color: var(--navy);
}

.nav-logo {
    background: var(--navy);
    color: white;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.nav-link {
    color: var(--navy) !important;
    font-size: 15px;
}

.nav-link:hover {
    color: var(--green) !important;
}

.nav-link.active {
    color: var(--green) !important;
    font-weight: 600;
}

.nav-phone {
    text-decoration: none;
    color: var(--navy);
    font-size: 15px;
    font-weight: 500;
    white-space: nowrap;
}

.btn-book {
    background: var(--green);
    color: white;
    font-weight: 600;
    border-radius: 4px;
    white-space: nowrap;
}

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

.nav-mobile-phone {
    color: var(--navy);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 8px 0;
    border-top: 1px solid var(--border);
    margin-top: 4px;
    display: block;
}

/* ── DROPDOWN ── */
.dropdown-menu {
    border: 1px solid var(--border);
    border-radius: 4px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    padding: 8px 0;
}

.dropdown-item {
    font-size: 14px;
    color: var(--navy);
    padding: 10px 20px;
}

.dropdown-item:hover {
    background: var(--cream);
    color: var(--green);
}

.dropdown-divider {
    border-color: var(--border);
    margin: 4px 0;
}

/* ── HERO ── */
.hero {
    overflow: hidden;
}

.hero-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 64px 80px 80px;
    background: var(--cream);
    min-height: calc(100vh - 70px);
}

.hero-location {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 28px;
}

.hero-heading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(44px, 5vw, 68px);
    font-weight: 800;
    line-height: 1.08;
    color: var(--navy);
    margin-bottom: 24px;
}

.hero-accent {
    color: var(--green);
    font-style: italic;
}

.hero-sub {
    font-size: 17px;
    font-weight: 300;
    line-height: 1.7;
    color: var(--grey);
    max-width: 440px;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


.btn-primary-cfp {
    background: var(--navy);
    color: white;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 18px 28px;
    border-radius: 0;
    border: none;
    text-decoration: none;
}

.btn-primary-cfp:hover {
    background: #2c3e50;
    color: white;
}

.btn-outline-cfp {
    background: transparent;
    color: var(--navy);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 18px 28px;
    border-radius: 0;
    border: 1.5px solid var(--navy);
    text-decoration: none;
}

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

.hero-image-col {
    padding: 0;
    min-height: calc(100vh - 70px);
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-image-placeholder {
    width: 100%;
    height: 100%;
    min-height: calc(100vh - 70px);
    background: #C8C0B0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #6B6358;
    font-size: 14px;
}

.hero-image-placeholder i {
    font-size: 40px;
    opacity: 0.4;
}

/* ── STATS BAR ── */
.stats-bar {
    background: white;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 48px 0;
}

.stat-item {
    padding: 16px 24px;
    border-right: 1px solid var(--border);
}

.stat-item:last-child {
    border-right: none;
}

.stat-icon {
    font-size: 28px;
    color: var(--green);
    margin-bottom: 12px;
    display: block;
}

.stat-number {
    font-size: 32px;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 13px;
    color: var(--grey);
    line-height: 1.5;
}

/* ── SHARED SECTION STYLES ── */
.section-eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 14px;
}

.section-heading {
    font-size: clamp(32px, 3.5vw, 44px);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.15;
    margin-bottom: 0;
}

.section-sub {
    font-size: 15px;
    line-height: 1.8;
    color: var(--grey);
    margin-bottom: 0;
    border-left: 3px solid var(--green);
    padding-left: 20px;
}

/* ── SERVICES (HOMEPAGE) ── */
.services-section {
    padding: 96px 0;
    background: var(--cream);
    border-top: 1px solid var(--border);
}

.service-card {
    background: white;
    border: none;
    border-top: 3px solid transparent;
    padding: 40px 32px;
    height: 100%;
    transition: border-color 0.25s, box-shadow 0.25s;
}

.service-card:hover {
    border-top-color: var(--green);
    box-shadow: 0 8px 24px rgba(0,0,0,0.07);
}

.service-icon {
    font-size: 26px;
    color: var(--green);
    margin-bottom: 20px;
    display: block;
}

.service-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
    letter-spacing: 0.01em;
}

.service-desc {
    font-size: 14px;
    line-height: 1.75;
    color: var(--grey);
    margin-bottom: 0;
}

/* ── ABOUT (HOMEPAGE) ── */
.about-section {
    overflow: hidden;
}

.about-image-col {
    min-height: 560px;
    padding: 0;
}

.about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-image-placeholder {
    width: 100%;
    height: 100%;
    min-height: 560px;
    background: #C8C0B0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #6B6358;
    font-size: 14px;
}

.about-image-placeholder i {
    font-size: 40px;
    opacity: 0.4;
}

.about-text {
    background: var(--navy);
    padding: 80px 72px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.eyebrow-light {
    color: var(--green) !important;
}

.about-heading {
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 800;
    color: white;
    line-height: 1.2;
    margin-bottom: 28px;
}

.about-desc {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255,255,255,0.7);
    margin-bottom: 16px;
}

.btn-light-cfp {
    background: transparent;
    color: white;
    border: 1.5px solid rgba(255,255,255,0.4);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 14px 28px;
    border-radius: 0;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-block;
}

.btn-light-cfp:hover {
    background: white;
    color: var(--navy);
    border-color: white;
}

/* ── HOURS & LOCATION ── */
.hours-section {
    padding: 96px 0;
    background: var(--cream);
    border-top: 1px solid var(--border);
}

.hours-subtitle {
    font-size: 15px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 20px;
}

.hours-table {
    border-collapse: collapse;
}

.hours-row {
    border-bottom: 1px solid var(--border);
}

.hours-row td {
    padding: 14px 0;
    font-size: 15px;
    color: var(--navy);
}

.hours-row.today td {
    color: var(--green);
    font-weight: 600;
}

.today-badge {
    background: var(--green);
    color: white;
    font-size: 11px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 20px;
    margin-left: 8px;
    letter-spacing: 0.04em;
}

.hours-time {
    text-align: right;
}

.closed {
    color: var(--grey) !important;
    font-weight: 400 !important;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.contact-row:last-child {
    border-bottom: none;
}

.contact-icon {
    font-size: 18px;
    color: var(--green);
    margin-top: 2px;
    flex-shrink: 0;
}

.contact-row div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-row strong {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--navy);
}

.contact-row span {
    font-size: 14px;
    color: var(--grey);
    line-height: 1.6;
}

.contact-row a {
    color: var(--green);
    text-decoration: none;
}

.contact-row a:hover {
    text-decoration: underline;
}

.map-embed {
    height: 100%;
    min-height: 420px;
    border: 1px solid var(--border);
    overflow: hidden;
}

.map-embed iframe {
    display: block;
}

.map-embed-contact {
    height: 400px;
    border: 1px solid var(--border);
    overflow: hidden;
}

.map-embed-contact iframe {
    display: block;
    width: 100%;
    height: 100%;
}

/* ── FOOTER ── */
.footer {
    background: var(--navy);
    color: white;
    padding-top: 72px;
}

.footer-logo {
    background: var(--green);
    color: white;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.05em;
    flex-shrink: 0;
}

.footer-name {
    font-size: 15px;
    font-weight: 500;
    color: white;
}

.footer-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    line-height: 1.7;
    margin-bottom: 16px;
}

.footer-phone {
    text-decoration: none;
    color: white;
    font-size: 15px;
    font-weight: 500;
}

.footer-phone:hover {
    color: var(--green);
}

.footer-heading {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links li {
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    line-height: 1.5;
}

.footer-links a {
    text-decoration: none;
    color: rgba(255,255,255,0.65);
    transition: color 0.2s;
}

.footer-links a:hover {
    color: white;
}

.footer-top {
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom {
    padding: 24px 0;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255,255,255,0.35);
    margin: 0;
}

/* ── PAGE HEADER ── */
.page-header {
    padding: 64px 0 48px;
    background: var(--cream);
    border-bottom: 1px solid var(--border);
}

.page-heading {
    font-size: clamp(36px, 4vw, 52px);
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 0;
}

/* ── ABOUT PAGE ── */
.about-intro {
    overflow: hidden;
}

.about-intro-image {
    min-height: 480px;
    padding: 0;
}

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

.about-img-placeholder {
    width: 100%;
    height: 100%;
    min-height: 480px;
    background: #C8C0B0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #6B6358;
    font-size: 14px;
}

.about-img-placeholder i {
    font-size: 40px;
    opacity: 0.4;
}

.about-intro-text {
    background: var(--navy);
    padding: 80px 72px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-intro-text .section-eyebrow {
    color: var(--green);
}

.about-intro-text p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255,255,255,0.7);
    margin-bottom: 0;
}

.about-values {
    padding: 96px 0;
    background: var(--cream);
}

.about-values-heading {
    font-size: clamp(20px, 2vw, 26px);
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 12px;
    line-height: 1.2;
}

.about-values-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--grey);
    margin-bottom: 0;
}

.about-training {
    padding: 80px 0;
    background: white;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.about-training-heading {
    font-size: clamp(28px, 3vw, 38px);
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 20px;
}

.about-training-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--grey);
    max-width: 640px;
    margin: 0 auto;
}

.about-awards {
    padding: 96px 0;
    background: var(--cream);
}

.about-awards-heading {
    font-size: clamp(28px, 3vw, 38px);
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 12px;
}

.about-awards-sub {
    font-size: 15px;
    color: var(--grey);
    margin-bottom: 0;
}

.award-card {
    background: white;
    border: 1px solid var(--border);
    border-top: 3px solid var(--green);
    padding: 40px 32px;
    height: 100%;
    text-align: center;
}

.award-logo {
    width: 100%;
    max-width: 160px;
    height: 80px;
    object-fit: contain;
    margin: 0 auto 20px;
    display: block;
}

.award-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
    line-height: 1.4;
}

.award-desc {
    font-size: 13px;
    line-height: 1.7;
    color: var(--grey);
    margin-bottom: 0;
}

.about-cta {
    padding: 80px 0;
    background: var(--navy);
}

.about-cta-heading {
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 800;
    color: white;
    margin-bottom: 0;
}

/* ── VALUE CARDS ── */
.value-card {
    background: white;
    border: 1px solid var(--border);
    border-top: 3px solid var(--green);
    padding: 36px 28px;
    height: 100%;
}

.value-icon {
    font-size: 28px;
    color: var(--green);
    display: block;
    margin-bottom: 16px;
}

.about-values .value-icon {
    font-size: 40px;
}

/* ── SERVICES PAGE ── */
.services-nav {
    background: white;
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
    position: sticky;
    top: 70px;
    z-index: 99;
}

.services-nav-btn {
    background: var(--cream);
    color: var(--navy);
    border: 1px solid var(--border);
    font-size: 13px;
    font-weight: 500;
    padding: 8px 18px;
    border-radius: 20px;
    transition: all 0.2s;
}

.services-nav-btn:hover {
    background: var(--navy);
    color: white;
    border-color: var(--navy);
}

.services-category {
    padding: 80px 0;
    background: var(--cream);
}

.services-category-alt {
    background: white;
}

.service-list {
    padding-left: 18px;
    margin-top: 12px;
    margin-bottom: 0;
}

.service-list li {
    font-size: 13px;
    line-height: 1.7;
    color: var(--grey);
    margin-bottom: 4px;
}

/* ── OTHER SERVICES ── */
.other-service-card {
    background: white;
    border: 1px solid var(--border);
    padding: 24px 28px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.services-category-alt .other-service-card {
    background: var(--cream);
}

.other-service-icon {
    font-size: 22px;
    color: var(--green);
}

.other-service-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--navy);
}

.other-service-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--green);
    text-decoration: none;
}

.other-service-link:hover {
    color: var(--green-dark);
    text-decoration: underline;
}

.service-alert {
    background: #EBF5F0;
    border: 1px solid #B8DDD0;
    border-radius: 4px;
    color: var(--green-dark);
    font-size: 13px;
    font-weight: 500;
    padding: 10px 14px;
}

/* ── RESPONSIVE ── */
@media (max-width: 991px) {
    .hero-text {
        min-height: auto;
        padding: 56px 24px 40px;
    }

    .hero-image-col {
        min-height: 300px;
    }

    .hero-image-placeholder {
        min-height: 300px;
    }

    .stat-item {
        border-right: none;
        border-bottom: 1px solid var(--border);
        padding: 20px 0;
    }

    .stat-item:last-child {
        border-bottom: none;
    }

    .about-image-col {
        min-height: 300px;
    }

    .about-image-placeholder {
        min-height: 300px;
    }

    .about-text {
        padding: 56px 24px;
    }

    .about-intro-image {
        min-height: 300px;
    }

    .about-intro-text {
        padding: 56px 24px;
    }

    .about-values {
        padding: 64px 0;
    }

    .hours-section {
        padding: 64px 0;
    }

    .map-embed {
        min-height: 300px;
    }

    .map-embed-contact {
        height: 300px;
    }

    .page-header {
        padding: 48px 0 32px;
    }

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

    .footer-bottom .col-md-6:last-child {
        margin-top: 8px;
    }
}

/* ── TEAM PAGE ── */
.team-filter {
    background: white;
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
    position: sticky;
    top: 70px;
    z-index: 99;
}

.team-section {
    padding: 80px 0;
    background: var(--cream);
}

.team-category {
    margin-bottom: 64px;
}

.team-category:last-child {
    margin-bottom: 0;
}

.team-category-heading {
    font-size: clamp(22px, 2.5vw, 30px);
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--border);
}

.team-card {
    background: white;
    border: 1px solid var(--border);
    border-top: 3px solid transparent;
    height: 100%;
    transition: border-color 0.25s, box-shadow 0.25s;
    overflow: hidden;
}

.team-card:hover {
    border-top-color: var(--green);
    box-shadow: 0 8px 24px rgba(0,0,0,0.07);
}

.team-photo {
    width: 100%;
    height: 260px;
    object-fit: cover;
    object-position: top;
    display: block;
    filter: grayscale(20%);
    transition: filter 0.3s;
}

.team-card:hover .team-photo {
    filter: grayscale(0%);
}

.team-photo-placeholder {
    width: 100%;
    height: 260px;
    background: #C8C0B0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6B6358;
}

.team-photo-placeholder i {
    font-size: 64px;
    opacity: 0.3;
}

.team-info {
    padding: 20px 20px 16px;
}

.team-type {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 6px;
}

.team-name {
    font-size: 17px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
}

.team-quals {
    font-size: 12px;
    color: var(--grey);
    margin-bottom: 10px;
    font-style: italic;
}

.team-bio {
    font-size: 13px;
    line-height: 1.6;
    color: var(--grey);
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .team-section {
        padding: 56px 0;
    }

    .team-photo,
    .team-photo-placeholder {
        height: 200px;
    }
}

/* ── BIO MODAL ── */
.bio-modal-content {
    border: none;
    border-radius: 4px;
    overflow: hidden;
}

.bio-modal-header {
    background: var(--navy);
    border: none;
    padding: 12px 16px;
}

.bio-modal-photo-col {
    padding: 0;
}

.bio-modal-photo {
    width: 100%;
    height: 100%;
    min-height: 300px;
    object-fit: cover;
    object-position: top;
    display: block;
}

.bio-modal-text {
    padding: 36px 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bio-modal-name {
    font-size: 24px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 4px;
}

.bio-modal-bio {
    font-size: 14px;
    line-height: 1.8;
    color: var(--grey);
    margin-bottom: 0;
}

.team-bio-btn {
    background: transparent;
    color: var(--navy);
    border: 1.5px solid var(--border);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.05em;
    padding: 8px 0;
    border-radius: 0;
    transition: all 0.2s;
}

.team-bio-btn:hover {
    background: var(--navy);
    color: white;
    border-color: var(--navy);
}

@media (max-width: 767px) {
    .bio-modal-photo-col {
        display: none !important;
    }

    .bio-modal-text {
        padding: 24px;
    }
}

/* ── FEES PAGE ── */
.fees-section {
    padding: 80px 0;
    background: var(--cream);
}

.fees-heading {
    font-size: clamp(24px, 2.5vw, 32px);
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 16px;
}

.fees-intro {
    font-size: 15px;
    line-height: 1.8;
    color: var(--grey);
    margin-bottom: 28px;
}

.fees-subheading {
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--green);
    display: inline-block;
}

.fees-table {
    border-collapse: collapse;
    margin-bottom: 8px;
}

.fees-row {
    border-bottom: 1px solid var(--border);
}

.fees-row td {
    padding: 12px 0;
    font-size: 15px;
    color: var(--navy);
}

.fees-price {
    text-align: right;
    font-weight: 600;
    color: var(--green);
}

.fees-notice {
    background: #EBF5F0;
    border: 1px solid #B8DDD0;
    border-radius: 4px;
    padding: 16px 20px;
    font-size: 13px;
    line-height: 1.7;
    color: var(--green-dark);
}

.billing-card {
    background: white;
    border: 1px solid var(--border);
    border-left: 3px solid var(--green);
    padding: 20px 24px;
    margin-bottom: 16px;
}

.billing-icon {
    font-size: 20px;
    color: var(--green);
    margin-bottom: 10px;
    display: block;
}

.billing-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.billing-text {
    font-size: 13px;
    line-height: 1.7;
    color: var(--grey);
    margin-bottom: 0;
}

.cancellation-card {
    background: var(--navy);
    padding: 32px 40px;
    border-radius: 2px;
}

.cancellation-icon {
    font-size: 28px;
    color: var(--green);
    flex-shrink: 0;
    margin-top: 4px;
}

.cancellation-title {
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
}

.cancellation-text {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255,255,255,0.75);
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .fees-section {
        padding: 56px 0;
    }
}

/* ── CONTACT PAGE ── */
.contact-section {
    padding: 80px 0;
    background: var(--cream);
}

.contact-heading {
    font-size: clamp(22px, 2.5vw, 30px);
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 28px;
}

.contact-book-card {
    background: var(--navy);
    padding: 32px 36px;
}

.contact-book-title {
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
}

.contact-book-text {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255,255,255,0.7);
    margin-bottom: 24px;
}

.btn-contact-call {
    background: transparent;
    color: white;
    border: 1.5px solid rgba(255,255,255,0.4);
    font-size: 14px;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 0;
    transition: all 0.2s;
}

.btn-contact-call:hover {
    background: white;
    color: var(--navy);
    border-color: white;
}

.btn-contact-book {
    background: var(--green);
    color: white;
    font-size: 14px;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 0;
    border: none;
    transition: background 0.2s;
}

.btn-contact-book:hover {
    background: var(--green-dark);
    color: white;
}

@media (max-width: 991px) {
    .contact-section {
        padding: 56px 0;
    }
}

/* ── FAQ PAGE ── */
.faq-section {
    padding: 80px 0;
    background: var(--cream);
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--navy);
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: color 0.2s;
}

.faq-question:hover {
    color: var(--green);
}

.faq-icon {
    font-size: 14px;
    flex-shrink: 0;
    transition: transform 0.2s;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    font-size: 15px;
    line-height: 1.8;
    color: var(--grey);
    padding-bottom: 20px;
}

.faq-answer a {
    color: var(--green);
    text-decoration: none;
}

.faq-answer a:hover {
    text-decoration: underline;
}

/* ── WORK WITH US PAGES ── */
.work-intro {
    padding: 80px 0;
    background: var(--cream);
}

.work-form-section {
    padding: 80px 0;
    background: white;
    border-top: 1px solid var(--border);
}

.work-heading {
    font-size: clamp(24px, 2.5vw, 34px);
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 20px;
}

.work-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--grey);
    margin-bottom: 16px;
}

.work-text a {
    color: var(--green);
    text-decoration: none;
}

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

.work-highlights {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 28px;
}

.work-highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: var(--navy);
    font-weight: 500;
}

.work-highlight-icon {
    color: var(--green);
    font-size: 18px;
    flex-shrink: 0;
}

.work-image-placeholder {
    width: 100%;
    height: 400px;
    background: #C8C0B0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #6B6358;
    font-size: 14px;
}

.work-image-placeholder i {
    font-size: 40px;
    opacity: 0.4;
}

.work-form-label {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 8px;
    display: block;
}

.work-form-input {
    border: 1.5px solid var(--border);
    border-radius: 0;
    font-size: 15px;
    padding: 12px 16px;
    background: var(--cream);
    color: var(--navy);
    transition: border-color 0.2s;
}

.work-form-input:focus {
    border-color: var(--green);
    box-shadow: none;
    background: white;
}

.work-form-check {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px;
    background: var(--cream);
    border: 1.5px solid var(--border);
}

.work-form-check-label {
    font-size: 15px;
    font-weight: 500;
    color: var(--navy);
    margin: 0;
}

.work-form-error {
    font-size: 13px;
    color: #dc3545;
    margin-top: 6px;
}

.work-form-notice {
    background: #EBF5F0;
    border: 1px solid #B8DDD0;
    border-radius: 4px;
    padding: 14px 18px;
    font-size: 13px;
    color: var(--green-dark);
}

.work-form-notice a {
    color: var(--green-dark);
    font-weight: 600;
    text-decoration: none;
}

.work-form-notice a:hover {
    text-decoration: underline;
}

@media (max-width: 991px) {
    .work-intro {
        padding: 56px 0;
    }

    .work-form-section {
        padding: 56px 0;
    }

    .work-image-placeholder {
        height: 280px;
        margin-top: 32px;
    }
}

/* ── VACANCY ALERT ── */
.work-vacancy-alert {
    background: var(--green);
    color: white;
    padding: 14px 20px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 2px;
    margin-bottom: 8px;
}

.work-direct-contact {
    border-top: 1px solid var(--border);
    padding-top: 20px;
    text-align: center;
}

.work-page-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

@media (max-width: 991px) {
    .work-page-img {
        height: 280px;
        margin-top: 32px;
    }
}

/* ============================================================
   NEWS PAGE
   Cards displaying practice announcements and updates
   ============================================================ */

.news-card {
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: box-shadow 0.2s ease;
}

.news-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.news-date {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.news-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.news-content {
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 0;
}

/* ============================================================
   PAGINATION
   Used on news page for multi-page navigation
   ============================================================ */

.pagination .page-link {
    color: var(--primary);
    border-color: var(--border);
}

.pagination .page-item.active .page-link {
    background-color: var(--primary);
    border-color: var(--primary);
    color: white;
}

.pagination .page-link:hover {
    background-color: var(--primary-light);
    color: var(--primary);
    border-color: var(--border);
}