/* ==========================================================================
   PARADISE SALON - ELEGANT EDITORIAL STYLESHEET
   Location: Sialkot, Pakistan (Opposite Mall of Sialkot)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. ROOT VARIABLES & THEME PALETTE
   -------------------------------------------------------------------------- */
:root {
    /* Required Brand Color System */
    --ps-primary: #211A1D;       /* Dark charcoal / 20% weight */
    --ps-primary-rgb: 33, 26, 29;
    --ps-cream: #FAF7F2;         /* Luxury cream / primary background */
    --ps-cream-rgb: 250, 247, 242;
    --ps-white: #FFFFFF;         /* Crisp white / 65% white & cream combined */
    --ps-beige: #E7D7C9;         /* Warm beige */
    --ps-blush: #F3E8E5;         /* Soft blush */
    --ps-rose: #B9828C;          /* Muted rose / 10% weight */
    --ps-rose-dark: #9F6B75;
    --ps-gold: #B79A67;          /* Small luxury accent / 5% weight */
    --ps-gold-light: #C9AF7E;
    --ps-text: #242124;          /* Dark readable body text */
    --ps-muted: #6B6568;         /* Subdued neutral */
    --ps-border: #E8DFD8;        /* Subtle border tone */
    --ps-border-light: #F0EAE3;

    /* Typography */
    --font-heading: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
    --font-serif-alt: 'Cormorant Garamond', serif;
    --font-body: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Spacing & Transitions */
    --transition-smooth: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-subtle: 0 4px 20px rgba(33, 26, 29, 0.05);
    --shadow-card: 0 10px 30px rgba(33, 26, 29, 0.07);
    --shadow-elevated: 0 16px 40px rgba(33, 26, 29, 0.1);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 14px;
    --radius-pill: 999px;
}

/* --------------------------------------------------------------------------
   2. GLOBAL RESET & BASE STYLES
   -------------------------------------------------------------------------- */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--ps-text);
    background-color: var(--ps-cream);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6,
.font-serif {
    font-family: var(--font-heading);
    color: var(--ps-primary);
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.25;
}

p {
    margin-bottom: 1rem;
    color: var(--ps-text);
}

a {
    color: var(--ps-primary);
    text-decoration: none;
    transition: var(--transition-smooth);
}

a:hover {
    color: var(--ps-rose);
}

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

/* --------------------------------------------------------------------------
   3. TYPOGRAPHY HELPERS & ACCENTS
   -------------------------------------------------------------------------- */
.eyebrow {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-weight: 600;
    color: var(--ps-rose);
    display: inline-block;
    margin-bottom: 0.6rem;
}

.eyebrow-gold {
    color: var(--ps-gold);
}

.heading-display {
    font-size: clamp(2.4rem, 5.5vw, 4.2rem);
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.heading-section {
    font-size: clamp(1.9rem, 3.8vw, 2.75rem);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 0.75rem;
}

.lead-text {
    font-size: 1.125rem;
    color: var(--ps-muted);
    line-height: 1.7;
    font-weight: 400;
}

.accent-line {
    width: 50px;
    height: 2px;
    background-color: var(--ps-gold);
    display: block;
    margin: 1rem auto;
}

.accent-line-left {
    margin: 1rem 0;
}

/* --------------------------------------------------------------------------
   4. BUTTONS & INTERACTIVE ELEMENTS
   -------------------------------------------------------------------------- */
.btn-luxury {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    background-color: var(--ps-primary);
    color: var(--ps-white) !important;
    padding: 0.85rem 1.85rem;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 1px solid var(--ps-primary);
    border-radius: var(--radius-sm);
    transition: var(--transition-smooth);
    position: relative;
}

.btn-luxury:hover {
    background-color: var(--ps-rose);
    border-color: var(--ps-rose);
    color: var(--ps-white) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(185, 130, 140, 0.3);
}

.btn-luxury-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    background-color: transparent;
    color: var(--ps-primary) !important;
    padding: 0.85rem 1.85rem;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 1px solid var(--ps-primary);
    border-radius: var(--radius-sm);
    transition: var(--transition-smooth);
}

