/* ==========================================================================
   Design Tokens & Custom Properties
   ========================================================================== */
:root {
    /* Brand Colours */
    --color-bg:       #faf9f7;   /* Pearl White — premium, warm, not harsh */
    --color-black:    #0a0a0a;
    --color-white:    #ffffff;
    --color-primary:  #4a1985;   /* Deep purple */
    --color-text:     #1c1c1e;
    --color-text-muted: #5a5a6a;

    /* Typography */
    --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;

    /* Spacing */
    --section-padding: clamp(3.5rem, 9vw, 7rem);

    /* Transitions */
    --ease: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   Reset & Base
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: clamp(1rem, 1.6vw, 1.125rem);
    line-height: 1.8;
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ==========================================================================
   Accessibility — visually hidden but SEO-readable
   ========================================================================== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ==========================================================================
   Container — One Rule, Used Everywhere
   ========================================================================== */
.container {
    width: 100%;
    max-width: 1140px;
    margin-inline: auto;
    padding-inline: clamp(1.25rem, 5vw, 3rem);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

/*
   Hero — Option 1: portrait image centred, brand gradient fills the sides.
   Mobile  → image is full width, height follows aspect ratio naturally.
   Desktop → portrait image is centred and fills the viewport height.
             The left/right side panels are filled with a deep brand
             gradient (black → purple → black) — desktop only.
*/
.hero {
    position: relative;
    width: 100%;
    min-height: 100svh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--color-bg);
    overflow: hidden;
}

/*
   Gradient fade at the bottom of the hero.
   Dissolves the image into the section below for a fluid, seamless feel.
   The colour matches the intro section background exactly.
*/
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: clamp(80px, 18vw, 180px);
    background: linear-gradient(
        to bottom,
        transparent 0%,
        #ede8df 100%
    );
    z-index: 2;
    pointer-events: none;
}

/* The picture element is inline by default — force it to fill the hero */
.hero picture {
    display: block;
    width: 100%;
    position: relative;
    z-index: 1;
}

.hero-img {
    /* Fill the full width — no side gaps, no cropping.
       Image displays at its natural height. */
    width: 100%;
    height: auto;
    display: block;
}

/* ==========================================================================
   Logo — Top-left corner
   ========================================================================== */
.logo-wrap {
    position: absolute;
    top: clamp(1rem, 3vw, 1.75rem);
    left: clamp(1rem, 3vw, 1.75rem);
    z-index: 20;
    display: block;
    line-height: 1;
}

.top-logo {
    width: clamp(55px, 10vw, 90px);
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    border: 2px solid var(--color-white);
    background-color: var(--color-white);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-wrap:hover .top-logo {
    transform: scale(1.06) rotate(3deg);
}

/* ==========================================================================
   Book Now — Top-right corner button
   ========================================================================== */
.btn-book-now {
    position: absolute;
    top: clamp(1rem, 3vw, 1.75rem);
    right: clamp(1rem, 3vw, 1.75rem);
    z-index: 20;
    background-color: var(--color-black);
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: clamp(0.75rem, 1.3vw, 0.9rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: clamp(0.55rem, 1.2vw, 0.8rem) clamp(1.1rem, 2.5vw, 1.75rem);
    border-radius: 50px;
    border: 2px solid var(--color-black);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    transition: var(--ease);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
}

.btn-book-now:hover {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(74, 25, 133, 0.28);
}

/* ==========================================================================
   Hero Buttons — overlaid at the bottom of the hero
   ========================================================================== */
.hero-btns {
    position: absolute;
    bottom: clamp(1.5rem, 5vw, 3.5rem);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.85rem;
    width: 90%;
    z-index: 10;
}

/* ==========================================================================
   Button Component
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: clamp(0.8rem, 1.8vw, 1.1rem) clamp(1.75rem, 4vw, 2.75rem);
    font-family: var(--font-body);
    font-size: clamp(0.85rem, 1.4vw, 1rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border-radius: 50px;
    border: 2px solid transparent;
    cursor: pointer;
    text-decoration: none;
    transition: var(--ease);
    /* Mobile: full-width stack */
    width: 100%;
    max-width: 300px;
}

.btn-dark {
    background-color: var(--color-black);
    color: var(--color-white);
    border-color: var(--color-black);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
}

.btn-dark:hover {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(74, 25, 133, 0.28);
}

/* ==========================================================================
   Content Sections — Spacing & Typography
   ========================================================================== */
.content-section {
    width: 100%;
    padding-block: var(--section-padding);
}

/* Intro section sits right under the hero — less top padding for closeness */
#about {
    padding-top: clamp(1.5rem, 4vw, 3rem);
}

