/*
Theme Name: MHCP Bold Trust
Description: MHCP alternative-domain theme, Bold Trust variant. Portable across any MHCP Alternative Web/Domain.
Author: MHCP Team
Template: MHCP
Version: 1.0.0
Text Domain: mhcp
*/

/* ============================================
   DESIGN TOKEN OVERRIDES
   ============================================ */
:root {
    --color-primary: #1A3A5C;
    --color-primary-hover: #0f2540;
    --color-primary-light: #5B9BD5;
    --color-primary-alpha: rgba(26, 58, 92, 0.1);
    --color-accent: #1B4F8A;
    --color-accent-bright: #5B9BD5;
}

/* ============================================
   STICKY SITE HEADER
   Parent CSS has no .is-sticky rule; this adds full sticky behaviour.
   .main-nav has background: white in parent — must override to transparent
   so the header background shows through.
   ============================================ */
.site-header {
    position: sticky !important;
    top: 0 !important;
    z-index: 300 !important;
    background-color: #1A3A5C !important;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.35) !important;
}

/* Remove the parent's white nav bar background */
.site-header .main-nav {
    background-color: transparent !important;
    border-bottom: none !important;
}

/* Nav links: parent uses var(--color-primary) = dark navy = invisible on dark */
.site-header .nav-menu-link {
    color: rgba(255, 255, 255, 0.9) !important;
}

.site-header .nav-menu-link:hover {
    color: #5B9BD5 !important;
}

/* Phone link has inline style="color: var(--color-primary)" — needs !important */
.site-header .nav-menu-link[href^="tel"] {
    color: #5B9BD5 !important;
}

/* Mobile menu toggle icon */
.site-header .mobile-menu-toggle {
    color: white !important;
}

/* Nav action buttons (WhatsApp, language) */
.site-header .nav-action-btn {
    color: rgba(255, 255, 255, 0.85) !important;
}

.site-header .nav-action-btn:hover {
    color: #5B9BD5 !important;
}

/* Logo keeps its image, but any text fallback should be white */
.site-header .nav-logo a {
    color: white !important;
}

/* ============================================
   HERO SLIDER — SPLIT LAYOUT
   ============================================ */
.hero-banner-slide {
    display: none;
    position: relative;
    width: 100%;
    height: calc(100vh - 90px);
    min-height: 600px;
    max-height: 1400px;
}

.hero-banner-slide.active {
    display: flex;
    flex-direction: row;
}

/* Left text panel — 40% */
.hero-slide-overlay {
    position: relative;
    width: 40%;
    height: 100%;
    background: #1A3A5C;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    pointer-events: auto;
}

.hero-slide-content {
    color: white;
    padding: 3rem 2.5rem;
    max-width: 100%;
    text-align: left;
    transform: none;
}

.hero-slide-content h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: white;
    line-height: 1.12;
    margin-bottom: 1rem;
    text-shadow: none;
}

.hero-slide-content p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    opacity: 0.92;
    line-height: 1.6;
    text-shadow: none;
    color: rgba(255, 255, 255, 0.9);
}

.hero-slide-content .btn {
    background: white;
    color: #1A3A5C;
    border-radius: 6px;
    pointer-events: auto;
    font-weight: 600;
}

.hero-slide-content .btn:hover {
    background: #f0f4f8;
    transform: translateX(5px);
    box-shadow: none;
}

/* Right image panel — 60% */
.hero-slide-bg {
    position: relative;
    width: 60%;
    height: 100%;
    flex-shrink: 0;
    transition: none;
}

.hero-slide-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-banner-slide:hover .hero-slide-bg {
    transform: none;
}

/* Arrows */
.hero-prev,
.hero-next {
    border-radius: 50%;
}

.hero-prev i,
.hero-next i {
    color: #1A3A5C;
}

/* Dots */
.banner-dot {
    border-radius: 50%;
}

.banner-dot.active {
    border-radius: 999px;
    background-color: #5B9BD5;
}