.btn-luxury-outline:hover {
    background-color: var(--ps-primary);
    color: var(--ps-white) !important;
    transform: translateY(-2px);
}

.btn-luxury-gold {
    background-color: var(--ps-gold);
    color: var(--ps-white) !important;
    border: 1px solid var(--ps-gold);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.85rem 1.85rem;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    transition: var(--transition-smooth);
}

.btn-luxury-gold:hover {
    background-color: var(--ps-primary);
    border-color: var(--ps-primary);
    color: var(--ps-white) !important;
    transform: translateY(-2px);
}

.btn-luxury-rose {
    background-color: var(--ps-rose);
    color: var(--ps-white) !important;
    border: 1px solid var(--ps-rose);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.85rem 1.85rem;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    transition: var(--transition-smooth);
}

.btn-luxury-rose:hover {
    background-color: var(--ps-rose-dark);
    border-color: var(--ps-rose-dark);
    color: var(--ps-white) !important;
}

.btn-link-editorial {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.86rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ps-primary);
    position: relative;
    padding-bottom: 2px;
}

.btn-link-editorial::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--ps-gold);
    transition: var(--transition-smooth);
}

.btn-link-editorial:hover {
    color: var(--ps-rose);
}

.btn-link-editorial:hover::after {
    background-color: var(--ps-rose);
    width: 110%;
}

/* --------------------------------------------------------------------------
   5. TOPBAR & STICKY NAVIGATION
   -------------------------------------------------------------------------- */
.topbar {
    background-color: var(--ps-primary);
    color: var(--ps-beige);
    font-size: 0.82rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(231, 215, 201, 0.1);
}

.topbar a {
    color: var(--ps-beige);
    transition: var(--transition-smooth);
}

.topbar a:hover {
    color: var(--ps-white);
}

.topbar-item {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.topbar-item i {
    color: var(--ps-gold);
}

.main-header {
    background-color: rgba(250, 247, 242, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
    border-bottom: 1px solid var(--ps-border-light);
    position: sticky;
    top: 0;
    z-index: 1020;
}

.main-header.is-scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(33, 26, 29, 0.06);
    padding-top: 0.4rem !important;
    padding-bottom: 0.4rem !important;
}

.navbar-brand-logo {
    display: flex;
    flex-direction: column;
}

.brand-title {
    font-family: var(--font-heading);
    font-size: 1.65rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: var(--ps-primary);
    line-height: 1;
    text-transform: uppercase;
}

.brand-subtitle {
    font-size: 0.65rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--ps-rose);
    font-weight: 500;
    margin-top: 2px;
}

.nav-link-editorial {
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ps-primary) !important;
    padding: 0.6rem 1.1rem !important;
    position: relative;
    transition: var(--transition-smooth);
}

.nav-link-editorial::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--ps-gold);
    transition: var(--transition-smooth);
}

.nav-link-editorial:hover::after,
.nav-link-editorial.active::after {
    width: 25px;
}

.nav-link-editorial.active {
    color: var(--ps-rose) !important;
}

/* Mobile Offcanvas */
.offcanvas-luxury {
    background-color: var(--ps-primary);
    color: var(--ps-cream);
    width: 320px !important;
}

.offcanvas-luxury .btn-close {
    filter: invert(1) grayscale(100%) brightness(200%);
}

.offcanvas-luxury .nav-link {
    color: var(--ps-cream);
    font-family: var(--font-heading);
    font-size: 1.35rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(231, 215, 201, 0.08);
    transition: var(--transition-smooth);
}

.offcanvas-luxury .nav-link:hover,
.offcanvas-luxury .nav-link.active {
    color: var(--ps-gold);
    padding-left: 0.5rem;
}

/* --------------------------------------------------------------------------
   6. HERO SECTION
   -------------------------------------------------------------------------- */
.hero-section {
    position: relative;
    background-color: var(--ps-primary);
    color: var(--ps-white);
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(33, 26, 29, 0.92) 0%, rgba(33, 26, 29, 0.75) 50%, rgba(33, 26, 29, 0.45) 100%);
    z-index: 1;
}

.hero-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 5rem 0;
}