.section-white  { background-color: var(--color-bg); }
.section-cream  { background-color: #ede8df; } /* matches hero banner cream fur edges */
.section-tinted { background-color: #f2f0ed; }
.section-purple { background-color: var(--color-primary); }

/* Section label (small uppercase tag above heading) */
.section-label {
    display: inline-block;
    font-size: clamp(0.7rem, 1.1vw, 0.8rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
}

.label-light { color: rgba(255,255,255,0.65); }

/* Section heading */
.section-heading {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--color-text);
    line-height: 1.2;
    margin-bottom: 0.75rem;
}

.heading-light { color: var(--color-white); }

/* Decorative accent line beneath heading */
.section-divider {
    height: 3px;
    background-color: var(--color-primary);
    border-radius: 2px;
    width: clamp(45px, 7vw, 65px);
    margin-bottom: 1.75rem;
}

.divider-light { background-color: rgba(255,255,255,0.45); }

/* Italic lead sentence */
.section-lead {
    font-family: var(--font-display);
    font-style: italic;
    font-size: clamp(1.05rem, 2vw, 1.3rem);
    color: var(--color-primary);
    margin-bottom: 1.75rem;
}

/* Body paragraph — notice generous margin-bottom for clear paragraphing */
.section-text {
    font-size: clamp(0.95rem, 1.7vw, 1.1rem);
    color: var(--color-text-muted);
    line-height: 1.9;
    max-width: 72ch;        /* keeps lines readable, not wall-of-text wide */
    margin-bottom: 1.5rem;  /* clear visual break between paragraphs */
}

.text-light { color: rgba(255,255,255,0.82); }

/* ==========================================================================
   Services Grid
   ========================================================================== */
.services-grid {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.85rem;
    margin-block: 2rem;
}

.service-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: clamp(0.85rem, 1.8vw, 1.1rem) clamp(1.1rem, 2.5vw, 1.5rem);
    background-color: var(--color-white);
    border: 1px solid rgba(74, 25, 133, 0.1);
    border-radius: 10px;
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    font-weight: 500;
    color: var(--color-text);
    transition: var(--ease);
}

.service-card:hover {
    border-color: var(--color-primary);
    background-color: #f8f4ff;
    transform: translateX(5px);
    box-shadow: 0 4px 14px rgba(74, 25, 133, 0.08);
}

.service-icon {
    color: var(--color-primary);
    font-size: 0.7rem;
    flex-shrink: 0;
}

/* ==========================================================================
   Layout Breakpoints (mobile-first, progressive)
   ========================================================================== */

/* Small tablet (640px+): hero buttons go side-by-side */
@media (min-width: 640px) {
    .hero-btns {
        flex-direction: row;
        justify-content: center;
        gap: 1.25rem;
    }

    .btn {
        width: auto;
    }

    .services-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Desktop (768px+): high-res wide banner — full-bleed, sharp, edge-to-edge */
@media (min-width: 768px) {
    .hero {
        background-color: #ede8df;
        align-items: center;
        min-height: 100svh;
    }

    .hero-img {
        width: 100%;
        height: 100svh;
        object-fit: cover;
        object-position: center center;
    }
}

/* Desktop (1024px+): four-column services */
@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ==========================================================================
   Site Navigation
   ========================================================================== */
.site-nav {
    width: 100%;
    padding-block: clamp(0.85rem, 2vw, 1.1rem);
    background-color: var(--color-black);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 12px rgba(0,0,0,0.18);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.nav-logo {
    font-family: var(--font-display);
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 700;
    color: var(--color-white);
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: var(--ease);
}

.nav-logo:hover {
    color: #c9a8f5;
}

.btn-sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.8rem;
}

/* ==========================================================================
   Page Hero — About page header banner
   ========================================================================== */
.page-hero {
    width: 100%;
    background: linear-gradient(135deg, #0d0518 0%, #2e1060 45%, #4a1985 100%);
    padding-block: clamp(3.5rem, 10vw, 7rem);
    text-align: center;
}

.page-hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.page-hero-label {
    font-size: clamp(0.7rem, 1.2vw, 0.8rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: rgba(255,255,255,0.55);
}

.page-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 6vw, 3.75rem);
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.15;
}

.page-hero-sub {
    font-size: clamp(0.95rem, 2vw, 1.15rem);
    color: rgba(255,255,255,0.7);
    font-style: italic;
    font-family: var(--font-display);
}

/* ==========================================================================
   About Layout — two column on desktop
   ========================================================================== */
.about-layout {
    display: flex;
    flex-direction: column;
    gap: clamp(2rem, 5vw, 4rem);
}

/* Photo placeholder — shown until real photo is uploaded */
.about-img-wrap {
    width: 100%;
    margin-block: 1.5rem; /* Space around it in the text flow on mobile */
}

.about-img-placeholder {
    width: 100%;
    aspect-ratio: 4 / 5;
    max-height: 480px;
    background: linear-gradient(135deg, #2e1060, #4a1985);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.about-img-placeholder-empty {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5;
    max-height: 480px;
    background: rgba(74, 25, 133, 0.02); /* Extremely subtle brand tint */
    border: 1px dashed rgba(74, 25, 133, 0.15); /* Light dashed line reserving the space */
    border-radius: 16px;
}

.placeholder-icon {
    font-size: clamp(2.5rem, 6vw, 4rem);
}

.placeholder-text {
    color: rgba(255,255,255,0.65);
    font-size: 0.9rem;
    text-align: center;
    line-height: 1.6;
}

/* Real photo — swap out placeholder once image is ready */
.about-img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 16px;
    display: block;
    box-shadow: 0 16px 48px rgba(74, 25, 133, 0.15);
}

.about-text {
    display: flex;
    flex-direction: column;
}

/* ==========================================================================
   Credentials Grid
   ========================================================================== */
.credentials-grid {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-top: 2.5rem;
}

.credential-card {
    background-color: var(--color-bg);
    border: 1px solid rgba(74, 25, 133, 0.1);
    border-radius: 12px;
    padding: clamp(1.25rem, 3vw, 1.75rem);
    transition: var(--ease);
}

.credential-card:hover {
    border-color: var(--color-primary);
    box-shadow: 0 6px 24px rgba(74, 25, 133, 0.1);
    transform: translateY(-3px);
}

.credential-icon {
    font-size: clamp(1.5rem, 3vw, 2rem);
    display: block;
    margin-bottom: 0.75rem;
}

.credential-title {
    font-family: var(--font-display);
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.credential-desc {
    font-size: clamp(0.875rem, 1.5vw, 0.95rem);
    color: var(--color-text-muted);
    line-height: 1.7;
}

/* ==========================================================================
   Button Variants
   ========================================================================== */
.btn-light {
    background-color: var(--color-white);
    color: var(--color-primary);
    border-color: var(--color-white);
    font-weight: 700;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    display: inline-flex;
    width: auto;
}

.btn-light:hover {
    background-color: #f0e6ff;
    border-color: #f0e6ff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* ==========================================================================
   Site Footer
   ========================================================================== */
.site-footer {
    background-color: var(--color-black);
    padding-block: clamp(2rem, 5vw, 3.5rem);
    text-align: center;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.footer-brand {
    font-family: var(--font-display);
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 0.25rem;
}

.footer-copy {
    font-size: clamp(0.8rem, 1.3vw, 0.9rem);
    color: rgba(255,255,255,0.45);
    line-height: 1.7;
}

/* ==========================================================================
   About Page Breakpoints
   ========================================================================== */
@media (min-width: 768px) {
    .about-layout {
        display: grid;
        grid-template-columns: clamp(260px, 38%, 400px) 1fr;
        gap: clamp(2rem, 5vw, 4rem);
        align-items: start;
    }

    .about-layout > :not(.about-img-wrap) {
        grid-column: 2;
    }

    .about-img-wrap {
        grid-column: 1;
        grid-row: 1 / span 10;
        margin-block: 0;
        width: 100%;
    }

    .credentials-grid {
        grid-template-columns: 1fr 1fr;
    }
}

    .credentials-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ==========================================================================
   Booking & Contact Section
   ========================================================================== */
.booking-container {
    display: flex;
    flex-direction: column;
    gap: clamp(2rem, 5vh, 4rem);
}

.booking-info {
    display: flex;
    flex-direction: column;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 1.75rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-icon {
    font-size: 1.25rem;
    color: var(--color-primary);
    background-color: rgba(74, 25, 133, 0.08);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 0.15rem;
}

.contact-desc {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

/* Form Wrap Card */
.booking-form-wrap {
    width: 100%;
    background-color: var(--color-white);
    border-radius: 16px;
    padding: clamp(1.25rem, 4vw, 2.25rem);
    box-shadow: 0 10px 30px rgba(74, 25, 133, 0.05);
    border: 1px solid rgba(74, 25, 133, 0.08);
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.form-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-text);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-input {
    width: 100%;
    font-family: var(--font-body);
    font-size: 0.95rem;
    padding: 0.8rem 1rem;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 8px;
    background-color: #fafafa;
    color: var(--color-text);
    transition: var(--ease);
}

.form-input:focus {
    outline: none;
    border-color: var(--color-primary);
    background-color: var(--color-white);
    box-shadow: 0 0 0 3px rgba(74, 25, 133, 0.12);
}

select.form-input {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%234a1985' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.1rem;
    padding-right: 2.5rem;
    cursor: pointer;
}

.btn-submit {
    margin-top: 0.5rem;
    max-width: 100%;
    padding-block: 0.9rem;
}

/* ==========================================================================
   Layout Adaptations
   ========================================================================== */
@media (min-width: 768px) {
    .booking-container {
        flex-direction: row;
        align-items: center;
    }

    .booking-info,
    .booking-form-wrap {
        flex: 1;
    }

    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

/* ==========================================================================
   Transformations Carousel — 3D Perspective Coverflow
   ========================================================================== */

/* The viewport sets up the 3D perspective context */
.carousel-viewport {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding-block: 2rem 0;
    /* perspective creates the 3D depth for all child transforms */
    perspective: 1100px;
    perspective-origin: center center;
}

/* Track: fixed height container for absolute-positioned slides */
.carousel-track {
    position: relative;
    width: 100%;
    height: clamp(340px, 52vw, 500px);
    transition: none;
}

/* Every slide is absolutely positioned within the track */
.carousel-slide {
    position: absolute;
    /* Center each slide in the track container */
    top: 50%;
    left: 50%;
    width: clamp(230px, 45vw, 290px);
    /* pull back by half the card width so it starts centered */
    margin-left: calc(clamp(230px, 45vw, 290px) / -2);
    margin-top: 0;
    /* use transform-origin at top-center so rotateY fans correctly */
    transform-origin: center center;
    transform-style: preserve-3d;
    transition: transform 0.55s cubic-bezier(0.25, 1, 0.5, 1),
                opacity 0.55s ease,
                filter 0.55s ease;
    cursor: pointer;
    /* Default: hidden (no class assigned) */
    opacity: 0;
    pointer-events: none;
}

/* ACTIVE — center card: flat, full-size, elevated, translateY(-50%) to align to top:50% */
.carousel-slide.active {
    transform: translateY(-50%) translateX(0) rotateY(0deg) scale(1);
    opacity: 1;
    z-index: 10;
    cursor: default;
    filter: none;
    pointer-events: auto;
}

/* PREV — immediately left: shifted left, tilted right in 3D, slightly smaller */
.carousel-slide.prev {
    transform: translateY(-50%) translateX(-80%) rotateY(40deg) scale(0.8);
    opacity: 0.72;
    z-index: 7;
    filter: brightness(0.72);
    pointer-events: auto;
}

/* NEXT — immediately right: shifted right, tilted left in 3D, slightly smaller */
.carousel-slide.next {
    transform: translateY(-50%) translateX(80%) rotateY(-40deg) scale(0.8);
    opacity: 0.72;
    z-index: 7;
    filter: brightness(0.72);
    pointer-events: auto;
}

/* FAR-PREV — two+ left: deeper shift, more rotateY tilt, smaller */
.carousel-slide.far-prev {
    transform: translateY(-50%) translateX(-140%) rotateY(54deg) scale(0.62);
    opacity: 0.38;
    z-index: 4;
    filter: brightness(0.52);
    pointer-events: auto;
}

/* FAR-NEXT — two+ right: deeper shift, more rotateY tilt, smaller */
.carousel-slide.far-next {
    transform: translateY(-50%) translateX(140%) rotateY(-54deg) scale(0.62);
    opacity: 0.38;
    z-index: 4;
    filter: brightness(0.52);
    pointer-events: auto;
}

/* Card inner — portrait photo */
.comparison-card {
    position: relative;
    border-radius: clamp(10px, 2vw, 18px);
    overflow: hidden;
    box-shadow:
        0 6px 16px rgba(0, 0, 0, 0.12),
        0 24px 48px rgba(74, 25, 133, 0.14);
    aspect-ratio: 3 / 4;
    background-color: #e4dfd6;
}

/* Active card gets a deeper, richer shadow */
.carousel-slide.active .comparison-card {
    box-shadow:
        0 8px 24px rgba(0, 0, 0, 0.18),
        0 32px 64px rgba(74, 25, 133, 0.22);
}

.comparison-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.carousel-slide.active .comparison-img:hover {
    transform: scale(1.04);
}

.comparison-tag {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background-color: rgba(10, 4, 20, 0.72);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.35rem 0.8rem;
    border-radius: 6px;
    z-index: 10;
    backdrop-filter: blur(6px);
}

/* Nav Controls */
.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    margin-top: 1rem;
}

.carousel-btn {
    background-color: var(--color-white);
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--ease);
    box-shadow: 0 6px 16px rgba(74, 25, 133, 0.08);
}

.carousel-btn:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(74, 25, 133, 0.2);
}

.carousel-btn svg {
    transition: transform 0.3s ease;
}

.carousel-btn:hover svg {
    transform: scale(1.1);
}

/* ==========================================================================
   Unified Booking Form Styles
   ========================================================================== */
.booking-layout {
    max-width: 680px;
    margin-inline: auto;
}

.booking-form-card {
    background: #fff;
    border-radius: 20px;
    padding: clamp(1.5rem, 4vw, 2.5rem);
    box-shadow: 0 4px 32px rgba(74, 25, 133, 0.09);
    border: 1px solid rgba(74, 25, 133, 0.08);
}

.form-card-title {
    font-family: var(--font-display);
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 0.2rem;
}

.form-card-sub {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin-bottom: 1.75rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.1rem;
}

@media (min-width: 560px) {
    .form-grid { grid-template-columns: 1fr 1fr; }
    .form-group-full { grid-column: 1 / -1; }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--color-text);
}

.form-label .optional {
    font-weight: 400;
    color: var(--color-text-muted);
    font-size: 0.78rem;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.78rem 1rem;
    border: 1.5px solid #e2ddf5;
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--color-text);
    background: #faf9f7;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    outline: none;
    -webkit-appearance: none;
}

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

.form-input:focus,
.form-textarea:focus {
    border-color: var(--color-primary);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(74, 25, 133, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 110px;
    line-height: 1.6;
}

.form-divider {
    border: none;
    border-top: 1px solid #ece8f5;
    margin-block: 1.5rem;
}

.deposit-reminder {
    background: linear-gradient(135deg, #f3eeff, #ece8f5);
    border: 1px solid rgba(74, 25, 133, 0.15);
    border-radius: 12px;
    padding: 0.9rem 1.1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    margin-bottom: 1.25rem;
}

.deposit-reminder-icon { font-size: 1.3rem; flex-shrink: 0; }

.deposit-reminder-text {
    font-size: 0.85rem;
    color: #3a0f6e;
    line-height: 1.55;
}

.deposit-reminder-text strong { font-weight: 700; }

.btn-book-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    width: 100%;
    max-width: 320px;
    margin-inline: auto;
    margin-top: 1.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #4a1985, #7b3bbf);
    color: #fff !important;
    text-decoration: none !important;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 6px 24px rgba(74, 25, 133, 0.35);
}

.btn-book-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(74, 25, 133, 0.45);
    color: #fff !important;
    text-decoration: none !important;
}

.btn-book-submit:active { transform: translateY(0); }

/* ==========================================================================
   Services & Pricing Menu Styles
   ========================================================================== */
/* ==========================================================================
   Services & Pricing Menu Styles (Spa-like Elegant List Layout)
   ========================================================================== */
.pricing-section-container {
    padding-block: clamp(3rem, 7vw, 5rem);
}

.pricing-category-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    text-align: left;
}

.pricing-category-desc {
    font-size: clamp(0.95rem, 1.6vw, 1.05rem);
    color: var(--color-text-muted);
    margin-bottom: 2.5rem;
    text-align: left;
    max-width: 75ch;
}

.menu-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 800px;
    margin-inline: auto;
    margin-bottom: 4.5rem;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 0.75rem;
}

.menu-item-title {
    font-family: var(--font-body);
    font-size: clamp(1rem, 2vw, 1.15rem);
    font-weight: 600;
    color: var(--color-text);
    line-height: 1.2;
}

.menu-item-dots {
    flex-grow: 1;
    border-bottom: 2px dotted rgba(74, 25, 133, 0.18);
    margin-bottom: 0.35rem;
}

.menu-item-price {
    font-family: var(--font-display);
    font-size: clamp(1.3rem, 2.5vw, 1.6rem);
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
}

/* ==========================================================================
   Section Dark Theme
   ========================================================================== */
.section-dark {
    background-color: #121016; /* Premium dark violet-black background */
    color: var(--color-white);
}

/* ==========================================================================
   FAQ Section Styles
   ========================================================================== */
.faq-container {
    max-width: 800px;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.faq-item {
    background-color: #1c1921; /* Slightly lighter container card */
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.25rem 1.75rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
    transition: background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.faq-item[open] {
    background-color: #221e29;
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.faq-question {
    font-family: var(--font-body);
    font-size: clamp(1rem, 2.2vw, 1.15rem);
    font-weight: 700;
    color: var(--color-white);
    cursor: pointer;
    list-style: none; /* Hide default summary arrow */
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    user-select: none;
}

/* Hide default arrow in Webkit/Blink */
.faq-question::-webkit-details-marker {
    display: none;
}

/* Custom interactive arrow icon inside a circular container, as in the image */
.faq-question::after {
    content: '';
    width: 38px;
    height: 38px;
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 14px;
    transition: transform 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
    flex-shrink: 0;
}

.faq-item[open] .faq-question::after {
    transform: rotate(180deg);
    background-color: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
}

.faq-answer {
    margin-top: 1rem;
    font-size: 0.96rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.72);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1rem;
}

.faq-answer p:not(:last-child) {
    margin-bottom: 0.65rem;
}

/* ==========================================================================
   Homepage Contact Section Styles
   ========================================================================== */
.contact-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
    margin-top: 2rem;
}

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

.contact-card {
    background-color: var(--color-white);
    border: 1px solid rgba(74, 25, 133, 0.08);
    border-radius: 16px;
    padding: clamp(1.5rem, 3vw, 2.25rem) clamp(1.25rem, 2vw, 1.5rem);
    box-shadow: 0 4px 16px rgba(74, 25, 133, 0.015);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-2px);
    border-color: rgba(74, 25, 133, 0.15);
    box-shadow: 0 8px 24px rgba(74, 25, 133, 0.04);
}

.contact-card-icon {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    display: block;
    margin-bottom: 0.75rem;
}

.contact-card-title {
    font-family: var(--font-body);
    font-size: clamp(1.05rem, 2vw, 1.15rem);
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.contact-card-link {
    color: var(--color-primary);
    font-weight: 700;
    text-decoration: underline;
    font-size: clamp(1rem, 2vw, 1.15rem);
    transition: opacity 0.2s ease;
}

.contact-card-link:hover {
    opacity: 0.8;
}

.contact-card-text {
    line-height: 1.5;
    font-size: 0.95rem;
    color: var(--color-text-muted);
    font-weight: 500;
    margin-bottom: 1rem;
}

.contact-social-card {
    background-color: var(--color-white);
    border: 1px solid rgba(74, 25, 133, 0.08);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 16px rgba(74, 25, 133, 0.015);
    text-align: center;
    max-width: 600px;
    margin-inline: auto;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-social-card:hover {
    transform: translateY(-2px);
    border-color: rgba(74, 25, 133, 0.15);
    box-shadow: 0 8px 24px rgba(74, 25, 133, 0.04);
}

.contact-social-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-width: 320px;
    margin-inline: auto;
    margin-top: 1.25rem;
}

@media (min-width: 640px) {
    .contact-social-buttons {
        flex-direction: row;
        max-width: none;
        justify-content: center;
    }
    .contact-social-buttons .btn {
        width: 180px;
    }
}

/* ==========================================================================
   Homepage Testimonials Section Styles
   ========================================================================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background-color: var(--color-white);
    border: 1px solid rgba(74, 25, 133, 0.08);
    border-radius: 18px;
    padding: clamp(1.5rem, 3.5vw, 2rem);
    box-shadow: 0 4px 20px rgba(74, 25, 133, 0.02);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-3px);
    border-color: rgba(74, 25, 133, 0.15);
    box-shadow: 0 8px 24px rgba(74, 25, 133, 0.05);
}

/* Double column featured card for the long, detailed review! */
@media (min-width: 768px) {
    .testimonial-card.featured-review {
        grid-column: span 2;
    }
}

.testimonial-quote {
    font-size: clamp(0.95rem, 1.6vw, 1.05rem);
    line-height: 1.6;
    color: var(--color-text);
    font-weight: 500;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

/* Quote bubble decorative element */
.testimonial-card::before {
    content: '“';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-family: var(--font-display);
    font-size: 5rem;
    color: rgba(74, 25, 133, 0.04);
    line-height: 1;
    font-weight: 900;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-top: 1px solid #f2eff7;
    padding-top: 1rem;
}

.testimonial-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(74, 25, 133, 0.08);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.testimonial-meta h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 0.1rem;
}

.testimonial-meta p {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}




