/* ================================================
   BUREQA MASSAGE THERAPY — STYLESHEET v3.0
   Clean, beautiful, Islamic-friendly
================================================ */

/* === VARIABLES === */
:root {
    --primary:        #5f7d5d;
    --primary-dark:   #4a6348;
    --primary-light:  #7a9978;
    --primary-pale:   #f0f5ef;
    --gold:           #c8a96e;
    --bg-light:       #f8faf7;
    --bg-cream:       #fdfcf9;
    --text-dark:      #2d3e2d;
    --text-body:      #4d5f4d;
    --text-light:     #8a9b8a;
    --border:         #e0e8df;
    --white:          #ffffff;
    --shadow-sm:      0 2px 12px rgba(45,62,45,0.07);
    --shadow-md:      0 6px 24px rgba(45,62,45,0.11);
    --shadow-lg:      0 16px 48px rgba(45,62,45,0.15);
    --radius:         10px;
    --radius-lg:      18px;
    --transition:     0.28s cubic-bezier(0.4,0,0.2,1);
}

/* === RESET === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: 15px; scroll-behavior: smooth; }
body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text-body);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-dark); }
ul { list-style: none; padding: 0; margin: 0; }
::selection { background: var(--primary); color: var(--white); }

/* === ACCESSIBILITY === */
.skip-link {
    position: absolute; top: -100px; left: 16px;
    background: var(--primary); color: var(--white);
    padding: 10px 20px; border-radius: var(--radius);
    font-size: 14px; font-weight: 600; z-index: 99999;
    transition: top 0.2s ease;
}
.skip-link:focus { top: 16px; }
:focus-visible { outline: 3px solid var(--primary); outline-offset: 3px; border-radius: 4px; }
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
    .fade-up { opacity: 1 !important; transform: none !important; }
}

/* === TYPOGRAPHY === */
h1,h2,h3,h4,h5,h6 { font-weight: 700; line-height: 1.2; color: var(--text-dark); margin-bottom: 0.75rem; }
h1 { font-size: clamp(2.1rem, 5vw, 3.2rem); letter-spacing: -0.5px; }
h2 { font-size: clamp(1.65rem, 3.5vw, 2.4rem); letter-spacing: -0.3px; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.35rem); }
h4 { font-size: 1.05rem; }
p  { margin-bottom: 1rem; font-size: 0.95rem; line-height: 1.8; }
p:last-child { margin-bottom: 0; }