/* Mobile: stack image-top, text-below */
@media (max-width: 767px) {
    .hero-banner-slide {
        height: auto !important;
        min-height: auto;
        max-height: none;
    }

    .hero-banner-slide.active {
        flex-direction: column;
    }

    .hero-slide-bg {
        width: 100%;
        height: 280px;
        order: 1;
    }

    .hero-slide-overlay {
        width: 100%;
        order: 2;
        background: #1A3A5C;
    }

    .hero-slide-content {
        padding: 1.5rem 1.25rem;
    }

    .hero-slide-content h2 {
        font-size: clamp(1.3rem, 5vw, 1.7rem);
    }

    .hero-slide-content p {
        display: block;
        font-size: 0.9rem;
    }

    .hero-slide-content .btn {
        min-height: 44px;
        width: auto;
        padding: 0.72rem 1.5rem;
        font-size: 0.85rem;
    }

    .hero-prev,
    .hero-next {
        display: none;
    }
}

/* ============================================
   QUICK ACTIONS — NAVY BG, WHITE CARDS
   ============================================ */
.user-panel {
    background: #1A3A5C;
    backdrop-filter: none;
    border: none;
    border-radius: 0;
    box-shadow: none;
}

.user-panel-header {
    border-color: rgba(255, 255, 255, 0.15);
}

.user-panel-header p {
    color: rgba(255, 255, 255, 0.7);
}

.user-panel-header a {
    color: white;
}

.user-panel-header a i {
    color: #5B9BD5;
}

.quick-action-btn {
    background: white;
    border: none;
    border-left: 4px solid #5B9BD5;
    border-radius: 0;
    padding: 1.5rem;
}

.quick-action-btn:hover {
    background: #F4F8FC;
}

.quick-action-btn:nth-child(odd) {
    border-left: 4px solid #5B9BD5;
}

.quick-action-btn:nth-child(1),
.quick-action-btn:nth-child(2) {
    border-top: none;
}

.quick-action-btn .quick-action-icon i {
    color: #1B4F8A !important;
}

.quick-action-btn .quick-action-label {
    color: #1A3A5C !important;
}

@media (min-width: 1024px) {
    .quick-action-btn {
        border-top: none;
        border-left: 4px solid #5B9BD5;
    }

    .quick-action-btn:first-child {
        border-left: 4px solid #5B9BD5;
    }
}

/* ============================================
   INTRO MHCP
   ============================================ */
.mhcp-intro-section {
    background-color: white;
}

.mhcp-intro-label {
    color: #1A3A5C;
    border-bottom-color: #1A3A5C;
}

.mhcp-intro-title {
    color: #1A3A5C !important;
}

.mhcp-intro-image.mhcp-intro-slider-container {
    border-radius: 12px !important;
    border: 3px solid #5B9BD5;
    box-shadow: none !important;
}

.intro-slide-img {
    border-radius: 10px !important;
}

.mhcp-intro-badge {
    border-radius: 8px !important;
}

.mhcp-intro-badge-icon {
    border-radius: 50% !important;
    background: #1A3A5C !important;
}

.mhcp-intro-below-image {
    border-radius: 8px !important;
    border-left-color: #1A3A5C;
}

.mhcp-intro-feat-icon {
    color: #1A3A5C;
}

.intro-slider-nav {
    border-radius: 8px !important;
}

.intro-slider-dot {
    border-radius: 50% !important;
}

.intro-slider-dot.active {
    border-radius: 999px !important;
    background: #5B9BD5;
}

.mhcp-intro-highlight-text {
    color: #1A3A5C !important;
}

/* ============================================
   INTERNATIONAL STANDARDS — NAVY BG
   ============================================ */
.intl-standards-section {
    padding: var(--spacing-16) 0 var(--spacing-8) 0;
    background: #1A3A5C;
    border: none;
    position: relative;
    overflow: hidden;
}

.intl-standards-header {
    margin: 0 auto var(--spacing-12) auto;
}

.intl-standards-section .mhcp-section-header__eyebrow {
    background: rgba(255, 255, 255, 0.12);
    color: white;
}

.intl-standards-section .mhcp-section-header__title {
    color: white;
}

.intl-standards-section .mhcp-section-header__subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.intl-standards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-6);
}

