:root {
    --bg: #f3efe8;
    --surface: #fffdfa;
    --ink: #2b2722;
    --ink-soft: #5c554c;
    --muted: #938a7e;
    --line: #e7e0d5;
    --line-soft: #efe9df;
    --dark: #211d19;
    --accent: #5f7d6e;         /* soft sage — calming, spa-like */
    --accent-deep: #4c6a5c;
    --accent-tint: #eef2ee;
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 18px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Language switcher */
.lang-switcher {
    position: fixed;
    top: 20px;
    right: 24px;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 8px;
}

.lang-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Cairo', sans-serif;
    font-weight: 400;
    font-size: 0.9rem;
    letter-spacing: 2px;
    cursor: pointer;
    padding: 0;
    transition: color 0.2s;
}

.lang-btn.active,
.lang-btn:hover {
    color: #fff;
}

.lang-divider {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.75rem;
}

.lang-switcher.scrolled .lang-btn {
    color: rgba(0, 0, 0, 0.35);
}

.lang-switcher.scrolled .lang-btn.active,
.lang-switcher.scrolled .lang-btn:hover {
    color: #2c2825;
}

.lang-switcher.scrolled .lang-divider {
    color: rgba(0, 0, 0, 0.2);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Tajawal', sans-serif;
    font-weight: 400;
    line-height: 1.75;
    color: var(--ink);
    background: var(--bg);
}

/* Navigation */
nav {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-toggle {
    display: none;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 0 auto;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.85);
    font-family: 'Cairo', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    padding: 16px 18px;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.nav-toggle-text {
    text-indent: 6px;
}

/* Mobile fullscreen menu (hidden on desktop) */
.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1500;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(20, 17, 15, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0s linear 0.3s;
    overflow: hidden;
}

.mobile-menu.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity 0.3s ease, visibility 0s linear 0s;
}

.mobile-menu-close {
    position: absolute;
    top: 14px;
    right: 16px;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.85);
    font-size: 2.2rem;
    font-weight: 300;
    line-height: 1;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-tap-highlight-color: transparent;
}

.mobile-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.mobile-menu-list li {
    margin: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-menu-list li:first-child {
    border-top: none;
}

.mobile-menu-list a {
    display: block;
    padding: 22px 30px;
    font-family: 'Cairo', sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
}

.nav-toggle-icon {
    display: block;
    width: 8px;
    height: 8px;
    border-right: 1.5px solid currentColor;
    border-top: 1.5px solid currentColor;
    transform: translateY(2px) rotate(-45deg);
    transition: transform 0.3s ease;
}

.nav-toggle.open .nav-toggle-icon {
    transform: translateY(-2px) rotate(135deg);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0;
}

.nav-menu a {
    display: block;
    padding: 14px 16px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.82);
    font-family: 'Cairo', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.2s;
}

.nav-menu a:hover {
    color: #fff;
}

/* Main content */
main {
    padding-bottom: 0;
}

section {
    padding: 60px 20px;
    max-width: 800px;
    margin: 0 auto;
    scroll-margin-top: 0;
}

/* Hero */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 40px;
    background: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)), url('photo/cover.jpeg') center/cover no-repeat #1e1b18;
    color: #fff;
    max-width: 100%;
    position: relative;
}

.hero h1 {
    font-family: 'Cairo', sans-serif;
    font-size: clamp(2.2rem, 6.5vw, 4rem);
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
    line-height: 1.15;
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.hero p {
    font-family: 'Cairo', sans-serif;
    font-size: clamp(0.95rem, 2.5vw, 1.25rem);
    font-weight: 400;
    font-style: normal;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    max-width: 90%;
}

.hero-btn {
    display: inline-block;
    margin-top: 32px;
    padding: 16px 42px;
    background: var(--accent);
    border: 2px solid var(--accent);
    border-radius: var(--radius);
    color: #fff;
    text-decoration: none;
    font-family: 'Cairo', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 6px 22px rgba(47, 65, 56, 0.35);
    transition: background 0.25s, border-color 0.25s, transform 0.15s, box-shadow 0.25s;
}

.hero-btn:hover {
    background: var(--accent-deep);
    border-color: var(--accent-deep);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(47, 65, 56, 0.45);
}

.hero-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-top: 32px;
}

.btn-book {
    display: inline-block;
    margin-top: 30px;
    padding: 12px 40px;
    background: #fff;
    color: #2c2825;
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 1px;
    transition: background 0.2s, color 0.2s;
}