/* === PRELOADER === */
#preloader {
    position: fixed; inset: 0; background: var(--white);
    z-index: 99999; display: flex; align-items: center; justify-content: center;
}
.preloader-spinner {
    width: 36px; height: 36px;
    border: 3px solid var(--bg-light); border-top-color: var(--primary);
    border-radius: 50%; animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* === HEADER === */
.site-header {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    position: sticky; top: 0; z-index: 1000;
    border-bottom: 1px solid var(--border);
    transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.nav-inner {
    display: flex; align-items: center;
    justify-content: space-between; height: 64px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo-img { width: 36px; height: 36px; object-fit: contain; }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav-brand-name {
    font-family: 'Cormorant', Georgia, serif;
    font-size: 1.25rem; font-weight: 700;
    color: var(--text-dark); letter-spacing: 0.3px;
}
.nav-brand-sub { font-size: 0.62rem; font-weight: 600; color: var(--text-light); letter-spacing: 0.12em; text-transform: uppercase; }
.nav-menu { display: flex; align-items: center; gap: 0; }
.nav-links { display: flex; align-items: center; gap: 0; }
.nav-links a {
    display: flex; align-items: center; height: 64px;
    padding: 0 13px; font-size: 0.7rem; font-weight: 600;
    color: var(--text-body); text-transform: uppercase; letter-spacing: 0.9px;
    white-space: nowrap; position: relative; transition: color var(--transition);
}
.nav-links a::after {
    content: ''; position: absolute; bottom: 10px; left: 13px; right: 13px;
    height: 2px; background: var(--primary); border-radius: 2px;
    transform: scaleX(0); transform-origin: center; transition: transform var(--transition);
}
.nav-links a:hover { color: var(--primary); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-book-btn {
    display: inline-flex; align-items: center; justify-content: center;
    height: 36px; padding: 0 18px; margin-left: 16px;
    background: var(--primary); color: var(--white) !important;
    border-radius: 8px; font-size: 0.7rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.9px;
    transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
}
.nav-book-btn:hover {
    background: var(--primary-dark); color: var(--white) !important;
    box-shadow: 0 4px 16px rgba(95,125,93,0.35); transform: translateY(-1px);
}
.nav-hamburger {
    display: none; flex-direction: column; justify-content: center;
    gap: 5px; width: 40px; height: 40px;
    background: transparent; border: 1.5px solid var(--border);
    border-radius: 8px; cursor: pointer; padding: 9px;
}
.nav-hamburger span { display: block; width: 100%; height: 2px; background: var(--primary); border-radius: 2px; transition: transform var(--transition), opacity var(--transition); }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* === HERO === */
.hero-section {
    position: relative; min-height: 92vh;
    display: flex; align-items: center; justify-content: center;
    background: #000000;
    overflow: hidden;
}
.hero-video {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; object-position: center;
    z-index: 0; filter: brightness(0.72);
    opacity: 0; transition: opacity 1.4s ease;
}
.hero-video.loaded { opacity: 1; }
.hero-overlay {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(to bottom, rgba(0,0,0,0.22) 0%, rgba(0,0,0,0.52) 100%);
}
.hero-content { position: relative; z-index: 2; text-align: center; color: var(--white); padding: 0 20px; width: 100%; }
.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.3);
    color: var(--white); padding: 7px 22px; border-radius: 50px;
    font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em;
    text-transform: uppercase; margin-bottom: 24px; backdrop-filter: blur(4px);
}
.hero-title {
    font-size: clamp(2.4rem, 6vw, 4rem);
    font-weight: 800; color: var(--white);
    line-height: 1.15; margin-bottom: 20px; letter-spacing: -0.5px;
}
.hero-title .highlight { color: var(--gold); font-style: italic; }
.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: rgba(255,255,255,0.85); max-width: 560px;
    margin: 0 auto 36px; line-height: 1.7; font-weight: 300;
}
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--primary); color: var(--white);
    padding: 14px 30px; border-radius: var(--radius);
    font-size: 0.88rem; font-weight: 700; letter-spacing: 0.03em;
    transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
}
.btn-primary:hover {
    background: var(--primary-dark); color: var(--white);
    box-shadow: 0 8px 28px rgba(74,99,72,0.4); transform: translateY(-2px);
}
.btn-secondary {
    display: inline-flex; align-items: center; gap: 10px;
    background: rgba(255,255,255,0.12); color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.5);
    padding: 14px 28px; border-radius: var(--radius);
    font-size: 0.88rem; font-weight: 600;
    backdrop-filter: blur(4px);
    transition: background var(--transition), border-color var(--transition);
}
.btn-secondary:hover { background: rgba(255,255,255,0.22); border-color: var(--white); color: var(--white); }
.btn-outline {
    display: inline-flex; align-items: center; gap: 10px;
    background: transparent; color: var(--primary);
    border: 2px solid var(--primary);
    padding: 12px 26px; border-radius: var(--radius);
    font-size: 0.85rem; font-weight: 700;
    transition: all var(--transition);
}
.btn-outline:hover { background: var(--primary); color: var(--white); transform: translateY(-1px); }
.scroll-indicator { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); z-index: 2; text-align: center; }
.scroll-text { display: block; font-size: 0.65rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-bottom: 8px; }
.scroll-arrow {
    width: 20px; height: 20px; border-right: 2px solid rgba(255,255,255,0.5);
    border-bottom: 2px solid rgba(255,255,255,0.5);
    transform: rotate(45deg); margin: 0 auto;
    animation: bounce 1.8s ease infinite;
}
@keyframes bounce { 0%,100% { transform: rotate(45deg) translateY(0); } 50% { transform: rotate(45deg) translateY(5px); } }