@media (min-width: 1024px) {
    .intl-standards-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: var(--spacing-8);
    }
}

.intl-standard-card {
    background: white;
    border-radius: 10px;
    padding: var(--spacing-8) var(--spacing-6);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    border: none;
    text-align: center;
    transition: box-shadow var(--transition-normal), transform var(--transition-normal);
}

.intl-standard-card:hover {
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
    transform: translateY(-4px);
}

.intl-standard-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(26, 58, 92, 0.1);
    color: #1A3A5C;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-xl);
    margin: 0 auto var(--spacing-4) auto;
    transition: transform var(--transition-slow);
}

.intl-standard-card:hover .intl-standard-card-icon {
    transform: scale(1.1);
}

.intl-standard-card h3 {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-bold);
    color: #1A3A5C;
    margin: 0 0 var(--spacing-2) 0;
}

.intl-standard-card p {
    font-size: var(--font-size-sm);
    color: var(--color-gray-600);
    margin: 0;
    line-height: var(--line-height-relaxed);
}

@media (max-width: 767px) {
    .intl-standards-section {
        padding: 2.75rem 0;
    }

    .intl-standards-header {
        margin-bottom: 1.25rem;
    }

    .intl-standards-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.7rem;
    }

    .intl-standard-card {
        padding: 0.95rem 0.8rem;
        border-radius: 8px;
    }

    .intl-standard-card-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 0.7rem;
        font-size: 1rem;
    }

    .intl-standard-card h3 {
        font-size: 0.9rem;
        line-height: 1.2;
        margin-bottom: 0.35rem;
    }

    .intl-standard-card p {
        font-size: 0.78rem;
        line-height: 1.42;
    }
}

/* ============================================
   MEDICAL SERVICE — 3-COLUMN CARD GRID
   ============================================ */
.medical-service-section {
    background: #ffffff !important;
    border-top: 6px solid #5B9BD5 !important;
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
}

.medical-service-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto var(--spacing-10);
}

.medical-service-section .section-eyebrow {
    display: inline-block;
    padding: 0.35rem 1rem;
    background: #1A3A5C;
    color: white;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 4px;
    margin-bottom: 0.75rem;
}

.medical-service-section .section-title {
    color: #1A3A5C;
}

.medical-service-section .section-subtitle {
    color: #64748b;
}

.bt-service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.bt-service-card {
    background: white;
    border-radius: 10px;
    border-top: 4px solid #1A3A5C;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(26, 58, 92, 0.08);
    transition: box-shadow var(--transition-normal), transform var(--transition-normal);
}

.bt-service-card:hover {
    box-shadow: 0 6px 24px rgba(26, 58, 92, 0.14);
    transform: translateY(-3px);
}

.bt-service-card-image {
    position: relative;
    padding-bottom: 56.25%;
    overflow: hidden;
}

.bt-service-card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bt-service-card-body {
    padding: 1.5rem;
}

.bt-service-card-body > .fas {
    font-size: 1.75rem;
    color: #1A3A5C;
    display: block;
    margin-bottom: 0.75rem;
}

.bt-service-card-body h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1A3A5C;
    margin: 0 0 0.5rem;
    line-height: 1.3;
}

.bt-service-card-body p {
    font-size: 0.9rem;
    color: var(--color-gray-600);
    line-height: 1.65;
    margin: 0 0 1rem;
}

.bt-service-card-body .bt-card-link {
    color: #1B4F8A;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
}

.bt-service-card-body .bt-card-link:hover {
    text-decoration: underline;
}