.btn-book:hover {
    background: #2c2825;
    color: #fff;
}

/* Section headings */
h2 {
    font-family: 'Cairo', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent);
}

h3 {
    font-family: 'Cairo', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 30px 0 15px;
    color: var(--accent-deep);
}

p {
    margin-bottom: 15px;
}

ul {
    margin: 15px 0 15px 20px;
}

li {
    margin-bottom: 8px;
}

/* Services card */
.services-card {
    background: var(--surface);
    padding: 40px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: 0 6px 24px rgba(43, 39, 34, 0.05);
    color: var(--ink);
}

.services-card h2 {
    text-align: left;
    color: var(--ink);
}

.services-card .btn-cta {
    display: block;
    text-align: center;
}

.btn-cta {
    display: inline-block;
    margin-top: 30px;
    padding: 15px 40px;
    background: var(--accent);
    color: #fff;
    text-decoration: none;
    border: none;
    border-radius: var(--radius);
    font-family: 'Cairo', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.25s, transform 0.15s, box-shadow 0.25s;
}

.btn-cta:hover {
    background: var(--accent-deep);
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(76, 106, 92, 0.25);
}

/* Appointment policy notice */
.policy-notice {
    margin-top: 30px;
    padding: 28px 32px;
    background: var(--accent-tint);
    border: 1px solid var(--line);
    border-left: 4px solid var(--accent);
    border-radius: var(--radius);
}

.policy-notice h3 {
    margin: 0 0 14px;
    color: var(--accent-deep);
}

.policy-notice p {
    color: var(--ink-soft);
    margin-bottom: 10px;
}

.policy-notice p:last-child {
    margin-bottom: 0;
}

/* Prices */
.price-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.price-list li {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid var(--line-soft);
}

.price-list .service-name a {
    color: var(--ink);
    text-decoration: none;
}

.price-list .service-name a:hover {
    color: var(--accent-deep);
}

.price-list .service-price {
    color: var(--accent-deep);
    font-weight: 500;
    white-space: nowrap;
    margin-left: 20px;
}

/* Massage list */
.massage-list {
    display: flex;
    flex-direction: column;
}

.massage-item {
    background: none;
    border: none;
    border-bottom: 1px solid var(--line-soft);
    text-align: left;
    padding: 20px 0;
    font-family: inherit;
    font-size: 1.1rem;
    color: var(--ink-soft);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.massage-item-info {
    flex: 1;
    min-width: 0;
}

.massage-item-title {
    display: block;
    font-family: 'Tajawal', sans-serif;
    font-weight: 400;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.massage-item-desc {
    display: block;
    font-size: 0.85rem;
    color: #9a9088;
    margin-top: 4px;
    line-height: 1.4;
}

.massage-item::after {
    content: '\2192';
    font-size: 1.2rem;
    transition: transform 0.2s;
    flex-shrink: 0;
}

.massage-item:hover {
    color: #000;
}

.massage-item:hover::after {
      transform: translateX(4px);
  }

  .massage-item.inline {
        display: inline;
        border-bottom: none;
        padding: 0;
        font-size: inherit;
        color: var(--ink);
        text-decoration: none;
    }

    .massage-item.inline::after {
        display: none;
    }

    .massage-item.inline:hover {
        color: var(--accent-deep);
        text-decoration: underline;
    }

/* Modal overlay */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    padding: 40px 20px;
    overflow-y: auto;
    opacity: 0;
    transition: opacity 0.3s;
}

.modal-overlay.open {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.modal-overlay.visible {
    opacity: 1;
}

.modal-card {
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: var(--radius-lg);
    padding: 0;
    max-width: 700px;
    width: 100%;
    position: relative;
    margin: auto;
    transform: translateY(20px);
    transition: transform 0.3s;
    overflow: hidden;
    box-shadow: 0 18px 50px rgba(33, 29, 25, 0.28);
}

.modal-overlay.visible .modal-card {
    transform: translateY(0);
}

.modal-card h2 {
    padding-right: 40px;
}

.modal-card > h2,
.modal-card > h3,
.modal-card > p,
.modal-card > ul {
    padding-left: 40px;
    padding-right: 40px;
}

.modal-card > ul {
    padding-left: 60px;
}

.modal-card > h2:first-of-type {
    padding-top: 5px;
}

.modal-card > *:last-child {
    padding-bottom: 10px;
    margin-bottom: 30px;
}

.modal-cta {
    text-align: center;
    padding: 25px 40px 35px;
}

.modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.4);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    color: #fff;
    cursor: pointer;
    line-height: 1;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    z-index: 10;
}