/* === TRUST BAR === */
.trust-bar { background: var(--white); border-bottom: 1px solid var(--border); }
.trust-items { display: grid; grid-template-columns: repeat(4,1fr); }
.trust-item {
    display: flex; align-items: center; gap: 16px;
    padding: 24px 28px; border-right: 1px solid var(--border);
    transition: background var(--transition);
}
.trust-item:last-child { border-right: none; }
.trust-item:hover { background: var(--bg-light); }
.trust-icon {
    width: 46px; height: 46px; border-radius: 12px;
    background: var(--primary-pale); display: flex; align-items: center;
    justify-content: center; color: var(--primary); font-size: 1.1rem; flex-shrink: 0;
}
.trust-text strong { display: block; font-size: 0.88rem; font-weight: 700; color: var(--text-dark); margin-bottom: 1px; }
.trust-text span { font-size: 0.75rem; color: var(--text-light); }

/* === SHARED SECTION STYLES === */
.section-padding { padding: 96px 0; }
.bg-light { background: var(--bg-light); }
.section-subtitle {
    display: inline-block; background: var(--primary-pale);
    color: var(--primary); border: 1px solid rgba(95,125,93,0.2);
    padding: 5px 18px; border-radius: 50px;
    font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em;
    text-transform: uppercase; margin-bottom: 12px;
}
.section-title { margin-bottom: 0; }
.title-accent { color: var(--primary); font-style: italic; }
.title-divider {
    width: 44px; height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--gold));
    border-radius: 2px; margin: 18px 0 28px;
}
.title-divider.centered { margin: 18px auto 28px; }
.section-header { margin-bottom: 56px; }
.section-description { font-size: 1rem; color: var(--text-light); max-width: 560px; margin: 16px auto 0; }

/* === FADE UP ANIMATION === */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* === ABOUT === */
#about .about-image-wrapper {
    position: relative; border-radius: var(--radius-lg);
    overflow: hidden; box-shadow: var(--shadow-lg);
}
#about .about-main-image {
    width: 100%; height: 500px; object-fit: cover;
    transition: transform 0.6s ease;
}
#about .about-image-wrapper:hover .about-main-image { transform: scale(1.04); }
#about .about-image-wrapper::before {
    content: ''; position: absolute; top: -10px; left: -10px;
    width: 72px; height: 72px;
    border-top: 3px solid var(--primary); border-left: 3px solid var(--primary);
    border-radius: 3px; z-index: 2;
}
#about .about-image-wrapper::after {
    content: ''; position: absolute; bottom: -10px; right: -10px;
    width: 72px; height: 72px;
    border-bottom: 3px solid var(--gold); border-right: 3px solid var(--gold);
    border-radius: 3px; z-index: 2;
}
.about-content .lead-text { font-size: 1.05rem; font-weight: 500; color: var(--text-dark); margin-bottom: 14px; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 22px 0 30px; }
.feature-item {
    display: flex; align-items: center; gap: 10px;
    font-size: 0.85rem; font-weight: 500; color: var(--text-dark);
    background: var(--bg-light); border: 1px solid var(--border);
    padding: 10px 14px; border-radius: var(--radius);
}
.feature-item i { color: var(--primary); font-size: 0.95rem; }

/* === ACCESSIBILITY SECTION === */
.accessibility-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin: 48px 0 32px; }
.accessibility-card {
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 32px 22px;
    text-align: center; position: relative;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.accessibility-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--primary-light); }