.hero-tagline {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--ps-beige);
    border-bottom: 1px solid rgba(183, 154, 103, 0.5);
    padding-bottom: 0.4rem;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: clamp(2.8rem, 6.5vw, 4.8rem);
    color: var(--ps-white);
    font-weight: 500;
    line-height: 1.08;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.hero-title span {
    font-style: italic;
    font-weight: 400;
    color: var(--ps-beige);
}

.hero-subtitle {
    font-size: 1.15rem;
    line-height: 1.7;
    color: rgba(250, 247, 242, 0.85);
    max-width: 540px;
    margin-bottom: 2.2rem;
}

.hero-call-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(231, 215, 201, 0.2);
    padding: 0.65rem 1.25rem;
    border-radius: var(--radius-pill);
    color: var(--ps-cream);
    font-size: 0.9rem;
    margin-top: 1.5rem;
}

.hero-call-badge i {
    color: var(--ps-gold);
}

/* Quick Info Strip Below Hero */
.quick-info-strip {
    background-color: var(--ps-white);
    border-bottom: 1px solid var(--ps-border);
    padding: 1.25rem 0;
}

.quick-info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem 1rem;
}

.quick-info-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--ps-blush);
    color: var(--ps-rose);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.quick-info-text h6 {
    font-family: var(--font-body);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.15rem;
    color: var(--ps-muted);
}

.quick-info-text p {
    margin-bottom: 0;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--ps-primary);
}

/* --------------------------------------------------------------------------
   7. SERVICES CARDS & EDITORIAL GRID
   -------------------------------------------------------------------------- */
.service-card {
    background-color: var(--ps-white);
    border: 1px solid var(--ps-border-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card);
    border-color: var(--ps-beige);
}

.service-card-img-wrap {
    position: relative;
    height: 250px;
    overflow: hidden;
    background-color: var(--ps-blush);
}

.service-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover .service-card-img {
    transform: scale(1.05);
}

.service-card-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: rgba(33, 26, 29, 0.88);
    backdrop-filter: blur(4px);
    color: var(--ps-beige);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.35rem 0.8rem;
    border-radius: var(--radius-sm);
    z-index: 2;
}

.service-card-body {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-card-category {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--ps-rose);
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.service-card-title {
    font-size: 1.45rem;
    margin-bottom: 0.65rem;
    font-weight: 600;
}

.service-card-desc {
    font-size: 0.92rem;
    color: var(--ps-muted);
    line-height: 1.6;
    margin-bottom: 1.25rem;
    flex-grow: 1;
}

.service-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid var(--ps-border-light);
}

.service-price-note {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--ps-gold);
}

/* --------------------------------------------------------------------------
   8. ABOUT SECTION & EDITORIAL SPLIT
   -------------------------------------------------------------------------- */
.about-section {
    padding: 6rem 0;
    background-color: var(--ps-cream);
}

.about-img-frame {
    position: relative;
    padding: 1.25rem;
}

.about-img-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 75%;
    height: 75%;
    border: 2px solid var(--ps-gold);
    z-index: 0;
}

.about-main-img {
    position: relative;
    z-index: 1;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-card);
    width: 100%;
    height: 480px;
    object-fit: cover;
}

.about-badge-floating {
    position: absolute;
    bottom: 2.5rem;
    right: 0;
    z-index: 2;
    background-color: var(--ps-primary);
    color: var(--ps-white);
    padding: 1.25rem 1.6rem;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-elevated);
    border-left: 3px solid var(--ps-gold);
}

.about-badge-floating .number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1;
    color: var(--ps-beige);
}

.about-badge-floating .label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ps-cream);
    margin-top: 0.2rem;
}

/* --------------------------------------------------------------------------
   9. BEFORE / AFTER COMPARISON SECTION
   -------------------------------------------------------------------------- */
.before-after-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    height: 480px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-elevated);
    user-select: none;
    -webkit-user-select: none;
}

.ba-image-before,
.ba-image-after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.ba-image-before {
    z-index: 1;
}

.ba-image-after {
    z-index: 2;
    width: 50%; /* controlled by slider */
    border-right: 2px solid var(--ps-white);
    overflow: hidden;
}

