/* ============================================================
   Therapy and Rehab Physiotherapy — Main Stylesheet
   styles.css
   ============================================================ */


/* ── RESET & BASE ──────────────────────────────────────────── */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}


/* ── VIDEO BACKGROUND ──────────────────────────────────────── */
/* To change the video: replace "background.mp4" in each HTML   */
/* file's <source src="..."> tag with your own filename.         */
.video-bg {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}
.video-bg video {
    position: absolute;
    top: 50%; left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto; height: auto;
    transform: translate(-50%, -50%);
    opacity: 0.18;
    object-fit: cover;
}

/* All content sits above the video */
.top-bar, .hero, .services-hero,
.services-section, .page-banner, main, .newsletter,
.contact-section,
header,
footer { position: relative; z-index: 1; }


/* ── TOP INFO BAR ──────────────────────────────────────────── */
.top-bar {
    background: #4A0D0D;
    padding: 8px 20px;
    font-size: 13px;
    color: rgba(255,255,255,0.9);
}
.top-bar-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
}
.top-bar-item {
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}
.top-bar-item a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}
.top-bar-item a:hover { color: white; }
.top-bar-sep {
    color: rgba(255,255,255,0.4);
    margin: 0 4px;
}
.top-bar-icon { font-style: normal; font-size: 13px; }
.top-bar-locations {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
}


/* ── HEADER ────────────────────────────────────────────────── */
header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

/* Logo */
.logo-section { display: flex; align-items: center; gap: 15px; }
.logo img { height: 64px; width: auto; display: block; }