.accessibility-icon {
    width: 58px; height: 58px; border-radius: 50%;
    background: var(--primary-pale); display: flex; align-items: center;
    justify-content: center; margin: 0 auto 16px; color: var(--primary); font-size: 1.4rem;
}
.accessibility-card h3 { font-size: 1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.accessibility-card p { font-size: 0.84rem; line-height: 1.65; margin: 0; }
.coming-soon {
    display: inline-block; margin-top: 14px; font-size: 0.68rem;
    font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
    background: var(--primary-pale); color: var(--primary);
    border: 1px solid rgba(95,125,93,0.25); padding: 3px 10px; border-radius: 50px;
}
.accessibility-note {
    display: flex; gap: 18px; align-items: flex-start;
    background: var(--white); border: 1px solid var(--border);
    border-left: 4px solid var(--primary);
    border-radius: var(--radius); padding: 24px 28px;
}
.note-icon-large { color: var(--primary); font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.note-text h4 { font-size: 0.95rem; color: var(--text-dark); margin-bottom: 6px; }
.note-text p { font-size: 0.85rem; margin: 0; }

/* === SERVICES === */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.service-card {
    background: var(--white); border-radius: var(--radius-lg);
    overflow: hidden; border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-image { position: relative; overflow: hidden; height: 230px; }
.service-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.55s ease; }
.service-card:hover .service-image img { transform: scale(1.07); }
.service-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(45,62,45,0.85) 0%, rgba(45,62,45,0.25) 60%, transparent 100%);
    display: flex; align-items: flex-end; justify-content: center;
    padding-bottom: 20px; opacity: 0; transition: opacity var(--transition);
}
.service-card:hover .service-overlay { opacity: 1; }
.service-link {
    color: var(--white); font-weight: 600; font-size: 0.82rem;
    border: 1.5px solid rgba(255,255,255,0.75);
    padding: 9px 20px; border-radius: 50px;
    transition: all var(--transition); letter-spacing: 0.04em;
}
.service-link:hover { background: var(--white); color: var(--primary-dark); }
.service-badge {
    position: absolute; top: 14px; left: 14px;
    background: var(--primary); color: var(--white);
    font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em;
    text-transform: uppercase; padding: 4px 12px; border-radius: 50px; z-index: 2;
}
.service-badge.popular { background: var(--gold); }
.service-content { padding: 24px; }
.service-title { font-size: 1.05rem; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.service-description { font-size: 0.86rem; line-height: 1.7; margin-bottom: 16px; }
.benefits-title { display: block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-light); margin-bottom: 8px; }
.benefit-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.benefit-tag {
    display: flex; align-items: center; gap: 5px;
    font-size: 0.73rem; font-weight: 600; color: var(--text-dark);
    background: var(--bg-light); border: 1px solid var(--border);
    padding: 3px 10px; border-radius: 50px;
}
.benefit-tag img { width: 13px; height: 13px; object-fit: contain; }
.service-footer {
    display: flex; align-items: center; justify-content: space-between;
    margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--border);
}
.service-price { font-size: 1.1rem; font-weight: 800; color: var(--primary-dark); }
.service-btn {
    background: var(--primary); color: var(--white);
    padding: 8px 18px; border-radius: 50px;
    font-size: 0.78rem; font-weight: 700; letter-spacing: 0.04em;
    transition: all var(--transition);
}
.service-btn:hover { background: var(--primary-dark); color: var(--white); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(74,99,72,0.3); }

/* === THERAPIST === */
.therapist-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.therapist-image-wrapper {
    position: relative; border-radius: var(--radius-lg);
    overflow: hidden; box-shadow: var(--shadow-lg);
}
.therapist-photo { width: 100%; height: 580px; object-fit: cover; object-position: top; }
.therapist-credentials { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 24px 0 30px; }
.credential-item {
    display: flex; align-items: flex-start; gap: 12px;
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 14px;
    box-shadow: var(--shadow-sm);
}
.credential-item i { color: var(--primary); font-size: 1.1rem; margin-top: 2px; flex-shrink: 0; }
.credential-text strong { display: block; font-size: 0.85rem; font-weight: 700; color: var(--text-dark); margin-bottom: 1px; }
.credential-text span { font-size: 0.75rem; color: var(--text-light); }