.modal-close:hover {
    background: rgba(0, 0, 0, 0.6);
}

/* Gallery */
.gallery {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #ede9e3;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.gallery-track {
    display: flex;
    height: 100%;
    transition: transform 0.4s ease;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.gallery-track img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
    -webkit-user-drag: none;
    -webkit-touch-callout: none;
}

.gallery-prev,
.gallery-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.35);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 1.8rem;
    width: 40px;
    height: 40px;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    -webkit-tap-highlight-color: transparent;
}

@media (hover: hover) {
    .gallery-prev,
    .gallery-next {
        transition: background 0.2s;
    }

    .gallery-prev:hover,
    .gallery-next:hover {
        background: rgba(0, 0, 0, 0.6);
    }
}

.gallery-prev {
    left: 12px;
}

.gallery-next {
    right: 12px;
}

.gallery-prev::before,
.gallery-next::before {
    content: '';
    display: block;
    width: 9px;
    height: 9px;
    border-top: 1.5px solid #fff;
    border-right: 1.5px solid #fff;
}

.gallery-prev::before {
    transform: rotate(-135deg) translate(-2px, 2px);
}

.gallery-next::before {
    transform: rotate(45deg) translate(-2px, 2px);
}

.gallery-fullscreen {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.35);
    border: none;
    border-radius: var(--radius-sm);
    color: #fff;
    font-size: 1rem;
    width: 36px;
    height: 36px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-tap-highlight-color: transparent;
}

@media (hover: hover) {
    .gallery-fullscreen {
        transition: background 0.2s;
    }

    .gallery-fullscreen:hover {
        background: rgba(0, 0, 0, 0.6);
    }
}

.gallery-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
}

.gallery-dot {
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background 0.2s;
}

.gallery-dot.active {
    background: #fff;
}

/* Fullscreen gallery */
.gallery-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
}

.gallery-lightbox .gallery-prev,
.gallery-lightbox .gallery-next {
    position: absolute;
    background: rgba(255, 255, 255, 0.15);
}

.gallery-lightbox .gallery-prev:hover,
.gallery-lightbox .gallery-next:hover {
    background: rgba(255, 255, 255, 0.3);
}

.gallery-lightbox .gallery-prev {
    left: 20px;
}

.gallery-lightbox .gallery-next {
    right: 20px;
}

.gallery-lightbox-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: #fff;
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.gallery-lightbox-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Accordion (FAQ) */
.accordion-item {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    margin-bottom: 10px;
    overflow: hidden;
    transition: box-shadow 0.25s, border-color 0.25s;
}

.accordion-item.open {
    border-color: var(--accent);
    box-shadow: 0 4px 16px rgba(95, 125, 110, 0.12);
}

.accordion-trigger {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 18px 20px;
    font-family: 'Tajawal', sans-serif;
    font-weight: 500;
    font-size: 1.05rem;
    letter-spacing: 0.3px;
    color: var(--ink);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.accordion-trigger:hover {
    color: var(--accent-deep);
}

.accordion-trigger::after {
    content: '+';
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--accent);
    transition: transform 0.3s;
    flex-shrink: 0;
}