/* Brand name */
.brand-name {
    font-size: 22px;
    font-weight: 700;
    color: #8B1A1A;
    line-height: 1.2;
    display: block;
}
.brand-text p { color: #666; font-size: 14px; }

/* Phone numbers */
.phone-numbers { display: flex; gap: 20px; flex-wrap: wrap; }
.phone-numbers a {
    color: #8B1A1A;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
}

/* Book button */
.book-btn {
    background: #8B1A1A;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}
.book-btn:hover { background: #6B1212; }


/* ── NAVIGATION ────────────────────────────────────────────── */
nav { background: #8B1A1A; }
nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}
nav ul li a {
    color: white;
    text-decoration: none;
    padding: 15px 28px;
    display: block;
    font-weight: 500;
    letter-spacing: 0.5px;
}
nav ul li a:hover,
nav ul li a.active { background: #6B1212; }

/* Dropdown — shown/hidden by scripts.js with setTimeout delay */
nav ul li { position: relative; }
nav ul li .dropdown {
    display: none;
    position: absolute;
    top: 100%; left: 0;
    background: #6B1212;
    min-width: 240px;
    z-index: 2000;
    box-shadow: 0 6px 18px rgba(0,0,0,0.18);
    border-top: 2px solid #C0392B;
}
nav ul li .dropdown.is-open { display: block; }
nav ul li .dropdown li { width: 100%; }
nav ul li .dropdown li a {
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 400;
    color: white;
    display: block;
    white-space: nowrap;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
nav ul li .dropdown li a:hover {
    background: #4A0D0D;
    padding-left: 26px;
}
nav ul li .dropdown li:last-child a { border-bottom: none; }

/* Arrow on Services item */
.has-dropdown > a::after {
    content: " ▾";
    font-size: 11px;
    opacity: 0.8;
}


/* ── HERO (home page) ──────────────────────────────────────── */
.hero {
    background:
        linear-gradient(rgba(0,0,0,0.52), rgba(0,0,0,0.52)),
        url('https://static.wixstatic.com/media/bb71633f1c4e4e5abbd5da6daed3c106.jpg/v1/fill/w_980,h_654,al_c,q_85,usm_0.66_1.00_0.01,enc_avif,quality_auto/bb71633f1c4e4e5abbd5da6daed3c106.jpg');
    background-size: cover;
    background-position: center;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}
.hero-content { max-width: 800px; padding: 20px; }
.hero h1 { font-size: 48px; margin-bottom: 20px; text-shadow: 2px 2px 6px rgba(0,0,0,0.7); }
.hero p  { font-size: 20px; margin-bottom: 30px; text-shadow: 1px 1px 3px rgba(0,0,0,0.7); }


/* ── PAGE BANNER (interior pages) ─────────────────────────── */
.page-banner {
    background: linear-gradient(135deg, #4A0D0D 0%, #8B1A1A 50%, #6B1212 100%);
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 20px;
}
.page-banner h1, .page-banner h2 {
    font-size: 48px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    text-transform: uppercase;
    letter-spacing: 3px;
}
.page-banner p {
    font-size: 18px;
    margin-top: 10px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}


/* ── SHARED LAYOUT ─────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 60px 20px; }
.section { margin-bottom: 80px; }
.section-title {
    color: #8B1A1A;
    font-size: 28px;
    margin-bottom: 20px;
    text-transform: uppercase;
    border-bottom: 3px solid #8B1A1A;
    padding-bottom: 10px;
    display: inline-block;
}


/* ── HOME PAGE — intro section ─────────────────────────────── */
.intro-section { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.intro-text h3 { color: #8B1A1A; font-size: 24px; margin-bottom: 15px; }
.intro-text p  { margin-bottom: 15px; color: #555; }
.locations { background: #f8f8f8; padding: 20px; border-radius: 8px; }
.location-item { margin-bottom: 15px; }
.location-item a { color: #8B1A1A; text-decoration: none; font-weight: 600; font-size: 18px; }

/* Tagline / what we do strip */
.what-we-do {
    background: #8B1A1A;
    color: white;
    text-align: center;
    padding: 28px 20px;
}
.what-we-do p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 19px;
    line-height: 1.7;
    font-weight: 300;
    letter-spacing: 0.3px;
}
.what-we-do strong { font-weight: 600; }


/* ── CLINICS PAGE ──────────────────────────────────────────── */
.clinic-locations {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.clinic-card { background: white; border-radius: 8px; overflow: hidden; box-shadow: 0 4px 6px rgba(0,0,0,0.1); }
.clinic-card img { width: 100%; height: 220px; object-fit: cover; }
.clinic-info { padding: 25px; }
.clinic-info h3 { color: #8B1A1A; margin-bottom: 12px; font-size: 20px; }
.clinic-info p { color: #666; font-size: 14px; margin-bottom: 5px; }
.clinic-info .serving { margin-top: 12px; padding-top: 12px; border-top: 1px solid #f0f0f0; }
.clinic-info .serving strong { color: #8B1A1A; }
.clinic-info .get-directions {
    display: inline-block;
    margin-top: 15px;
    background: #8B1A1A;
    color: white;
    padding: 8px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}
.clinic-info .get-directions:hover { background: #6B1212; }

/* Home visits */
.home-visits {
    background: #f8f8f8;
    border-radius: 8px;
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
.home-visits h3 { color: #8B1A1A; font-size: 24px; margin-bottom: 15px; }
.home-visits p  { color: #555; margin-bottom: 15px; }
.home-visits img { width: 100%; border-radius: 8px; }


/* ── SERVICES PAGE ─────────────────────────────────────────── */
.services-hero {
    background: #fff;
    border-bottom: 3px solid #8B1A1A;
    padding: 60px 40px 50px;
}
.services-hero-inner { max-width: 1200px; margin: 0 auto; }
.services-hero h2 {
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 300;
    letter-spacing: 4px;
    color: #2c2c2c;
    margin-bottom: 16px;
    text-transform: uppercase;
}
.services-hero hr { border: none; border-top: 2px solid rgba(139,26,26,0.3); margin-bottom: 24px; }
.services-hero .intro-text { font-size: 18px; color: #444; letter-spacing: 0.3px; }

/* Services grid */
.services-section {
    background: #f4f5f6;
    padding: 0 40px 80px;
}
.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.service-card {
    display: flex; flex-direction: column; cursor: pointer;
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.service-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.14); transform: translateY(-3px); }
.service-card img { width: 100%; height: 220px; object-fit: cover; object-position: center center; display: block; }
.service-card-body { padding: 20px 18px 18px; display: flex; flex-direction: column; flex: 1; }
.service-card h3 { font-size: 19px; font-weight: 600; color: #1a1a1a; letter-spacing: 0.3px; margin-bottom: 10px; }
.card-divider { width: 40px; height: 2px; background: #8B1A1A; margin-bottom: 14px; }
.service-card p { font-size: 14px; color: #444; line-height: 1.7; margin-bottom: 10px; }
.service-card ul { padding-left: 18px; margin-top: 4px; color: #444; font-size: 14px; line-height: 1.8; }

/* Specialist service cards */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.service-full-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}
.service-full-card:hover { transform: translateY(-5px); }
.service-full-card img { width: 100%; height: 250px; object-fit: cover; }
.service-content { padding: 25px; }
.service-content h3 { color: #8B1A1A; margin-bottom: 15px; }
.service-content p  { color: #666; margin-bottom: 15px; }
.more-link { color: #8B1A1A; text-decoration: none; font-weight: 600; }
.more-link:hover { text-decoration: underline; }


/* ── CONTACT PAGE ──────────────────────────────────────────── */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 60px;
}

/* Left column */
.contact-info h3 { color: #8B1A1A; font-size: 22px; margin-bottom: 20px; }
.contact-block { margin-bottom: 30px; padding: 25px; background: #f8f8f8; border-radius: 8px; }
.contact-block h4 { color: #8B1A1A; font-size: 16px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
.contact-block p { color: #555; margin-bottom: 5px; }
.contact-block a { color: #8B1A1A; text-decoration: none; font-weight: 600; font-size: 18px; }
.contact-block a:hover { text-decoration: underline; }

/* Opening hours grid */
.hours-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 10px; }
.hours-grid span:nth-child(odd)  { color: #555; }
.hours-grid span:nth-child(even) { color: #8B1A1A; font-weight: 600; }

/* Right column — booking section */
.contact-form-section h3 { color: #8B1A1A; font-size: 22px; margin-bottom: 20px; }

/* ── BOOKING CARD ──────────────────────────────────────────── */
#book-appointment { scroll-margin-top: 80px; }

/* Make contact layout single-column when only booking card is shown */
.booking-full { grid-column: 1 / -1; }

.booking-card {
    background: white;
    border-radius: 14px;
    box-shadow: 0 6px 28px rgba(139,26,26,0.13);
    border: 1px solid rgba(139,26,26,0.15);
    padding: 48px 52px;
    max-width: 700px;
    margin: 0 auto;
}

.booking-card-top {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 2px solid rgba(139,26,26,0.10);
}
.booking-card-icon { font-size: 52px; flex-shrink: 0; }
.booking-card-top h3 {
    color: #8B1A1A;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 6px;
}
.booking-card-top p {
    color: #555;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.booking-card-info {
    list-style: none;
    padding: 0;
    margin: 0 0 34px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.booking-card-info li {
    color: #444;
    font-size: 15px;
    padding: 10px 16px;
    background: #f8f4f4;
    border-radius: 6px;
    border-left: 3px solid #8B1A1A;
}

/* Two big action buttons side by side */
.booking-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.book-appointment-btn,
.phone-appointment-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
    padding: 20px 24px !important;
    border-radius: 8px !important;
    font-size: 17px !important;
    font-weight: 700 !important;
    letter-spacing: 0.3px !important;
    transition: background 0.2s, transform 0.15s, box-shadow 0.15s;
    text-align: center !important;
    line-height: 1.3 !important;
    cursor: pointer !important;
}

.book-appointment-btn {
    background: #8B1A1A !important;
    color: white !important;
    box-shadow: 0 4px 16px rgba(139,26,26,0.35) !important;
    border: none !important;
}
.book-appointment-btn:hover {
    background: #6B1212 !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(139,26,26,0.45) !important;
    color: white !important;
}

.phone-appointment-btn {
    background: white !important;
    color: #8B1A1A !important;
    border: 2.5px solid #8B1A1A !important;
    box-shadow: 0 4px 16px rgba(139,26,26,0.10) !important;
}
.phone-appointment-btn:hover {
    background: #f8f4f4 !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(139,26,26,0.18) !important;
    color: #8B1A1A !important;
}

@media (max-width: 600px) {
    .booking-card { padding: 30px 22px; }
    .booking-card-top { flex-direction: column; text-align: center; }
    .booking-actions { grid-template-columns: 1fr; }
}

/* Contact form */
.contact-form { display: flex; flex-direction: column; gap: 15px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 15px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    width: 100%;
    transition: border-color 0.2s;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { outline: none; border-color: #8B1A1A; }
.contact-form textarea { resize: vertical; min-height: 130px; }
.contact-form button {
    background: #8B1A1A;
    color: white;
    padding: 14px 30px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
}
.contact-form button:hover { background: #6B1212; }
.form-note { font-size: 13px; color: #888; margin-top: 5px; }

/* Social section */
.social-section { text-align: center; padding: 40px 0; border-top: 1px solid #eee; }
.social-section h3 { color: #8B1A1A; margin-bottom: 20px; font-size: 20px; }
.social-links-large { display: flex; justify-content: center; gap: 30px; }
.social-links-large a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #333;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    padding: 12px 25px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    transition: all 0.2s;
}
.social-links-large a:hover { border-color: #8B1A1A; color: #8B1A1A; }
.social-links-large .icon { font-size: 24px; }


/* ── SUBPAGES (service detail pages) ──────────────────────── */
.page-title-section {
    text-align: center;
    padding: 60px 20px 20px;
    background: transparent;
}
.page-title-section h1 {
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 400;
    letter-spacing: 4px;
    color: #8B1A1A;
    text-transform: uppercase;
    margin-bottom: 0;
}
.content-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 30px 50px;
    text-align: center;
}
.content-section h3 { color: #8B1A1A; font-size: 22px; font-weight: 400; margin-bottom: 18px; }
.content-section p  { color: #444; font-size: 15px; line-height: 1.8; margin-bottom: 20px; }
.content-section a  { color: #8B1A1A; text-decoration: underline; }
.content-section a.book-btn { color: white; text-decoration: none; }

/* Chevron SVG decorators */
.chevron-svg { display: flex; justify-content: center; margin: 30px auto; }
.chevron-svg svg { width: 70px; height: 50px; }

/* Highlight box */
.highlight-box {
    background: rgba(139,26,26,0.06);
    border-radius: 8px;
    padding: 35px 40px;
    margin: 10px 0 30px;
}
.highlight-box h3 { color: #8B1A1A; margin-bottom: 16px; }
.highlight-box ul { list-style: none; padding: 0; margin: 0; }
.highlight-box ul li { color: #444; font-size: 15px; padding: 4px 0; line-height: 1.7; }

/* Breadcrumb */
.breadcrumb { text-align: center; padding: 12px 20px 0; font-size: 13px; color: #888; }
.breadcrumb a { color: #8B1A1A; text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }

/* Divider */
.divider-line {
    border: none;
    border-top: 1px solid rgba(139,26,26,0.20);
    max-width: 700px;
    margin: 30px auto;
}


/* ── CONTACT SECTION (replaces newsletter) ─────────────────── */
.contact-section {
    background: #8B1A1A;
    color: white;
    padding: 60px 20px;
    text-align: center;
}
.contact-section h3 { font-size: 28px; margin-bottom: 8px; }
.contact-section > p { margin-bottom: 30px; font-size: 16px; opacity: 0.9; }
.contact-section-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.contact-section-form .form-row-two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.contact-section-form input,
.contact-section-form textarea {
    padding: 12px 15px;
    border: none;
    border-radius: 5px;
    font-size: 15px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    width: 100%;
    color: #333;
}
.contact-section-form input:focus,
.contact-section-form textarea:focus {
    outline: 2px solid rgba(255,255,255,0.7);
}
.contact-section-form textarea {
    resize: vertical;
    min-height: 110px;
}
.contact-section-form button {
    background: white;
    color: #8B1A1A;
    padding: 13px 30px;
    border: none;
    border-radius: 5px;
    font-weight: 700;
    cursor: pointer;
    font-size: 16px;
    letter-spacing: 0.5px;
}
.contact-section-form button:hover { background: #f0f0f0; }
.contact-section-note {
    font-size: 13px;
    margin-top: 12px;
    opacity: 0.75;
}

/* Keep old newsletter class for contact.html which uses contact-section already */
.newsletter { background: #8B1A1A; color: white; padding: 60px 20px; text-align: center; }
.newsletter h3 { font-size: 32px; margin-bottom: 10px; }
.newsletter p  { margin-bottom: 30px; }
.newsletter-form { max-width: 600px; margin: 0 auto; display: flex; flex-direction: column; gap: 15px; }
.newsletter-form input { padding: 12px; border: none; border-radius: 5px; font-size: 16px; }
.newsletter-form button {
    background: white;
    color: #8B1A1A;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    font-size: 16px;
}
.newsletter-form button:hover { background: #f0f0f0; }


/* ── ABOUT US PAGE ─────────────────────────────────────────── */
.about-hero {
    background:
        linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
        url('https://static.wixstatic.com/media/bb71633f1c4e4e5abbd5da6daed3c106.jpg/v1/fill/w_980,h_654,al_c,q_85,usm_0.66_1.00_0.01,enc_avif,quality_auto/bb71633f1c4e4e5abbd5da6daed3c106.jpg');
    background-size: cover;
    background-position: center;
    height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 20px;
}
.about-hero h1 {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
    letter-spacing: 2px;
    text-transform: uppercase;
}
.about-hero p {
    margin-top: 12px;
    font-size: 18px;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.7);
    opacity: 0.92;
}

.about-intro {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px 20px;
    text-align: center;
}
.about-intro h2 { color: #8B1A1A; font-size: 28px; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 2px; }
.about-intro p { color: #555; font-size: 16px; line-height: 1.9; margin-bottom: 18px; }

.about-values {
    background: #f8f8f8;
    padding: 60px 20px;
    margin: 40px 0;
}
.about-values-inner { max-width: 1100px; margin: 0 auto; }
.about-values h2 { color: #8B1A1A; font-size: 26px; text-align: center; margin-bottom: 40px; text-transform: uppercase; letter-spacing: 2px; }
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}
.value-card {
    background: white;
    border-radius: 8px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    border-top: 4px solid #8B1A1A;
}
.value-icon { font-size: 40px; margin-bottom: 14px; display: block; }
.value-card h3 { color: #8B1A1A; font-size: 17px; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 1px; }
.value-card p { color: #555; font-size: 14px; line-height: 1.7; }

.about-team {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 20px 60px;
    text-align: center;
}
.about-team h2 { color: #8B1A1A; font-size: 26px; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 2px; }
.about-team p { color: #555; font-size: 16px; line-height: 1.9; margin-bottom: 18px; }
.about-cta-strip {
    background: #8B1A1A;
    color: white;
    text-align: center;
    padding: 50px 20px;
}
.about-cta-strip h2 { font-size: 28px; margin-bottom: 12px; }
.about-cta-strip p  { font-size: 16px; margin-bottom: 24px; opacity: 0.9; }
.about-cta-strip .book-btn { background: white; color: #8B1A1A; font-size: 16px; padding: 14px 36px; }
.about-cta-strip .book-btn:hover { background: #f0f0f0; }

.registrations {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}
.reg-badge {
    background: rgba(139,26,26,0.08);
    border: 2px solid rgba(139,26,26,0.25);
    border-radius: 8px;
    padding: 16px 24px;
    text-align: center;
    min-width: 180px;
}
.reg-badge strong { display: block; color: #8B1A1A; font-size: 18px; margin-bottom: 4px; }
.reg-badge span { color: #555; font-size: 13px; }


/* ── FOOTER ────────────────────────────────────────────────── */
footer { background: #333; color: white; padding: 40px 20px; position: relative; z-index: 1; }
.footer-content { max-width: 1200px; margin: 0 auto; text-align: center; }

.social-links { display: flex; justify-content: center; gap: 16px; margin: 20px 0; align-items: center; }
.social-links a { display: inline-flex; text-decoration: none; opacity: 0.9; transition: opacity 0.2s, transform 0.2s; }
.social-links a:hover { opacity: 1; transform: scale(1.12); }
.social-links a svg { display: block; }

.footer-social { display: flex; justify-content: center; gap: 16px; margin: 20px 0; align-items: center; }
.footer-social a { display: inline-flex; text-decoration: none; opacity: 0.9; transition: opacity 0.2s, transform 0.2s; }
.footer-social a:hover { opacity: 1; transform: scale(1.12); }
.footer-social a svg { display: block; }




/* ── CONTACT PAGE — two-card layout ───────────────────────── */
.contact-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
}

.contact-card {
    background: white;
    border-radius: 14px;
    box-shadow: 0 6px 28px rgba(0,0,0,0.09);
    border: 1px solid rgba(139,26,26,0.10);
    padding: 40px;
}

/* Stack of buttons with "or" divider */
.booking-btn-stack {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 4px;
}
.booking-btn-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
}
.booking-btn-divider::before,
.booking-btn-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e0e0e0;
}
.booking-btn-divider span {
    color: #aaa;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* White-background form inputs inside contact card */
.contact-form-white input,
.contact-form-white textarea {
    background: #f8f8f8;
    border: 1.5px solid #e0e0e0;
}
.contact-form-white input:focus,
.contact-form-white textarea:focus {
    border-color: #8B1A1A;
    background: white;
}

@media (max-width: 820px) {
    .contact-two-col { grid-template-columns: 1fr; }
}



/* ── CONTACT CARD TYPOGRAPHY FIX ──────────────────────────── */
.contact-card p {
    color: #555;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 0;
}
.booking-card-top p {
    color: #555;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}
/* ── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 900px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    header { position: static; }
    .top-bar-inner { flex-direction: column; gap: 4px; text-align: center; }
    .page-banner { height: auto; min-height: 140px; padding: 30px 20px; }
    .page-banner h1, .page-banner h2 { font-size: 22px; letter-spacing: 1px; }
    .header-content  { flex-direction: column; gap: 15px; }
    nav ul           { flex-direction: column; }
    nav ul li a      { text-align: center; }
    .intro-section   { grid-template-columns: 1fr; }
    .home-visits     { grid-template-columns: 1fr; }
    .contact-layout  { grid-template-columns: 1fr; gap: 40px; }
    .form-row        { grid-template-columns: 1fr; }
    .hero h1         { font-size: 32px; }
    .page-banner h2  { font-size: 32px; }
    .social-links-large { flex-direction: column; align-items: center; }
    .contact-section-form .form-row-two { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
    .page-banner h1, .page-banner h2 { font-size: 18px; letter-spacing: 0.5px; }
    .services-grid   { grid-template-columns: 1fr; }
    .services-hero   { padding: 40px 20px; }
    .services-section { padding: 0 20px 60px; }
}