/* === PRICING === */
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-bottom: 32px; }
.pricing-card {
    background: var(--white); border: 1.5px solid var(--border);
    border-radius: var(--radius-lg); overflow: hidden;
    box-shadow: var(--shadow-sm); position: relative;
    display: flex; flex-direction: column;
    transition: transform var(--transition), box-shadow var(--transition);
}
.pricing-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.pricing-card.featured { border-color: var(--primary); transform: scale(1.02); }
.pricing-card.featured:hover { transform: scale(1.02) translateY(-5px); }
.popular-badge {
    position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    background: var(--primary); color: var(--white);
    font-size: 0.66rem; font-weight: 700; letter-spacing: 0.1em;
    text-transform: uppercase; padding: 4px 20px; border-radius: 0 0 10px 10px;
}
.pricing-header { background: var(--bg-light); padding: 40px 28px 24px; text-align: center; border-bottom: 1px solid var(--border); }
.pricing-card.featured .pricing-header { background: var(--primary-pale); }
.pricing-title { font-size: 0.95rem; font-weight: 700; color: var(--text-dark); margin-bottom: 14px; }
.pricing-amount { font-size: 3.2rem; font-weight: 800; color: var(--primary-dark); line-height: 1; }
.pricing-amount sup { font-size: 1.3rem; vertical-align: top; margin-top: 10px; display: inline-block; }
.pricing-duration { font-size: 0.8rem; color: var(--text-light); margin-top: 6px; }
.pricing-body { padding: 24px 28px; flex: 1; }
.pricing-description { font-size: 0.86rem; color: var(--text-body); margin-bottom: 18px; line-height: 1.7; }
.pricing-features li {
    display: flex; align-items: center; gap: 10px;
    font-size: 0.84rem; color: var(--text-body);
    padding: 8px 0; border-bottom: 1px solid var(--border);
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li i { color: var(--primary); font-size: 0.8rem; flex-shrink: 0; }
.pricing-footer { padding: 20px 28px 28px; }
.pricing-btn {
    display: block; text-align: center;
    background: var(--primary); color: var(--white);
    padding: 13px; border-radius: var(--radius);
    font-weight: 700; font-size: 0.88rem;
    transition: all var(--transition);
}
.pricing-btn:hover { background: var(--primary-dark); color: var(--white); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(74,99,72,0.3); }
.pricing-card.featured .pricing-btn { background: var(--primary-dark); }
.pricing-note {
    display: flex; gap: 14px; align-items: flex-start;
    background: var(--white); border: 1px solid var(--border);
    border-left: 4px solid var(--gold);
    border-radius: var(--radius); padding: 18px 22px;
}
.note-icon i { color: var(--gold); font-size: 1.1rem; }
.note-content { font-size: 0.86rem; }
.note-content strong { color: var(--text-dark); }

/* === TESTIMONIALS === */
.first-review-section {
    max-width: 540px; margin: 0 auto; text-align: center;
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 56px 44px;
    box-shadow: var(--shadow-md);
}
.first-review-icon {
    width: 68px; height: 68px; border-radius: 50%; background: #ea4335;
    color: var(--white); font-size: 1.7rem;
    display: flex; align-items: center; justify-content: center; margin: 0 auto 18px;
}
.first-review-stars { color: #ffc107; font-size: 1.4rem; letter-spacing: 4px; margin-bottom: 18px; }
.first-review-section h3 { font-size: 1.3rem; color: var(--text-dark); margin-bottom: 12px; }
.first-review-section > p { font-size: 0.9rem; line-height: 1.75; color: var(--text-body); }
.first-review-btn {
    display: inline-flex; align-items: center; gap: 10px;
    margin: 24px 0 10px; background: #ea4335; color: var(--white);
    padding: 13px 28px; border-radius: 50px; font-weight: 700; font-size: 0.88rem;
    transition: all var(--transition);
}
.first-review-btn:hover { background: #c5392d; color: var(--white); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(234,67,53,0.3); }
.first-review-note { font-size: 0.76rem; color: var(--text-light); }

/* === APPOINTMENT === */
.appt-section { background: var(--bg-cream); }
.appt-header { margin-bottom: 56px; }
.appt-layout { display: grid; grid-template-columns: 360px 1fr; gap: 40px; align-items: start; }
.appt-sidebar-inner {
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 32px;
    box-shadow: var(--shadow-sm); position: sticky; top: 84px;
}
.appt-trust-block {
    display: flex; align-items: flex-start; gap: 14px;
    padding: 16px 0; border-bottom: 1px solid var(--border);
}
.appt-trust-block:last-of-type { border-bottom: none; }
.appt-trust-icon {
    width: 40px; height: 40px; border-radius: 10px;
    background: var(--primary-pale); display: flex;
    align-items: center; justify-content: center;
    color: var(--primary); font-size: 0.95rem; flex-shrink: 0;
}
.appt-trust-block strong { display: block; font-size: 0.87rem; font-weight: 700; color: var(--text-dark); margin-bottom: 2px; }
.appt-trust-block span, .appt-trust-block a { font-size: 0.81rem; color: var(--text-body); }
.appt-accepts { margin-top: 20px; padding: 16px; background: var(--bg-light); border-radius: var(--radius); }
.appt-accepts h4 { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--primary); margin-bottom: 12px; }
.appt-accepts ul li { font-size: 0.83rem; color: var(--text-body); padding: 5px 0; display: flex; align-items: center; gap: 8px; }
.appt-accepts ul li i { color: var(--primary); font-size: 0.85rem; }

/* Jane embed */
.jane-embed-wrapper { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--border); }
.jane-embed-label { display: flex; align-items: center; gap: 10px; padding: 14px 22px; background: var(--primary-pale); border-bottom: 1px solid var(--border); font-size: 0.8rem; font-weight: 600; color: var(--primary); letter-spacing: 0.03em; }
.jane-embed-wrapper iframe { display: block; width: 100%; min-height: 680px; border: none; }
.jane-placeholder { padding: 52px 40px; }
.jane-placeholder-inner { text-align: center; max-width: 460px; margin: 0 auto; }
.jane-placeholder-icon { width: 72px; height: 72px; border-radius: 50%; background: var(--primary-pale); display: flex; align-items: center; justify-content: center; margin: 0 auto 22px; color: var(--primary); font-size: 1.8rem; }
.jane-placeholder-inner h3 { font-size: 1.25rem; color: var(--text-dark); margin-bottom: 10px; }
.jane-placeholder-inner > p { font-size: 0.88rem; color: var(--text-body); line-height: 1.75; margin-bottom: 26px; }
.jane-placeholder-steps { display: flex; flex-direction: column; gap: 12px; text-align: left; background: var(--bg-light); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; margin-bottom: 22px; }
.jane-step { display: flex; align-items: flex-start; gap: 12px; font-size: 0.84rem; color: var(--text-dark); line-height: 1.5; }
.step-num { flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%; background: var(--primary); color: var(--white); font-size: 0.7rem; font-weight: 700; display: flex; align-items: center; justify-content: center; margin-top: 1px; }
.jane-guide-link { display: inline-flex; align-items: center; gap: 8px; font-size: 0.84rem; font-weight: 600; color: var(--primary); text-decoration: underline; text-underline-offset: 3px; }

/* === MAP === */
#map iframe { display: block; width: 100%; height: 420px; border: 0; filter: saturate(0.85); }

/* === FOOTER === */
.footer { background: var(--text-dark); color: rgba(255,255,255,0.65); }
.footer-main { padding: 64px 0 48px; }
.footer-widget { margin-bottom: 32px; }
.footer-title { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 14px; }
.footer-description { font-size: 0.85rem; line-height: 1.75; color: rgba(255,255,255,0.5); max-width: 280px; }
.widget-title { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--primary-light); margin-bottom: 18px; }
.footer-menu li { margin-bottom: 9px; }
.footer-menu a { font-size: 0.86rem; color: rgba(255,255,255,0.55); transition: color var(--transition); }
.footer-menu a:hover { color: var(--primary-light); }
.footer-social { display: flex; gap: 8px; margin-top: 20px; }
.social-link {
    width: 36px; height: 36px; border-radius: 8px;
    background: rgba(255,255,255,0.08); display: flex;
    align-items: center; justify-content: center;
    color: rgba(255,255,255,0.6); font-size: 0.9rem;
    transition: all var(--transition);
}
.social-link:hover { background: var(--primary); color: var(--white); transform: translateY(-2px); }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.85rem; color: rgba(255,255,255,0.55); margin-bottom: 12px; }
.footer-contact li i { color: var(--primary-light); margin-top: 2px; flex-shrink: 0; }
.footer-contact a { color: rgba(255,255,255,0.55); }
.footer-contact a:hover { color: var(--primary-light); }
.footer-hours { margin-top: 16px; padding-top: 14px; border-top: 1px solid rgba(255,255,255,0.08); font-size: 0.83rem; color: rgba(255,255,255,0.45); }
.footer-hours strong { color: var(--primary-light); display: block; margin-bottom: 4px; }
.footer-serve-list li { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: rgba(255,255,255,0.55); margin-bottom: 9px; }
.footer-serve-list li i { color: var(--primary-light); width: 14px; }
.footer-note { font-size: 0.74rem; color: rgba(255,255,255,0.3); margin-top: 6px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 22px 0; }
.copyright { font-size: 0.8rem; color: rgba(255,255,255,0.35); margin: 0; }
.footer-links { display: flex; gap: 20px; justify-content: flex-end; }
.footer-links a { font-size: 0.8rem; color: rgba(255,255,255,0.35); transition: color var(--transition); }
.footer-links a:hover { color: var(--primary-light); }