@media (max-width: 767px) {
    .bt-service-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .bt-service-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================
   HEALTH PACKAGES — BORDER-TOP ACCENT
   ============================================ */
.packages-section .section-title {
    color: #1A3A5C;
}

.package-card {
    border-radius: 10px;
    border-top: 4px solid #5B9BD5;
}

.package-title {
    color: #1A3A5C;
}

.package-hospital {
    color: #1B4F8A;
}

.btn-outline {
    border-radius: 6px;
    border-color: #1A3A5C;
    color: #1A3A5C;
}

.btn-outline:hover {
    background: #1A3A5C;
    color: white;
}

/* ============================================
   TRAVEL MEDICINE — NAVY BG
   ============================================ */
.travel-medicine-section {
    background-color: #1A3A5C !important;
    border-top: none !important;
    border-bottom: none !important;
}

.travel-medicine-section .text-center h2 {
    color: white;
}

.travel-medicine-section .text-center span {
    color: rgba(255, 255, 255, 0.7) !important;
}

.travel-medicine-section .text-center p {
    color: rgba(255, 255, 255, 0.8);
}

.travel-medicine-section .feature-image-container {
    border-radius: 12px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    box-shadow: none;
    overflow: hidden;
}

.travel-medicine-section .feature-item {
    border-radius: 8px;
    border-color: transparent;
}

.travel-medicine-section .feature-item.active,
.travel-medicine-section .feature-item:hover {
    background: rgba(255, 255, 255, 0.08);
    box-shadow: none;
    border-color: rgba(255, 255, 255, 0.15);
}

.travel-medicine-section .feature-item h3 {
    color: white !important;
}

.travel-medicine-section .feature-item p {
    color: rgba(255, 255, 255, 0.8) !important;
}

.travel-medicine-section .feature-icon-wrapper {
    border-radius: 50%;
    background-color: rgba(91, 155, 213, 0.2) !important;
    color: #AED6F1 !important;
}

.travel-medicine-section .feature-item.active .feature-icon-wrapper {
    background-color: #5B9BD5 !important;
    color: #1A3A5C !important;
}

.travel-medicine-section .progress-bar {
    background: linear-gradient(90deg, #5B9BD5 0%, white 100%) !important;
}

@media (max-width: 767px) {
    .travel-medicine-section .feature-image-container {
        border-radius: 10px !important;
    }

    .travel-medicine-section .feature-item {
        border-radius: 8px !important;
    }
}

/* ============================================
   HEALTH TIPS
   ============================================ */
.health-tips-section {
    background: white;
    padding-top: 0;
}

.health-tips-label {
    background: #1A3A5C;
    color: white;
    border-radius: 4px;
    padding: 0.5rem 1.25rem;
}

.health-topic-block {
    border-radius: 12px;
    border-color: rgba(26, 58, 92, 0.15);
    box-shadow: 0 4px 16px rgba(26, 58, 92, 0.06);
}

.health-topic-block__eyebrow {
    background: #1A3A5C;
    color: white;
    padding: 0.35rem 0.9rem;
    border-radius: 4px;
    display: inline-block;
}

.health-topic-block__title {
    color: #1A3A5C;
}

.health-topic-detail-card {
    border-radius: 8px;
    border-color: rgba(26, 58, 92, 0.15);
}

.health-topic-detail-card h5 {
    color: #1A3A5C;
}

.health-topic-block__media-placeholder {
    border-radius: 10px;
}

.health-topic-block__media {
    border-radius: 10px;
    overflow: hidden;
}

.health-topic-slider__lead {
    border-radius: 8px;
}

.health-topic-slider__arrow {
    border-radius: 50%;
    border-color: rgba(26, 58, 92, 0.24);
    color: #1A3A5C;
}

.health-topic-slider__arrow:hover:not(:disabled) {
    background: #1A3A5C;
    border-color: #1A3A5C;
}

.health-topic-slider__dot {
    border-radius: 50%;
    border-color: #1A3A5C;
}

.health-topic-slider__dot.is-active {
    background: #1A3A5C;
    border-radius: 999px;
}

.health-topic-block li::before {
    border-radius: 50%;
    background: #1A3A5C;
}

@media (max-width: 767px) {
    .health-topic-block {
        border-radius: 10px;
    }

    .health-topic-detail-card {
        border-radius: 8px;
    }

    .health-topic-detail-card .mhcp-readmore__toggle {
        border-radius: 6px;
    }

    .health-topic-block__media {
        border-radius: 8px;
    }
}

/* ============================================
   HOME APPOINTMENT
   ============================================ */
.home-appointment-section {
    background-color: #1A3A5C !important;
}

.home-appointment-section .booking-card {
    border-radius: 12px !important;
}

.home-appointment-section .appointment-image-placeholder {
    border-radius: 10px !important;
}

@media (max-width: 768px) {
    .home-appointment-section .booking-card {
        border-radius: 10px !important;
    }
}

/* ============================================
   GOOGLE MAP + GALLERY
   Light background — intentional visual break between dark appointment
   section above and dark doctors section below.
   ============================================ */
.google-map-section {
    background: #f8fafc;
    padding: 4rem 0;
    border-top: 5px solid #5B9BD5;
}

.google-map-section .map-gallery-header .section-title {
    color: #1A3A5C;
}

.google-map-section .map-gallery-header .btn-primary {
    background: #1A3A5C !important;
    border-color: #1A3A5C !important;
    color: white !important;
    border-radius: 6px !important;
}

.google-map-section .map-gallery-header .btn-primary:hover {
    background: #0f2540 !important;
    border-color: #0f2540 !important;
}

.google-map-section .map-lazy-wrapper {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(26, 58, 92, 0.15);
}

.google-map-section .map-gal-hero {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(26, 58, 92, 0.12);
}

.google-map-section .map-gal-thumb {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(26, 58, 92, 0.1);
}

.google-map-section .gallery-seo-content {
    background: white;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 12px rgba(26, 58, 92, 0.06);
}

.google-map-section .gallery-seo-content h3 {
    color: #1A3A5C !important;
}

.google-map-section .gallery-seo-body p,
.google-map-section .gallery-seo-highlight {
    color: #475569 !important;
}

/* ============================================
   DOCTORS SECTION
   ============================================ */
.doctors-section {
    background-color: #1A3A5C;
}

.doctor-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 1.5rem;
}

.doctor-image {
    border-radius: 50%;
    border-color: rgba(255, 255, 255, 0.3);
}

.doctor-image img {
    border-radius: 50%;
}

.doctor-name {
    color: white;
}

.doctor-specialty {
    color: #AED6F1;
}

.bt-featured-doctor-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    width: 100%;
    flex-wrap: wrap;
}