.ba-label {
    position: absolute;
    top: 1.25rem;
    background-color: rgba(33, 26, 29, 0.8);
    color: var(--ps-white);
    padding: 0.35rem 0.85rem;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    z-index: 4;
}

.ba-label-before {
    right: 1.25rem;
}

.ba-label-after {
    left: 1.25rem;
}

.ba-slider-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background-color: var(--ps-white);
    z-index: 5;
    cursor: ew-resize;
    transform: translateX(-50%);
}

.ba-handle-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--ps-primary);
    color: var(--ps-white);
    border: 2px solid var(--ps-white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    font-size: 1rem;
}

/* --------------------------------------------------------------------------
   10. WHY CHOOSE US
   -------------------------------------------------------------------------- */
.feature-box {
    background-color: var(--ps-white);
    border: 1px solid var(--ps-border-light);
    border-radius: var(--radius-md);
    padding: 2.2rem 1.8rem;
    height: 100%;
    transition: var(--transition-smooth);
    position: relative;
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background-color: transparent;
    transition: var(--transition-smooth);
    border-top-left-radius: var(--radius-md);
    border-top-right-radius: var(--radius-md);
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card);
    border-color: var(--ps-border);
}

.feature-box:hover::before {
    background-color: var(--ps-rose);
}

.feature-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: var(--ps-blush);
    color: var(--ps-rose);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1.25rem;
    transition: var(--transition-smooth);
}

.feature-box:hover .feature-icon-wrap {
    background-color: var(--ps-primary);
    color: var(--ps-beige);
}

.feature-title {
    font-size: 1.25rem;
    margin-bottom: 0.6rem;
}

.feature-desc {
    font-size: 0.92rem;
    color: var(--ps-muted);
    line-height: 1.6;
    margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   11. GALLERY SECTION & LIGHTBOX
   -------------------------------------------------------------------------- */
.gallery-filter-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.gallery-filter-btn {
    background-color: var(--ps-white);
    border: 1px solid var(--ps-border);
    color: var(--ps-primary);
    padding: 0.5rem 1.25rem;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
    background-color: var(--ps-primary);
    color: var(--ps-white);
    border-color: var(--ps-primary);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    cursor: pointer;
    background-color: var(--ps-blush);
    margin-bottom: 1.5rem;
}

.gallery-item img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover img {
    transform: scale(1.06);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(33, 26, 29, 0.85) 0%, rgba(33, 26, 29, 0.2) 60%, transparent 100%);
    opacity: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-caption {
    color: var(--ps-white);
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: 0.2rem;
}

.gallery-tag {
    color: var(--ps-beige);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Lightbox Modal */
.ps-lightbox {
    position: fixed;
    inset: 0;
    background-color: rgba(20, 15, 17, 0.95);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ps-lightbox.is-active {
    display: flex;
    opacity: 1;
}

.ps-lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ps-lightbox-img {
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
    border-radius: var(--radius-sm);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

.ps-lightbox-caption {
    color: var(--ps-cream);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-top: 1rem;
    text-align: center;
}

.ps-lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2.5rem;
    background: transparent;
    border: none;
    color: var(--ps-white);
    font-size: 2.2rem;
    cursor: pointer;
    z-index: 10001;
    transition: var(--transition-smooth);
}

.ps-lightbox-close:hover {
    color: var(--ps-rose);
    transform: scale(1.1);
}

.ps-lightbox-prev,
.ps-lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--ps-white);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    z-index: 10000;
}

.ps-lightbox-prev { left: 2rem; }
.ps-lightbox-next { right: 2rem; }

.ps-lightbox-prev:hover,
.ps-lightbox-next:hover {
    background-color: var(--ps-rose);
    border-color: var(--ps-rose);
}

/* --------------------------------------------------------------------------
   12. REVIEWS & GOOGLE TESTIMONIALS
   -------------------------------------------------------------------------- */
.reviews-section {
    background-color: var(--ps-white);
    padding: 6rem 0;
    border-top: 1px solid var(--ps-border-light);
    border-bottom: 1px solid var(--ps-border-light);
}

.review-badge-card {
    background-color: var(--ps-cream);
    border: 1px solid var(--ps-border);
    border-radius: var(--radius-md);
    padding: 2rem;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.review-stars {
    color: #F4B400; /* Google star gold */
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.review-card {
    background-color: var(--ps-cream);
    border: 1px solid var(--ps-border-light);
    border-radius: var(--radius-md);
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition-smooth);
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-subtle);
    border-color: var(--ps-border);
}

.review-card-header {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 1rem;
}

.reviewer-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--ps-beige);
    color: var(--ps-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.reviewer-info h6 {
    margin-bottom: 0.15rem;
    font-size: 0.95rem;
    font-weight: 600;
}

.reviewer-info span {
    font-size: 0.75rem;
    color: var(--ps-muted);
}

.review-card-text {
    font-size: 0.94rem;
    color: var(--ps-text);
    line-height: 1.65;
    font-style: italic;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.review-source-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    color: var(--ps-muted);
    font-weight: 500;
}

.review-source-tag i {
    color: #4285F4; /* Google blue */
}

/* --------------------------------------------------------------------------
   13. INSTAGRAM & SOCIAL BANNER
   -------------------------------------------------------------------------- */
.instagram-banner {
    background-color: var(--ps-primary);
    color: var(--ps-white);
    padding: 5rem 0 0 0;
}

.insta-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0.5rem;
    margin-top: 3rem;
}