/* === BACK TO TOP === */
.back-to-top {
    position: fixed; bottom: 28px; right: 28px; z-index: 999;
    width: 42px; height: 42px; border-radius: 10px;
    background: var(--primary); color: var(--white);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; box-shadow: var(--shadow-md);
    opacity: 0; visibility: hidden;
    transition: all var(--transition);
}
.back-to-top:hover { background: var(--primary-dark); color: var(--white); transform: translateY(-3px); }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .therapist-wrapper { grid-template-columns: 1fr; gap: 48px; }
    .therapist-photo { height: 420px; }
    .pricing-grid { grid-template-columns: 1fr 1fr; }
    .pricing-card.featured { transform: none; }
    .appt-layout { grid-template-columns: 1fr; }
    .appt-sidebar-inner { position: static; }
}
@media (max-width: 900px) {
    .trust-items { grid-template-columns: 1fr 1fr; }
    .services-grid { grid-template-columns: 1fr 1fr; }
    .accessibility-grid { grid-template-columns: 1fr 1fr; }
    .about-features { grid-template-columns: 1fr; }
}
@media (max-width: 767px) {
    .nav-hamburger { display: flex; }
    .nav-menu { display: none; position: absolute; top: 64px; left: 0; right: 0; background: var(--white); border-top: 1px solid var(--border); box-shadow: 0 8px 24px rgba(45,62,45,0.12); flex-direction: column; align-items: stretch; padding: 8px 0 14px; z-index: 999; }
    .nav-menu.open { display: flex; }
    .nav-links { flex-direction: column; align-items: stretch; width: 100%; }
    .nav-links a { height: auto; padding: 13px 20px; font-size: 0.82rem; border-bottom: 1px solid var(--border); }
    .nav-links a::after { display: none; }
    .nav-book-btn { height: 42px; margin: 12px 16px 0; border-radius: 8px; font-size: 0.82rem; }
    .section-padding { padding: 72px 0; }
    .hero-section { min-height: 80vh; }
}
@media (max-width: 640px) {
    .services-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
    .accessibility-grid { grid-template-columns: 1fr; }
    .trust-items { grid-template-columns: 1fr 1fr; }
    .therapist-credentials { grid-template-columns: 1fr; }
    .first-review-section { padding: 40px 24px; }
    .jane-placeholder { padding: 36px 22px; }
    .footer-links { justify-content: flex-start; flex-wrap: wrap; gap: 12px; }
}