.accordion-item.open .accordion-trigger::after {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.accordion-content p,
.accordion-content ul,
.accordion-content li {
    color: var(--ink-soft);
    padding-left: 20px;
    padding-right: 20px;
}

.accordion-content p:last-child,
.accordion-content ul:last-child {
    margin-bottom: 20px;
}

/* WhatsApp floating button */
.whatsapp-fab {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1400;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.whatsapp-fab:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

body.menu-open .whatsapp-fab {
    opacity: 0;
    pointer-events: none;
}

/* Credentials list */
.credentials-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.credentials-list li {
    padding: 12px 0 12px 28px;
    border-bottom: 1px solid var(--line-soft);
    position: relative;
    margin-bottom: 0;
}

.credentials-list li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

/* Review quote */
.review-quote {
    font-style: italic;
    color: var(--ink-soft);
    background: var(--accent-tint);
    border-left: 4px solid var(--accent);
    border-radius: var(--radius);
    padding: 20px 24px;
    margin: 20px 0;
}

.review-quote footer {
    font-size: 0.9rem;
    color: var(--accent-deep);
    font-weight: 500;
    margin-top: 8px;
}

.review-form-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 30px 28px;
    margin-top: 30px;
    box-shadow: 0 6px 24px rgba(43, 39, 34, 0.05);
}

.review-form-card h3 {
    margin-top: 0;
    color: var(--ink);
    border-bottom: none;
}

.review-form-hint {
    color: var(--ink-soft);
    font-size: 0.95rem;
    margin-top: -10px;
    margin-bottom: 18px;
}

.review-status {
    margin-top: 12px;
    font-size: 0.95rem;
    min-height: 1.4em;
    color: var(--accent-deep);
}

.review-status.error {
    color: #b44;
}

/* Arabic reads better with a touch more line-height */
html[dir="rtl"] body {
    line-height: 1.9;
}

/* Modals without gallery need top padding on the card */
.modal-card > h2:first-of-type {
    padding-top: 40px;
}

/* Footer */
footer {
    background: var(--dark);
    color: #fff;
    padding: 50px 20px;
    text-align: center;
    scroll-margin-top: 0;
}

footer h2 {
    color: #fff;
    border-bottom-color: var(--accent);
}

.contacts-list {
    display: inline-flex;
    flex-direction: column;
    text-align: left;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 10px 0;
}

.contact-item a {
    color: #fff;
    text-decoration: none;
}

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

.contact-label {
    display: flex;
    color: rgba(255, 255, 255, 0.45);
    flex-shrink: 0;
}

.contact-address {
    align-items: flex-start;
}

.contact-address .contact-label {
    padding-top: 4px;
}

.contact-address-text {
    color: #fff;
    line-height: 1.4;
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    font: inherit;
    text-align: left;
    cursor: pointer;
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.3);
    text-underline-offset: 3px;
    transition: text-decoration-color 0.2s;
}

.contact-address-text:hover {
    text-decoration-color: #fff;
}

.hero-address {
    display: inline-block;
    margin-top: 0;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: var(--radius);
    padding: 10px 26px;
    color: rgba(255, 255, 255, 0.95);
    font-family: 'Tajawal', sans-serif;
    font-weight: 400;
    font-size: 0.95rem;
    line-height: 1.5;
    letter-spacing: 0.5px;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.hero-address:hover {
    background: rgba(255, 255, 255, 0.22);
    border-color: #fff;
    color: #fff;
}

.navigate-card {
    max-width: 420px;
    text-align: center;
    padding: 40px 30px 30px;
}

.navigate-card h2 {
    border-bottom: none;
    padding: 0;
    margin-bottom: 8px;
}

.navigate-card p {
    color: var(--muted);
    margin-bottom: 24px;
}

.navigate-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.navigate-option {
    display: block;
    padding: 14px 20px;
    background: var(--bg);
    color: var(--ink);
    text-decoration: none;
    border-radius: var(--radius);
    font-family: 'Cairo', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid var(--line);
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.navigate-option:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

.navigate-card > h2,
.navigate-card > p,
.navigate-card > .navigate-options {
    padding-left: 0;
    padding-right: 0;
}

.navigate-card > *:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
}

/* Booking form */
.booking-card {
    padding: 0;
}

.booking-card > h2:first-of-type {
    padding-top: 40px;
}

.booking-sub {
    color: var(--muted);
    margin-bottom: 30px;
    padding: 0 40px;
}

#booking-form {
    padding: 0 40px 40px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-family: 'Cairo', sans-serif;
    font-weight: 600;
    font-size: 0.88rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-deep);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: #faf8f4;
    font-family: 'Tajawal', sans-serif;
    font-weight: 400;
    font-size: 0.95rem;
    color: var(--ink);
    transition: border-color 0.2s, box-shadow 0.2s;
    -webkit-appearance: none;
    appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(95, 125, 110, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #b5ada5;
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%235f7d6e' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

.form-row {
    display: flex;
    gap: 16px;
}

.form-row .form-group {
    flex: 1;
}

.booking-submit {
    width: 100%;
    margin-top: 10px;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    font-family: 'Cairo', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    padding: 15px 40px;
    background: var(--accent);
    color: #fff;
    transition: background 0.2s, transform 0.15s;
}

.booking-submit:hover {
    background: var(--accent-deep);
    transform: translateY(-1px);
}

.booking-note {
    text-align: center;
    color: var(--muted);
    font-size: 0.8rem;
    margin-top: 12px;
    margin-bottom: 0;
}

/* Slot picker */
.slot-picker {
    min-height: 44px;
}

.slot-hint {
    color: var(--muted);
    font-size: 0.9rem;
    margin: 4px 0 0;
}

.slot-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-top: 4px;
}