.insta-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
}

.insta-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.insta-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(33, 26, 29, 0.7);
    color: var(--ps-white);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
    font-size: 1.4rem;
}

.insta-item:hover img {
    transform: scale(1.08);
}

.insta-item:hover .insta-overlay {
    opacity: 1;
}

/* --------------------------------------------------------------------------
   14. BOOKING CTA FULL-WIDTH SECTION
   -------------------------------------------------------------------------- */
.booking-cta-section {
    position: relative;
    background-color: var(--ps-primary);
    color: var(--ps-white);
    padding: 6rem 0;
    text-align: center;
    overflow: hidden;
}

.booking-cta-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(185, 130, 140, 0.15) 0%, rgba(33, 26, 29, 0.95) 75%);
    z-index: 1;
}

.booking-cta-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    margin: 0 auto;
}

.booking-cta-title {
    color: var(--ps-white);
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    margin-bottom: 1.25rem;
}

.booking-cta-lead {
    color: var(--ps-beige);
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
}

/* --------------------------------------------------------------------------
   15. FORMS & INPUT CONTROLS
   -------------------------------------------------------------------------- */
.form-luxury-card {
    background-color: var(--ps-white);
    border: 1px solid var(--ps-border-light);
    border-radius: var(--radius-md);
    padding: 3rem;
    box-shadow: var(--shadow-card);
}

.form-label-luxury {
    font-size: 0.84rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--ps-primary);
    margin-bottom: 0.45rem;
    display: block;
}

.form-control-luxury,
.form-select-luxury {
    width: 100%;
    padding: 0.85rem 1.1rem;
    font-size: 0.95rem;
    font-family: var(--font-body);
    color: var(--ps-text);
    background-color: var(--ps-cream);
    border: 1px solid var(--ps-border);
    border-radius: var(--radius-sm);
    transition: var(--transition-smooth);
}

.form-control-luxury:focus,
.form-select-luxury:focus {
    background-color: var(--ps-white);
    border-color: var(--ps-rose);
    outline: none;
    box-shadow: 0 0 0 3px rgba(185, 130, 140, 0.18);
}

.form-disclaimer {
    background-color: var(--ps-blush);
    border-left: 3px solid var(--ps-rose);
    padding: 0.85rem 1.25rem;
    border-radius: var(--radius-sm);
    font-size: 0.86rem;
    color: var(--ps-primary);
    margin-bottom: 1.5rem;
}

.form-disclaimer i {
    color: var(--ps-rose);
    margin-right: 0.4rem;
}

/* Alert notifications */
.alert-luxury-success {
    background-color: #EBF5EE;
    border: 1px solid #C4E2CB;
    color: #2D6A4F;
    border-radius: var(--radius-sm);
    padding: 1.25rem;
    margin-bottom: 1.75rem;
}