/* ── Jane iframe — full booking experience ── */
.jane-iframe {
    display: block;
    width: 100%;
    min-height: 780px;
    border: none;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

/* ── Therapist section layout fix ── */
.therapist-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 72px;
    align-items: center;
}
.therapist-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.therapist-photo {
    width: 100%;
    height: 580px;
    object-fit: cover;
    object-position: top center;
    display: block;
}
.therapist-credentials {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin: 24px 0 32px;
}
.credential-item {
    display: flex; align-items: flex-start; gap: 12px;
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 14px;
    box-shadow: var(--shadow-sm);
}
.credential-item i { color: var(--primary); font-size: 1.05rem; margin-top: 2px; flex-shrink: 0; }
.credential-text strong { display: block; font-size: 0.84rem; font-weight: 700; color: var(--text-dark); margin-bottom: 2px; }
.credential-text span { font-size: 0.74rem; color: var(--text-light); }

/* ── About image fix ── */
.about-main-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

/* ── Appointment layout ── */
.appt-layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 32px;
    align-items: start;
}
.appt-sidebar-inner {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 84px;
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .appt-layout { grid-template-columns: 1fr; }
    .appt-sidebar-inner { position: static; }
    .therapist-wrapper { grid-template-columns: 1fr; gap: 40px; }
    .therapist-photo { height: 400px; }
    .therapist-credentials { grid-template-columns: 1fr 1fr; }
    .jane-iframe { min-height: 680px; }
}
@media (max-width: 560px) {
    .therapist-credentials { grid-template-columns: 1fr; }
    .about-main-image { height: 320px; }
    .jane-iframe { min-height: 580px; }
}