.bt-featured-card {
    flex-shrink: 0;
    min-width: 280px;
    text-align: center;
}

.bt-featured-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1rem;
    box-shadow: var(--shadow-lg);
}

.bt-featured-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bt-featured-card h3 {
    font-size: 1.25rem;
    font-weight: bold;
    color: white;
    margin-bottom: 0.5rem;
}

.bt-featured-card .doctor-specialty {
    color: #AED6F1;
    font-size: 0.95rem;
}

.bt-bio-card {
    flex: 1;
    max-width: 550px;
    min-width: 300px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 1.5rem 2rem;
}

.bt-bio-card p {
    color: white;
    font-size: 0.95rem;
    line-height: 1.7;
    text-align: left;
    margin: 0;
}

/* ============================================
   PARTNER LOGOS
   ============================================ */
.partner-logos-section {
    background: #1B4F8A;
    border: none;
    padding: 2.5rem 0;
}

.partner-logos-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.partner-logos-label {
    color: #AED6F1;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-align: center;
    margin: 0;
}

.partner-logos-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3rem;
}

.partner-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    opacity: 0.85;
    transition: opacity 0.2s ease;
}

.partner-logo-item:hover {
    opacity: 1;
}

.partner-logo-item img {
    height: 48px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.partner-logo-item:hover img {
    filter: brightness(0) invert(1);
}

.partner-logos-divider {
    display: none;
}

.partner-logo-fallback {
    display: none;
    align-items: center;
    gap: 0.6rem;
}

.partner-logo-badge {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 1rem;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
}

.partner-logo-badge i {
    font-size: 1.1rem;
    opacity: 0.8;
}

.partner-logo-badge span {
    line-height: 1.3;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    background: linear-gradient(to right, #1B4F8A, #5B9BD5);
}

.cta-section .section-title {
    color: white;
}

.cta-section .text-gray,
.cta-section .text-lg {
    color: rgba(255, 255, 255, 0.9);
}

.cta-section .btn-primary,
.cta-section .btn-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
    border-radius: 6px;
    box-shadow: none;
}

.cta-section .btn-primary:hover,
.cta-section .btn-outline:hover {
    background: white;
    color: #1A3A5C;
    box-shadow: none;
}

.cta-section > .container > .flex {
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* ============================================
   DOCTORS — GRID SPAN FIX
   bt-featured-doctor-row is a flex container inside .doctors-grid (CSS grid).
   Without span the row takes only 1 column and the flex layout collapses.
   ============================================ */
.bt-featured-doctor-row {
    grid-column: 1 / -1;
}

/* ============================================
   FOOTER — BACKGROUND OVERRIDE
   Parent's .site-footer uses var(--color-primary) which Bold-Trust overrides
   to #1A3A5C, making the footer blend into all the dark navy sections above it.
   ============================================ */
.site-footer {
    background-color: #0D2137 !important;
    border-top: 3px solid #1B4F8A;
}

.site-footer .footer-bottom {
    background-color: #091826 !important;
}

.site-footer a,
.site-footer p,
.site-footer h4,
.site-footer li {
    color: rgba(255, 255, 255, 0.85);
}

.site-footer a:hover {
    color: #5B9BD5;
}

.site-footer .footer-bottom p,
.site-footer .footer-bottom a {
    color: rgba(255, 255, 255, 0.6);
}

/* ThinkLab credit — self-contained in child theme */
.footer-credit {
    margin-top: 0.5rem;
    color: rgba(255, 255, 255, 0.55) !important;
    font-size: 0.75rem;
}
.footer-credit a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    transition: color 0.2s ease, border-color 0.2s ease;
}
.footer-credit a:hover {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.6);
}