.slot {
    padding: 10px 4px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: #faf8f4;
    font-family: 'Tajawal', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--ink);
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s, color 0.15s;
    -webkit-tap-highlight-color: transparent;
}

.slot:hover:not(:disabled) {
    border-color: var(--accent);
    color: var(--accent-deep);
}

.slot.selected {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

.slot-taken,
.slot:disabled {
    color: #c4bcb2;
    background: #f0ede8;
    border-color: var(--line-soft);
    cursor: not-allowed;
    text-decoration: line-through;
}

.booking-status {
    text-align: center;
    font-size: 0.85rem;
    margin: 10px 0 0;
    min-height: 1em;
}

.booking-status.error {
    color: #b3261e;
}

.booking-status.success {
    color: #1e7e34;
}

@media (max-width: 768px) {
    .slot-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* RTL booking */
html[dir="rtl"] .form-group select {
    background-position: left 14px center;
    padding-right: 14px;
    padding-left: 36px;
}

html[dir="rtl"] .booking-sub {
    padding: 0 40px;
}

html[dir="rtl"] #booking-form {
    padding: 0 40px 40px;
}

/* Mobile booking */
@media (max-width: 768px) {
    .booking-sub {
        padding: 0 20px;
    }

    #booking-form {
        padding: 0 20px 30px;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    html[dir="rtl"] .booking-sub {
        padding: 0 20px;
    }

    html[dir="rtl"] #booking-form {
        padding: 0 20px 30px;
    }
}

/* RTL (Arabic) */
html[dir="rtl"] .lang-switcher {
    right: auto;
    left: 24px;
}

html[dir="rtl"] .credentials-list li {
    padding: 12px 28px 12px 0;
}

html[dir="rtl"] .credentials-list li::before {
    left: auto;
    right: 0;
}

html[dir="rtl"] .review-quote {
    border-left: none;
    border-right: 4px solid var(--accent);
    padding-left: 24px;
    padding-right: 24px;
}

html[dir="rtl"] .massage-item::after {
    content: '\2190';
}

html[dir="rtl"] .massage-item:hover::after {
    transform: translateX(-4px);
}

html[dir="rtl"] .whatsapp-fab {
    right: auto;
    left: 24px;
}

html[dir="rtl"] .modal-close {
    right: auto;
    left: 12px;
}

html[dir="rtl"] .gallery-prev {
    left: auto;
    right: 12px;
}

html[dir="rtl"] .gallery-next {
    right: auto;
    left: 12px;
}

html[dir="rtl"] .gallery-fullscreen {
    right: auto;
    left: 12px;
}

html[dir="rtl"] .gallery-prev::before {
    transform: rotate(45deg) translate(-2px, 2px);
}

html[dir="rtl"] .gallery-next::before {
    transform: rotate(-135deg) translate(-2px, 2px);
}

html[dir="rtl"] .accordion-trigger::after {
    content: '+';
}

html[dir="rtl"] .contact-item {
    flex-direction: row;
}

html[dir="rtl"] .nav-menu a {
    letter-spacing: 0;
}

html[dir="rtl"] .mobile-menu-list a {
    letter-spacing: 0;
}

html[dir="rtl"] .hero-btn {
    letter-spacing: 0;
    font-weight: 700;
}

html[dir="rtl"] .btn-cta {
    letter-spacing: 0;
}

html[dir="rtl"] .nav-toggle-text {
    letter-spacing: 0;
}

/* Mobile */
@media (max-width: 768px) {
    .nav-toggle {
        display: inline-flex;
    }

    body.menu-open {
        overflow: hidden;
    }

    body.menu-open .lang-switcher {
        opacity: 0;
        pointer-events: none;
    }

    .nav-menu {
        display: none;
    }

    .mobile-menu {
        display: flex;
    }

    .hero {
        padding: 0 20px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    section {
        padding: 40px 20px;
    }

    h2 {
        font-size: 1.4rem;
    }

    .services-card {
        padding: 25px 20px;
    }

    .policy-notice {
        padding: 20px;
    }

    .modal-overlay {
        padding: 20px 12px;
    }

    .modal-card > h2,
    .modal-card > h3,
    .modal-card > p,
    .modal-card > ul {
        padding-left: 20px;
        padding-right: 20px;
    }

    .modal-card > ul {
        padding-left: 40px;
    }

    .price-list li {
        flex-direction: column;
        gap: 5px;
    }

    .price-list .service-price {
        margin-left: 0;
        color: #9a9088;
    }
}