.alert-luxury-danger {
    background-color: #FDF0ED;
    border: 1px solid #F6C8BE;
    color: #9E2A2B;
    border-radius: var(--radius-sm);
    padding: 1.25rem;
    margin-bottom: 1.75rem;
}

/* --------------------------------------------------------------------------
   16. FOOTER & COPYRIGHT
   -------------------------------------------------------------------------- */
.site-footer {
    background-color: var(--ps-primary);
    color: var(--ps-beige);
    padding: 5rem 0 2rem 0;
    border-top: 1px solid rgba(231, 215, 201, 0.12);
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    color: var(--ps-white);
    margin-bottom: 1.4rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 1px;
    background-color: var(--ps-gold);
}

.footer-desc {
    color: rgba(231, 215, 201, 0.8);
    font-size: 0.9rem;
    line-height: 1.65;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(231, 215, 201, 0.85);
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--ps-white);
    transform: translateX(3px);
}

.footer-contact-item {
    display: flex;
    gap: 0.85rem;
    margin-bottom: 1rem;
    color: rgba(231, 215, 201, 0.85);
    font-size: 0.9rem;
}

.footer-contact-item i {
    color: var(--ps-gold);
    font-size: 1.1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.footer-social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.footer-social-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(231, 215, 201, 0.2);
    color: var(--ps-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.footer-social-icon:hover {
    background-color: var(--ps-rose);
    border-color: var(--ps-rose);
    color: var(--ps-white);
    transform: translateY(-2px);
}

.footer-bottom {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(231, 215, 201, 0.08);
    font-size: 0.82rem;
    color: rgba(231, 215, 201, 0.6);
}

/* --------------------------------------------------------------------------
   17. FLOATING WHATSAPP & MOBILE BOTTOM BAR
   -------------------------------------------------------------------------- */
.floating-whatsapp {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1030;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background-color: #25D366;
    color: #FFFFFF !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.85rem;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition-smooth);
}

.floating-whatsapp:hover {
    transform: scale(1.08) translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5);
    color: #FFFFFF !important;
}

/* Mobile Bottom Fixed Booking Bar */
.mobile-bottom-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 62px;
    background-color: var(--ps-primary);
    border-top: 1px solid rgba(231, 215, 201, 0.2);
    z-index: 1040;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.15);
}

.mobile-bottom-bar-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1.3fr;
    height: 100%;
}

.mobile-bar-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--ps-beige);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    border-right: 1px solid rgba(231, 215, 201, 0.1);
    transition: var(--transition-smooth);
}

.mobile-bar-btn i {
    font-size: 1.15rem;
    margin-bottom: 2px;
}

.mobile-bar-btn:hover,
.mobile-bar-btn:active {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--ps-white);
}

.mobile-bar-btn-book {
    background-color: var(--ps-rose);
    color: var(--ps-white) !important;
    border-right: none;
}

.mobile-bar-btn-book:hover,
.mobile-bar-btn-book:active {
    background-color: var(--ps-rose-dark);
}

/* --------------------------------------------------------------------------
   18. RESPONSIVE BREAKPOINTS
   -------------------------------------------------------------------------- */
@media (max-width: 991.98px) {
    .insta-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .about-main-img {
        height: 380px;
    }
    .before-after-container {
        height: 380px;
    }
    .hero-section {
        min-height: 75vh;
    }
}

@media (max-width: 767.98px) {
    /* Show Mobile Bottom Bar */
    .mobile-bottom-bar {
        display: block;
    }

    /* Add bottom padding to body so fixed bar doesn't obscure content */
    body {
        padding-bottom: 64px;
    }

    /* Reposition floating WhatsApp above the mobile bar */
    .floating-whatsapp {
        bottom: 5.2rem;
        right: 1.2rem;
        width: 50px;
        height: 50px;
        font-size: 1.55rem;
    }

    .insta-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .before-after-container {
        height: 290px;
    }

    .form-luxury-card {
        padding: 1.75rem 1.25rem;
    }

    .heading-display {
        font-size: 2.4rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.25rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
}