/* ==========================================================================
   Booking hand-off + Psychotherapy teaser
   Self-contained. No parent CSS is relied on beyond .container.
   ========================================================================== */

.altbook-section { padding: 5rem 0; }
.altbook-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}
.altbook-eyebrow {
    display: inline-block;
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .16em;
    margin-bottom: .75rem;
}
.altbook-title { font-size: 2.1rem; font-weight: 700; margin: 0 0 1rem; line-height: 1.2; }
.altbook-lead  { font-size: 1.02rem; line-height: 1.7; margin: 0 0 1.75rem; }
.altbook-facts { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 1rem; }
.altbook-facts li { display: flex; align-items: flex-start; gap: .9rem; }
.altbook-facts i {
    width: 38px; height: 38px; flex: 0 0 38px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 50%; font-size: .95rem;
}
.altbook-facts strong { display: block; font-size: 1rem; line-height: 1.3; }
.altbook-facts em { display: block; font-style: normal; font-size: .85rem; opacity: .85; }

.altbook-card { padding: 2.25rem; }
.altbook-card-title {
    display: flex; align-items: center; gap: .65rem;
    font-size: 1.2rem; font-weight: 700; margin: 0 0 .5rem;
}
.altbook-card-lead { font-size: .92rem; margin: 0 0 1.5rem; opacity: .8; }
.altbook-btn {
    display: flex; align-items: center; gap: .9rem;
    padding: 1rem 1.15rem; margin-bottom: .75rem;
    text-decoration: none; line-height: 1.3;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.altbook-btn:last-child { margin-bottom: 0; }
.altbook-btn i { font-size: 1.35rem; flex: 0 0 auto; }
.altbook-btn strong { display: block; font-size: 1rem; font-weight: 700; }
.altbook-btn em { display: block; font-style: normal; font-size: .81rem; opacity: .8; }
.altbook-btn:hover, .altbook-btn:focus { transform: translateY(-2px); }

.altpsych-section { padding: 5rem 0; }
.altpsych-head { text-align: center; max-width: 680px; margin: 0 auto 3rem; }
.altpsych-eyebrow {
    display: inline-block; font-size: .72rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: .16em; margin-bottom: .75rem;
}
.altpsych-title { font-size: 2.1rem; font-weight: 700; margin: 0 0 1rem; line-height: 1.2; }
.altpsych-lead  { font-size: 1.02rem; line-height: 1.7; margin: 0; opacity: .85; }

.altpsych-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-bottom: 2.5rem; }
.altpsych-card { display: block; overflow: hidden; text-decoration: none; transition: transform .25s ease, box-shadow .25s ease; }
.altpsych-card:hover { transform: translateY(-4px); }
.altpsych-media { position: relative; display: block; aspect-ratio: 1 / 1; overflow: hidden; }
.altpsych-media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.altpsych-card:hover .altpsych-media img { transform: scale(1.05); }
.altpsych-icon {
    position: absolute; left: 1rem; bottom: 1rem;
    width: 42px; height: 42px; display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.05rem;
}
.altpsych-body { display: block; padding: 1.25rem; }
.altpsych-card-title { display: block; font-size: 1.02rem; font-weight: 700; line-height: 1.35; margin-bottom: .5rem; }
.altpsych-desc { display: block; font-size: .875rem; line-height: 1.6; opacity: .8; margin-bottom: .85rem; }
.altpsych-more { display: inline-flex; align-items: center; gap: .4rem; font-size: .84rem; font-weight: 700; }
.altpsych-foot { text-align: center; }
.altpsych-btn {
    display: inline-flex; align-items: center; gap: .6rem;
    padding: .95rem 1.9rem; font-size: 1rem; font-weight: 700; text-decoration: none;
    transition: filter .2s ease, transform .2s ease;
}
.altpsych-btn:hover, .altpsych-btn:focus { filter: brightness(1.08); transform: translateY(-1px); }