/* ══════════════════════════════════════════
   JANE BOOKING CARD (replaces broken iframe)
   ══════════════════════════════════════════ */
.jane-booking-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

/* Top — icon + headline */
.jane-card-top {
    padding: 40px 40px 32px;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-pale) 0%, #e8f0e6 100%);
    border-bottom: 1px solid var(--border);
}
.jane-card-icon {
    width: 72px; height: 72px; border-radius: 50%;
    background: var(--white);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 18px;
    color: var(--primary); font-size: 1.9rem;
    box-shadow: var(--shadow-sm);
}
.jane-card-top h3 { font-size: 1.5rem; color: var(--text-dark); margin-bottom: 10px; }
.jane-card-top p { font-size: 0.92rem; color: var(--text-body); max-width: 440px; margin: 0 auto; line-height: 1.75; }

/* Steps */
.jane-card-steps {
    padding: 28px 40px;
    display: flex;
    flex-direction: column;
    gap: 0;
    border-bottom: 1px solid var(--border);
}
.jane-step-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
}
.jane-step-item:last-child { border-bottom: none; }
.jane-step-num {
    width: 32px; height: 32px; flex-shrink: 0;
    border-radius: 50%;
    background: var(--primary); color: var(--white);
    font-size: 0.85rem; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    margin-top: 2px;
}
.jane-step-text strong {
    display: block; font-size: 0.92rem;
    font-weight: 700; color: var(--text-dark); margin-bottom: 2px;
}
.jane-step-text span { font-size: 0.82rem; color: var(--text-light); }

/* CTA button area */
.jane-card-cta {
    padding: 32px 40px 24px;
    text-align: center;
    border-bottom: 1px solid var(--border);
}
.jane-book-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 18px 32px;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius);
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.jane-book-btn:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(74,99,72,0.35);
}
.jane-book-btn i { font-size: 1.1rem; }
.jane-cta-note {
    margin: 14px 0 0;
    font-size: 0.78rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.jane-cta-note i { color: var(--primary-light); }

/* Trust pills */
.jane-card-trust {
    padding: 20px 40px 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.jane-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--text-body);
    font-weight: 500;
}
.jane-trust-item i { color: var(--primary); font-size: 0.85rem; flex-shrink: 0; }

/* Remove old iframe styles */
.jane-iframe { display: none; }
.jane-embed-wrapper { border: none; box-shadow: none; background: none; }

/* Responsive */
@media (max-width: 640px) {
    .jane-card-top { padding: 28px 24px 22px; }
    .jane-card-steps { padding: 16px 24px; }
    .jane-card-cta { padding: 22px 24px 18px; }
    .jane-card-trust { padding: 16px 24px 20px; grid-template-columns: 1fr; }
    .jane-book-btn { font-size: 0.95rem; padding: 16px 24px; }
}

/* ── Jane price note ── */
.jane-price-note {
    font-size: 0.82rem;
    color: var(--text-light);
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.jane-price-note i { color: var(--primary-light); }
.jane-price-note a { color: var(--primary); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.jane-price-note a:hover { color: var(--primary-dark); }
.jane-price { color: var(--primary-dark); }