@media (max-width: 1023px) {
    .altpsych-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
    .altbook-grid { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 767px) {
    .altbook-section, .altpsych-section { padding: 3rem 0; }
    .altbook-title, .altpsych-title { font-size: 1.6rem; }
    .altbook-card { padding: 1.5rem; }
}
@media (max-width: 560px) {
    .altpsych-grid { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
    .altbook-btn, .altpsych-card, .altpsych-media img, .altpsych-btn { transition: none; }
    .altbook-btn:hover, .altpsych-card:hover, .altpsych-btn:hover { transform: none; }
}

/* Bold Trust: angular, radius 0, deep navy, uppercase */
.altbook-section { background: #1A3A5C; color: #fff; }
.altbook-eyebrow { color: #5B9BD5; letter-spacing: .22em; }
.altbook-title { color: #fff; text-transform: uppercase; }
.altbook-lead { color: rgba(255,255,255,.88); }
.altbook-facts i { background: rgba(255,255,255,.14); color: #fff; border-radius: 0; }
.altbook-facts strong, .altbook-facts em { color: #fff; }
.altbook-card { background: #fff; border-radius: 0; border-top: 4px solid #1B4F8A; }
.altbook-card-title { color: #1A3A5C; }
.altbook-card-lead { color: #4a5568; }
.altbook-btn { border-radius: 0; border: 2px solid #d7dee6; color: #1A3A5C; }
.altbook-btn strong { text-transform: uppercase; letter-spacing: .04em; }
.altbook-btn--wa { border-color: #25D366; } .altbook-btn--wa i { color: #25D366; }
.altbook-btn--form { background: #1A3A5C; border-color: #1A3A5C; color: #fff; }
.altbook-btn--call:hover { border-color: #1B4F8A; }

.altpsych-section { background: #f4f6f8; border-top: 3px solid #1A3A5C; }
.altpsych-eyebrow { color: #1B4F8A; letter-spacing: .22em; }
.altpsych-title { color: #1A3A5C; text-transform: uppercase; }
.altpsych-lead { color: #4a5568; }
.altpsych-card { background: #fff; border-radius: 0; border-bottom: 3px solid #1A3A5C; }
.altpsych-icon { background: #1A3A5C; color: #fff; border-radius: 0; }
.altpsych-card-title { color: #1A3A5C; }
.altpsych-desc { color: #4a5568; }
.altpsych-more { color: #1B4F8A; text-transform: uppercase; letter-spacing: .04em; }
.altpsych-btn { background: #1A3A5C; color: #fff; border-radius: 0; text-transform: uppercase; letter-spacing: .06em; }
