/* ============================================
   Moño Hair Spa — Custom Styles
   ============================================ */

:root {
    --mono-bg: #F6F2EF;
    --mono-bg-soft: #FAF7F3;
    --mono-brown: #8A7266;
    --mono-brown-soft: #927A6E;
    --mono-muted: #B8A79C;
    --mono-line: #E2DAD4;
    --mono-white: #FFFFFF;
    --mono-watermark: rgba(205,198,193,0.20);
    --mono-serif: Georgia, "Times New Roman", serif;
    --mono-arabic: "Noto Naskh Arabic", "Noto Kufi Arabic", "Tajawal", sans-serif;
}

/* --- Base Reset & Typography --- */
body {
    font-family: var(--mono-arabic);
    direction: rtl;
    background: var(--mono-bg);
    color: var(--mono-brown);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--mono-serif);
}

html {
    scroll-behavior: smooth;
}

/* --- Skip to Content (A11y) --- */
.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--mono-brown);
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 0 0 0.5rem 0.5rem;
    z-index: 9999;
    font-weight: 700;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 0;
}

/* --- Focus Visible (A11y) --- */
*:focus-visible {
    outline: 2px solid var(--mono-brown);
    outline-offset: 2px;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--mono-brown);
    outline-offset: 2px;
    border-radius: 4px;
}

/* ============================================
   Animations
   ============================================ */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

@keyframes pulse-gold {
    0%, 100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4); }
    50% { box-shadow: 0 0 0 12px rgba(212, 175, 55, 0); }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.6s ease-in;
}

.slide-up {
    animation: slideUp 0.6s ease-out;
}

.animate-fade-in {
    animation: fadeIn 0.5s ease-out both;
}

.animate-fade-in-up {
    animation: slideUp 0.6s ease-out both;
}

.animate-fade-in-right {
    animation: slideInRight 0.6s ease-out both;
}

.animate-fade-in-left {
    animation: slideInLeft 0.6s ease-out both;
}

.animate-shake {
    animation: shake 0.4s ease-in-out;
}

.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    border-top-color: #D4AF37;
    animation: spin 1s ease-in-out infinite;
}

/* Scroll-triggered Animation */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   Section Utilities (used in about.php etc.)
   ============================================ */
.section-padding {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: #6b7280;
    font-size: 1.125rem;
    font-weight: 300;
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .section-padding {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }

    .section-title {
        font-size: 3rem;
    }
}

/* ============================================
   Gradient / Visual Utilities
   ============================================ */
.gradient-text {
    background: linear-gradient(135deg, #D4AF37 0%, #F3E5AB 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-gradient {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(212, 175, 55, 0.3) 100%);
}

.gold-gradient-bg {
    background: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%);
}

.gold-shadow {
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

/* Service card gradient fallback (no image) */
.service-gradient-hair {
    background: linear-gradient(135deg, #1A1A1A 0%, #3d2e0a 100%);
}

.service-gradient-skin {
    background: linear-gradient(135deg, #2C2C2C 0%, #4a3520 100%);
}

.service-gradient-home {
    background: linear-gradient(135deg, #1A1A1A 0%, #2d2215 100%);
}

/* ============================================
   Button Styles
   ============================================ */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #D4AF37;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    transition: all 0.3s;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    background-color: rgba(212, 175, 55, 0.9);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #1A1A1A;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background-color: #2C2C2C;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #D4AF37;
    color: #D4AF37;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-outline:hover {
    background-color: #D4AF37;
    color: white;
}

/* ============================================
   Card Styles
   ============================================ */
.card {
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.card-product {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.06);
    cursor: pointer;
    transition: all 0.3s;
}

.card-product:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.card-service {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid #f3f4f6;
    transition: all 0.3s;
}

.card-service:hover {
    border-color: #D4AF37;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.1);
}

/* ============================================
   Form / Input Styles (Single Definition)
   ============================================ */
.input-field,
.textarea-field {
    width: 100%;
    padding: 1rem 1.25rem;
    background-color: #f9f9f7;
    border: 1px solid #e2e2df;
    border-radius: 1rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.input-field:focus,
.textarea-field:focus {
    background-color: #fff;
    border-color: #D4AF37;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
    outline: none;
}

.textarea-field {
    resize: none;
}

/* ============================================
   Navbar
   ============================================ */
.nav-link {
    position: relative;
    padding-bottom: 2px;
}

/* RTL: underline animates from right to left */
.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    right: 0;
    background-color: #D4AF37;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Nav scrolled state */
.nav-scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* ============================================
   Mobile Menu Drawer
   ============================================ */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 85%;
    max-width: 380px;
    height: 100%;
    background: #fff;
    z-index: 999;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
}

.mobile-menu-drawer.active {
    transform: translateX(0);
}

.mobile-menu-drawer .drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #f3f4f6;
}

.mobile-menu-drawer .drawer-nav {
    flex: 1;
    padding: 1rem 0;
}

.mobile-menu-drawer .drawer-nav a {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    color: #1A1A1A;
    font-size: 1.05rem;
    font-weight: 500;
    transition: all 0.2s;
    border-bottom: 1px solid #f9fafb;
}

.mobile-menu-drawer .drawer-nav a:hover,
.mobile-menu-drawer .drawer-nav a.active {
    color: #D4AF37;
    background: #fdf8e8;
    padding-right: 2rem;
}

.mobile-menu-drawer .drawer-nav a i {
    width: 28px;
    margin-left: 0.75rem;
    font-size: 1.1rem;
    color: #D4AF37;
    text-align: center;
}

.mobile-menu-drawer .drawer-footer {
    padding: 1.5rem;
    border-top: 1px solid #f3f4f6;
    background: #f9fafb;
}

/* Body scroll lock when menu is open */
body.menu-open {
    overflow: hidden;
}

/* ============================================
   WhatsApp Float Button
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 1.5rem;
    left: 1.5rem;
    z-index: 50;
    background-color: #25D366;
    color: white;
    width: 4rem;
    height: 4rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
    transition: all 0.3s;
    cursor: pointer;
    animation: pulse-gold 2s infinite;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    animation: none;
}

/* ============================================
   Hover Effects
   ============================================ */
.hover-premium {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-premium:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

/* Glass Effect */
.glass-effect {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* ============================================
   Products Sidebar — Mobile Collapsible
   ============================================ */
@media (max-width: 1023px) {
    .products-sidebar, .services-sidebar {
        position: relative;
    }

    .products-sidebar .sidebar-content, .services-sidebar .sidebar-content {
        display: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
    }

    .products-sidebar .sidebar-content.expanded, .services-sidebar .sidebar-content.expanded {
        display: block;
        max-height: 1500px; /* Increased to fit all categories */
    }

    .sidebar-toggle {
        display: flex;
    }
}

@media (min-width: 1024px) {
    .sidebar-toggle {
        display: none;
    }

    .products-sidebar .sidebar-content, .services-sidebar .sidebar-content {
        max-height: none !important;
    }
}

/* ============================================
   Prefers Reduced Motion (A11y)
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .animate-on-scroll {
        opacity: 1;
        transform: none;
    }

    .whatsapp-float {
        animation: none;
    }
}

/* ============================================
   Responsive Helpers
   ============================================ */
@media (max-width: 640px) {
    .section-padding {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .section-title {
        font-size: 1.75rem;
    }
}

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

/* Hero Overlay */
.hero-overlay {
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.55) 0%,
        rgba(0, 0, 0, 0.3) 40%,
        rgba(0, 0, 0, 0.5) 80%,
        rgba(0, 0, 0, 0.75) 100%
    );
}

/* Hero Title shimmer */
.hero-title {
    text-shadow: 0 4px 30px rgba(212, 175, 55, 0.2);
}

/* Hero CTA Buttons */
.hero-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #D4AF37 0%, #C5960A 100%);
    color: white;
    padding: 0.875rem 2rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.35);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.hero-btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s;
}

.hero-btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.5);
}

.hero-btn-primary:hover::before {
    opacity: 1;
}

.hero-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    color: white;
    padding: 0.875rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(212, 175, 55, 0.5);
    transform: translateY(-3px);
}

@media (min-width: 768px) {
    .hero-btn-primary,
    .hero-btn-secondary {
        font-size: 1.1rem;
        padding: 1rem 2.5rem;
    }
}

/* ============================================
   Hero Smart Search
   ============================================ */
.hero-search-bar {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    border-radius: 9999px;
    padding: 0.25rem 0.5rem 0.25rem 1.25rem;
    transition: all 0.4s;
}

.hero-search-bar:focus-within {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(212, 175, 55, 0.6);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15), 0 8px 30px rgba(0, 0, 0, 0.2);
}

.hero-search-icon {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
    margin-left: 0.75rem;
    flex-shrink: 0;
}

.hero-search-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: white;
    font-size: 0.95rem;
    padding: 0.75rem 0.5rem;
    font-family: 'Tajawal', sans-serif;
    min-width: 0;
}

.hero-search-input::placeholder {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.9rem;
}

.hero-search-clear {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    flex-shrink: 0;
    font-size: 0.8rem;
}

.hero-search-clear:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Search Results Dropdown */
.hero-search-results {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    right: 0;
    background: white;
    border-radius: 1.25rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    z-index: 100;
    max-height: 380px;
    overflow-y: auto;
}

.hero-search-results.hidden {
    display: none;
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.25rem;
    text-decoration: none;
    color: #1A1A1A;
    transition: background 0.2s;
    border-bottom: 1px solid #f5f5f4;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item:hover,
.search-result-item.active {
    background: #fdf8e8;
}

.search-result-icon {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.75rem;
    background: #f9f5eb;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #D4AF37;
    font-size: 1rem;
    overflow: hidden;
}

.search-result-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.75rem;
}

.search-result-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.search-result-name {
    font-weight: 600;
    font-size: 0.95rem;
    color: #1A1A1A;
}

.search-result-category {
    font-size: 0.8rem;
    color: #9ca3af;
}

.search-result-price {
    font-weight: 700;
    font-size: 0.9rem;
    color: #D4AF37;
    white-space: nowrap;
}

.search-no-results {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1.5rem;
    color: #9ca3af;
    font-size: 0.9rem;
}

.search-no-results i {
    color: #d1d5db;
}

/* ============================================
   Social Proof Bar
   ============================================ */
.social-proof-bar {
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.proof-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.8rem;
    font-weight: 400;
    transition: transform 0.3s;
}

.proof-item strong {
    color: #D4AF37;
    font-weight: 700;
}

.proof-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: proof-live 2s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes proof-live {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5); }
    50% { opacity: 0.6; box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
}

.proof-divider {
    width: 1px;
    height: 18px;
    background: rgba(255, 255, 255, 0.15);
}

.proof-pulse {
    animation: proofBounce 0.5s ease;
}

@keyframes proofBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@media (max-width: 640px) {
    .proof-item {
        font-size: 0.7rem;
    }
}

/* ============================================
   Trust Badges
   ============================================ */
.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
}

.trust-badge-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, #fdf8e8 0%, #f5edd6 100%);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D4AF37;
    font-size: 1rem;
    flex-shrink: 0;
}

.trust-badge div:last-child {
    display: flex;
    flex-direction: column;
}

.trust-badge strong {
    font-size: 0.85rem;
    color: #1A1A1A;
    line-height: 1.3;
}

.trust-badge span {
    font-size: 0.75rem;
    color: #9ca3af;
}

@media (max-width: 640px) {
    .trust-badge {
        flex: 0 0 calc(50% - 0.75rem);
    }
    .trust-badge-icon {
        width: 2rem;
        height: 2rem;
        font-size: 0.85rem;
        border-radius: 0.5rem;
    }
    .trust-badge strong { font-size: 0.78rem; }
    .trust-badge span { font-size: 0.68rem; }
}

/* ============================================
   Floating Sparkle Particles
   ============================================ */
.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    left: var(--x);
    top: var(--y);
    width: 3px;
    height: 3px;
    background: #D4AF37;
    border-radius: 50%;
    box-shadow: 0 0 6px 2px rgba(212, 175, 55, 0.4);
    animation: sparkleFloat 6s ease-in-out infinite;
    animation-delay: var(--delay);
    opacity: 0;
}

@keyframes sparkleFloat {
    0% { opacity: 0; transform: translateY(0) scale(0.5); }
    20% { opacity: 0.8; }
    50% { opacity: 1; transform: translateY(-40px) scale(1); }
    80% { opacity: 0.6; }
    100% { opacity: 0; transform: translateY(-80px) scale(0.3); }
}

/* ============================================
   Animated Counter (Stats Section)
   ============================================ */
.animated-counter {
    font-variant-numeric: tabular-nums;
}

/* ============================================
   Multi-Step Booking Wizard
   ============================================ */

/* Progress Bar */
.wizard-progress {
    position: relative;
    padding: 0 1rem;
}

.progress-track {
    position: absolute;
    top: 1.25rem;
    left: 3rem;
    right: 3rem;
    height: 3px;
    background: #e5e7eb;
    border-radius: 2px;
    z-index: 0;
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #D4AF37, #C5960A);
    border-radius: 2px;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    width: 0%;
}

.progress-steps-row {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

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

.progress-step span {
    font-size: 0.7rem;
    color: #9ca3af;
    font-weight: 500;
    transition: color 0.3s;
}

.progress-step-circle {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: white;
    border: 2.5px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    font-size: 0.85rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.progress-step.active .progress-step-circle {
    border-color: #D4AF37;
    background: #D4AF37;
    color: white;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.2);
}

.progress-step.active span {
    color: #D4AF37;
    font-weight: 700;
}

.progress-step.completed .progress-step-circle {
    border-color: #D4AF37;
    background: #D4AF37;
    color: white;
}

.progress-step.completed span {
    color: #1A1A1A;
}

/* Wizard Steps */
.wizard-step {
    display: none;
    animation: wizardFadeIn 0.35s ease;
}

.wizard-step.active {
    display: block;
}

.wizard-step.leaving {
    animation: wizardFadeOut 0.25s ease forwards;
}

@keyframes wizardFadeIn {
    from { opacity: 0; transform: translateX(-20px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes wizardFadeOut {
    from { opacity: 1; transform: translateX(0); }
    to { opacity: 0; transform: translateX(20px); }
}

/* Step Error */
.step-error {
    background: #fef2f2;
    border-right: 4px solid #ef4444;
    color: #b91c1c;
    padding: 0.875rem 1.25rem;
    border-radius: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.field-error {
    border-color: #ef4444 !important;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15) !important;
}

.field-error-msg {
    display: block;
    color: #ef4444;
    font-size: 0.8rem;
    margin-top: 0.3rem;
}

/* Category Filters */
.category-filter {
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    border: 1.5px solid #e5e7eb;
    background: white;
    color: #6b7280;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s;
    font-family: 'Tajawal', sans-serif;
}

.category-filter:hover {
    border-color: #D4AF37;
    color: #D4AF37;
}

.category-filter.active {
    background: #D4AF37;
    border-color: #D4AF37;
    color: white;
}

/* Service Selection Cards */
.service-select-card {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 1rem;
    border: 2px solid #f3f4f6;
    border-radius: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    background: white;
}

.service-select-card:hover {
    border-color: #D4AF37;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.1);
}

.service-select-card.selected {
    border-color: #D4AF37;
    background: #fefbf0;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.15);
}

.ssc-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.875rem;
    background: #f9f5eb;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #D4AF37;
    font-size: 1.1rem;
    overflow: hidden;
}

.ssc-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.875rem;
}

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

.ssc-info h4 {
    font-weight: 700;
    font-size: 0.95rem;
    color: #1A1A1A;
    margin-bottom: 0.15rem;
    font-family: 'Tajawal', sans-serif;
}

.ssc-category {
    font-size: 0.75rem;
    color: #9ca3af;
}

.ssc-desc {
    font-size: 0.75rem;
    color: #6b7280;
    margin-top: 0.25rem;
    line-height: 1.4;
}

.ssc-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.25rem;
    flex-shrink: 0;
}

.ssc-price {
    font-weight: 800;
    font-size: 1rem;
    color: #D4AF37;
    font-family: 'Tajawal', sans-serif;
}

.ssc-price small {
    font-size: 0.7rem;
    font-weight: 500;
}

.ssc-duration {
    font-size: 0.72rem;
    color: #9ca3af;
}

.ssc-check {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    background: #D4AF37;
    color: white;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
}

.service-select-card.selected .ssc-check {
    display: flex;
}

/* Time Slots Grid */
.time-slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 0.75rem;
}

.time-slot-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.875rem 0.5rem;
    border: 2px solid #f3f4f6;
    border-radius: 0.875rem;
    background: white;
    cursor: pointer;
    transition: all 0.25s;
    font-family: 'Tajawal', sans-serif;
}

.time-slot-btn:hover {
    border-color: #D4AF37;
    background: #fefbf0;
}

.time-slot-btn.selected {
    border-color: #D4AF37;
    background: #D4AF37;
    color: white;
}

.time-slot-period {
    font-size: 0.65rem;
    color: #9ca3af;
    margin-bottom: 0.15rem;
}

.time-slot-btn.selected .time-slot-period {
    color: rgba(255, 255, 255, 0.7);
}

.time-slot-value {
    font-weight: 700;
    font-size: 0.95rem;
}

.no-slots-msg {
    grid-column: 1 / -1;
    text-align: center;
    padding: 2.5rem 1rem;
    color: #9ca3af;
}

.no-slots-msg i {
    font-size: 2rem;
    color: #d1d5db;
    margin-bottom: 0.75rem;
    display: block;
}

.no-slots-msg p {
    font-weight: 600;
    font-size: 0.95rem;
    color: #6b7280;
    margin-bottom: 0.25rem;
}

.no-slots-msg span {
    font-size: 0.8rem;
}

/* Form Groups */
.wizard-step .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.wizard-step .form-group label {
    font-size: 0.85rem;
    font-weight: 700;
    color: #374151;
}

.wizard-step .form-group input,
.wizard-step .form-group textarea,
.wizard-step .form-group select {
    width: 100%;
    padding: 0.875rem 1rem;
    background: #f9fafb;
    border: 2px solid #e5e7eb;
    border-radius: 0.875rem;
    font-size: 0.95rem;
    transition: all 0.3s;
    font-family: 'Tajawal', sans-serif;
}

.wizard-step .form-group input:focus,
.wizard-step .form-group textarea:focus,
.wizard-step .form-group select:focus {
    background: white;
    border-color: #D4AF37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.12);
    outline: none;
}

.wizard-step .form-group textarea {
    resize: none;
}

/* Location Option */
.location-option {
    cursor: pointer;
    transition: all 0.25s;
}

.location-option-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.25rem;
    border: 2px solid #e5e7eb;
    border-radius: 1rem;
    color: #6b7280;
    transition: all 0.25s;
    text-align: center;
}

.location-option.selected .location-option-inner {
    border-color: #D4AF37;
    background: #fefbf0;
    color: #D4AF37;
}

.location-option-inner span {
    font-size: 0.85rem;
    font-weight: 600;
}

/* Review Card */
.review-card {
    border: 1px solid #f3f4f6;
    border-radius: 1.25rem;
    overflow: hidden;
}

.review-section {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #f3f4f6;
}

.review-section:last-child {
    border-bottom: none;
}

.review-section h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: #D4AF37;
    margin-bottom: 0.875rem;
    font-family: 'Tajawal', sans-serif;
}

.review-section h4 i {
    margin-left: 0.4rem;
}

.review-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.review-item {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.review-label {
    font-size: 0.72rem;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.review-value {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1A1A1A;
}

.review-price {
    color: #D4AF37;
    font-size: 1.1rem;
    font-weight: 800;
}

/* Mini Summary Bar */
.mini-summary {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: #fefbf0;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 0.875rem;
    margin-bottom: 1rem;
}

.mini-summary-item {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.8rem;
    color: #6b7280;
}

.mini-summary-item i {
    color: #D4AF37;
    font-size: 0.75rem;
}

.mini-summary-price {
    margin-right: auto;
    font-weight: 700;
    color: #D4AF37;
}

/* Wizard Navigation */
.wizard-nav {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid #f3f4f6;
    padding-top: 1.25rem !important;
}

.wizard-btn-prev {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.75rem 1.5rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.875rem;
    background: white;
    color: #6b7280;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.25s;
    font-family: 'Tajawal', sans-serif;
}

.wizard-btn-prev:hover {
    border-color: #D4AF37;
    color: #D4AF37;
}

.wizard-btn-next {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.75rem 2rem;
    background: linear-gradient(135deg, #1A1A1A, #2C2C2C);
    color: white;
    border: none;
    border-radius: 0.875rem;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Tajawal', sans-serif;
}

.wizard-btn-next:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.wizard-btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.875rem 2.5rem;
    background: linear-gradient(135deg, #D4AF37 0%, #C5960A 100%);
    color: white;
    border: none;
    border-radius: 0.875rem;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.3);
    font-family: 'Tajawal', sans-serif;
}

.wizard-btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 35px rgba(212, 175, 55, 0.4);
}

@media (max-width: 640px) {
    .progress-step span { font-size: 0.6rem; }
    .progress-step-circle { width: 2rem; height: 2rem; font-size: 0.7rem; }
    .progress-track { left: 2rem; right: 2rem; top: 1rem; }
    .review-grid { grid-template-columns: 1fr; }
    .time-slots-grid { grid-template-columns: repeat(auto-fill, minmax(90px, 1fr)); gap: 0.5rem; }
    .service-select-card { flex-wrap: wrap; }
}

/* ============================================
   Service Search Bar (Booking Wizard)
   ============================================ */
.service-search-bar {
    display: flex;
    align-items: center;
    background: #f9fafb;
    border: 2px solid #e5e7eb;
    border-radius: 0.875rem;
    padding: 0 1rem;
    transition: all 0.3s;
}

.service-search-bar:focus-within {
    border-color: #D4AF37;
    background: white;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.12);
}

.service-search-icon {
    color: #9ca3af;
    font-size: 0.9rem;
    margin-left: 0.75rem;
    flex-shrink: 0;
}

.service-search-bar input {
    flex: 1;
    padding: 0.75rem 0.5rem;
    border: none;
    background: transparent;
    outline: none;
    font-size: 0.9rem;
    font-family: 'Tajawal', sans-serif;
    color: #1A1A1A;
}

.service-search-bar input::placeholder {
    color: #9ca3af;
    font-size: 0.85rem;
}

/* ============================================
   Selected Services Cart
   ============================================ */
.services-cart {
    margin-top: 1.25rem;
    border: 2px solid #D4AF37;
    border-radius: 1rem;
    overflow: hidden;
    background: #fefbf0;
    animation: wizardFadeIn 0.3s ease;
}

.cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.875rem 1.25rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(212, 175, 55, 0.03) 100%);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    flex-wrap: wrap;
    gap: 0.5rem;
}

.cart-header h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: #1A1A1A;
    font-family: 'Tajawal', sans-serif;
}

.cart-totals {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.8rem;
    color: #6b7280;
}

.cart-total-price {
    font-weight: 800;
    font-size: 1rem;
    color: #D4AF37;
}

.cart-items-list {
    max-height: 200px;
    overflow-y: auto;
}

.cart-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.625rem 1.25rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.08);
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-info {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.cart-item-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: #1A1A1A;
}

.cart-item-meta {
    font-size: 0.72rem;
    color: #9ca3af;
}

.cart-item-remove {
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 50%;
    border: none;
    background: rgba(239, 68, 68, 0.08);
    color: #ef4444;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    transition: all 0.2s;
    flex-shrink: 0;
}

.cart-item-remove:hover {
    background: #ef4444;
    color: white;
}

/* ============================================
   Review Services List (Multi-select)
   ============================================ */
.review-service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.625rem 0;
    border-bottom: 1px solid #f3f4f6;
}

.review-service-item:last-of-type {
    border-bottom: none;
}

.review-service-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: #1A1A1A;
}

.review-service-price {
    font-size: 0.85rem;
    font-weight: 700;
    color: #D4AF37;
}

.review-service-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.875rem 0 0.25rem;
    margin-top: 0.5rem;
    border-top: 2px solid #D4AF37;
    font-size: 0.9rem;
    color: #1A1A1A;
}

.review-service-total strong {
    font-size: 1.15rem;
    color: #D4AF37;
    font-weight: 800;
}

/* ============================================
   Testimonials Carousel
   ============================================ */
.reviews-carousel-wrapper {
    overflow: hidden;
    width: 100%;
    mask-image: linear-gradient(to left, transparent 0%, black 8%, black 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(to left, transparent 0%, black 8%, black 92%, transparent 100%);
}

.reviews-carousel-track {
    display: flex;
    gap: 1.5rem;
    animation: reviewsScroll 40s linear infinite;
    width: max-content;
}

.reviews-carousel-track:hover {
    animation-play-state: paused;
}

@keyframes reviewsScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.review-carousel-card {
    flex-shrink: 0;
    width: 340px;
}

.review-card-inner {
    background: white;
    border-radius: 1.5rem;
    padding: 1.75rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #f3f4f6;
    transition: all 0.3s;
    position: relative;
}

.review-card-inner:hover {
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.review-quote-icon {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    color: #D4AF37;
    opacity: 0.15;
    font-size: 2rem;
}

@media (max-width: 640px) {
    .review-carousel-card {
        width: 280px;
    }
    .reviews-carousel-track {
        animation-duration: 25s;
    }
}

/* Print styles */
@media print {
    .whatsapp-float,
    nav,
    footer,
    .mobile-menu-overlay,
    .mobile-menu-drawer {
        display: none !important;
    }
}

/* ============================================
   Moño Premium Redesign System
   ============================================ */
.mono-section { position: relative; overflow: hidden; background: var(--mono-bg); padding: 5rem 1rem; }
.mono-container { width: min(1120px, calc(100% - 2rem)); margin-inline: auto; }
.mono-watermark { position: absolute; pointer-events: none; user-select: none; color: var(--mono-watermark); font-family: var(--mono-serif); font-size: clamp(9rem, 24vw, 24rem); line-height: 1; font-weight: 400; letter-spacing: -0.08em; z-index: 0; }
.mono-heading { font-family: var(--mono-serif); color: var(--mono-brown); font-size: clamp(2.35rem, 6vw, 5.75rem); line-height: 0.95; font-weight: 400; letter-spacing: -0.04em; }
.mono-heading-ar { font-family: var(--mono-arabic); color: var(--mono-brown); font-size: clamp(2rem, 5vw, 4.75rem); line-height: 1.25; font-weight: 400; }
.mono-label { display: inline-flex; align-items: center; gap: 0.65rem; color: var(--mono-muted); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.24em; text-transform: uppercase; }
.mono-label::before { content: ''; width: 2.25rem; height: 1px; background: var(--mono-line); }
.mono-divider { width: 100%; height: 1px; background: var(--mono-line); }
.mono-btn, .mono-btn-primary, .btn-primary { display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem; min-height: 2.75rem; padding: 0.75rem 1.35rem; border-radius: 999px; font-weight: 500; line-height: 1; transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease; box-shadow: none !important; }
.mono-btn { color: var(--mono-brown); border: 1px solid rgba(138, 114, 102, 0.45); background: transparent; }
.mono-btn:hover { background: var(--mono-bg-soft); border-color: var(--mono-brown); transform: translateY(-1px); }
.mono-btn-primary, .btn-primary { color: var(--mono-bg-soft) !important; border: 1px solid var(--mono-brown); background: var(--mono-brown) !important; }
.mono-btn-primary:hover, .btn-primary:hover { background: var(--mono-brown-soft) !important; color: var(--mono-bg-soft) !important; transform: translateY(-1px); }
.mono-card, .card-service, .card-product { background: var(--mono-bg-soft); border: 1px solid var(--mono-line); border-radius: 1.5rem; box-shadow: none !important; }
.mono-card { padding: clamp(1.25rem, 3vw, 2rem); }
.mono-service-card { display: flex; flex-direction: column; gap: 1rem; min-height: 100%; padding: clamp(1.25rem, 3vw, 2rem); }
.mono-input, .input-field, input[type="text"], input[type="email"], input[type="tel"], input[type="date"], input[type="time"], select, textarea { border: 1px solid var(--mono-line) !important; background: rgba(250, 247, 243, 0.82) !important; color: var(--mono-brown) !important; border-radius: 1rem !important; box-shadow: none !important; }
.mono-input:focus, .input-field:focus, input:focus, select:focus, textarea:focus { border-color: var(--mono-brown) !important; outline: none !important; box-shadow: 0 0 0 3px rgba(138, 114, 102, 0.10) !important; }
.premium-page-hero { background: var(--mono-bg); border-bottom: 1px solid var(--mono-line); padding: clamp(4rem, 10vw, 8rem) 1rem; position: relative; overflow: hidden; }
.premium-header { background: rgba(246, 242, 239, 0.94) !important; border-bottom: 1px solid var(--mono-line); box-shadow: none !important; }
.premium-header .nav-link { color: var(--mono-brown) !important; font-size: 0.92rem; font-weight: 500; }
.premium-header .nav-link:hover, .premium-header .nav-link[aria-current="page"] { color: var(--mono-brown-soft) !important; }
.mobile-menu-overlay { background: rgba(138, 114, 102, 0.18) !important; backdrop-filter: blur(6px); }
.mobile-menu-drawer { background: var(--mono-bg-soft) !important; color: var(--mono-brown) !important; border-left: 1px solid var(--mono-line); box-shadow: none !important; }
.drawer-header, .drawer-footer { border-color: var(--mono-line) !important; background: transparent !important; }
.drawer-nav a { color: var(--mono-brown) !important; border-bottom: 1px solid var(--mono-line); }
.drawer-nav a.active, .drawer-nav a:hover { background: var(--mono-bg) !important; color: var(--mono-brown-soft) !important; }
.whatsapp-float { background: var(--mono-brown) !important; color: var(--mono-bg-soft) !important; box-shadow: none !important; }
.text-mono-gold, .hover\:text-mono-gold:hover { color: var(--mono-brown) !important; }
.bg-mono-gold, .gold-gradient-bg { background: var(--mono-brown) !important; }
.bg-mono-black, .bg-mono-charcoal { background: var(--mono-bg-soft) !important; color: var(--mono-brown) !important; }
.bg-mono-beige, .bg-gray-50 { background: var(--mono-bg) !important; }
.border-mono-gold { border-color: var(--mono-brown) !important; }

@media (max-width: 768px) {
    .mono-section { padding-block: 3.5rem; }
    .mono-card, .mono-service-card { border-radius: 1.15rem; }
}

/* ============================================
   Moño Editorial Art Direction Pass
   ============================================ */
.mono-container-wide { width: min(1320px, calc(100% - 2rem)); margin-inline: auto; }
.mono-eyebrow { display: inline-flex; align-items: center; gap: .8rem; color: var(--mono-muted); font-size: .68rem; letter-spacing: .28em; text-transform: uppercase; font-weight: 700; }
.mono-eyebrow::after { content: ''; width: 4.25rem; height: 1px; background: var(--mono-line); }
.mono-editorial-title { color: var(--mono-brown); font-family: var(--mono-serif); font-size: clamp(4.7rem, 15vw, 13.5rem); line-height: .76; font-weight: 400; letter-spacing: -.085em; }
.mono-editorial-ar { color: var(--mono-brown); font-family: var(--mono-arabic); font-size: clamp(2.2rem, 6.4vw, 6.4rem); line-height: 1.08; font-weight: 300; letter-spacing: -.055em; }
.mono-kicker { color: var(--mono-muted); font-size: .72rem; letter-spacing: .22em; text-transform: uppercase; }
.mono-hero-editorial { min-height: calc(100svh - 84px); padding: clamp(3rem, 6vw, 6.5rem) 1rem; background: radial-gradient(circle at 18% 18%, rgba(255,255,255,.72), transparent 28%), linear-gradient(135deg, var(--mono-bg) 0%, #efe8e2 100%); }
.mono-hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, .72fr); gap: clamp(2rem, 5vw, 6rem); align-items: end; }
.mono-hero-copy { position: relative; z-index: 2; padding-bottom: clamp(1rem, 4vw, 4rem); }
.mono-hero-image-wrap { position: relative; isolation: isolate; align-self: stretch; min-height: 560px; }
.mono-hero-image-wrap::before { content: ''; position: absolute; inset: 8% -8% -5% 10%; border: 1px solid rgba(138,114,102,.24); border-radius: 999px 999px 2rem 2rem; z-index: -1; }
.mono-hero-image { width: 100%; height: 100%; min-height: 560px; object-fit: cover; border-radius: 999px 999px 2rem 2rem; filter: saturate(.82) contrast(.98); }
.mono-hero-note { position: absolute; right: -1rem; bottom: 3rem; width: min(260px, 74%); background: rgba(250,247,243,.9); border: 1px solid var(--mono-line); padding: 1.15rem; border-radius: 1.25rem; color: var(--mono-brown-soft); backdrop-filter: blur(12px); }
.mono-stat-strip { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-block: 1px solid var(--mono-line); background: rgba(250,247,243,.48); }
.mono-stat-strip > div { padding: 1.35rem 1rem; border-inline-start: 1px solid var(--mono-line); }
.mono-stat-strip > div:first-child { border-inline-start: 0; }
.mono-large-number { font-family: var(--mono-serif); color: var(--mono-brown); font-size: clamp(4.6rem, 11vw, 10rem); line-height: .82; letter-spacing: -.08em; }
.mono-category-editorial { position: relative; min-height: 420px; padding: 2rem; display: flex; flex-direction: column; justify-content: space-between; overflow: hidden; background: var(--mono-bg-soft); border: 1px solid var(--mono-line); border-radius: 2rem; transition: transform .35s ease, background-color .35s ease; }
.mono-category-editorial:hover { transform: translateY(-6px); background: #fffaf5; }
.mono-category-editorial::after { content: attr(data-index); position: absolute; left: 1.25rem; bottom: .5rem; font-family: var(--mono-serif); font-size: 8rem; line-height: 1; color: rgba(184,167,156,.16); letter-spacing: -.08em; }
.mono-category-editorial h3 { position: relative; z-index: 1; font-family: var(--mono-arabic); font-size: clamp(1.8rem, 3vw, 3rem); line-height: 1.15; font-weight: 300; }
.mono-category-editorial p, .mono-category-editorial a { position: relative; z-index: 1; }
.mono-split-quote { display: grid; grid-template-columns: minmax(0, .72fr) minmax(0, 1fr); gap: clamp(2rem, 6vw, 7rem); align-items: center; }
.mono-quote-mark { font-family: var(--mono-serif); font-size: clamp(8rem, 18vw, 19rem); line-height: .55; color: rgba(184,167,156,.22); }
.mono-service-list { border-top: 1px solid var(--mono-line); }
.mono-service-row { display: grid; grid-template-columns: 1fr auto auto; gap: 1.5rem; align-items: center; padding: 1.35rem 0; border-bottom: 1px solid var(--mono-line); transition: padding-inline .25s ease, background-color .25s ease; }
.mono-service-row:hover { padding-inline: 1rem; background: rgba(250,247,243,.68); }
.mono-service-row h3 { font-family: var(--mono-arabic); font-size: clamp(1.35rem, 2.2vw, 2rem); font-weight: 400; color: var(--mono-brown); }
.mono-offer-editorial { border: 1px solid var(--mono-line); border-radius: 2.5rem; background: linear-gradient(135deg, var(--mono-bg-soft), #eee5df); padding: clamp(2rem, 6vw, 5rem); overflow: hidden; }
.mono-gallery-mosaic { display: grid; grid-template-columns: 1.2fr .8fr 1fr; grid-auto-rows: 180px; gap: 1rem; }
.mono-gallery-mosaic img { width: 100%; height: 100%; object-fit: cover; border-radius: 1.5rem; border: 1px solid var(--mono-line); filter: saturate(.82); }
.mono-gallery-mosaic img:nth-child(1) { grid-row: span 2; }
.mono-gallery-mosaic img:nth-child(4) { grid-column: span 2; }
.mono-services-shell { display: grid; grid-template-columns: minmax(260px, .34fr) minmax(0, 1fr); gap: clamp(1.5rem, 4vw, 4rem); align-items: start; }
.mono-filter-panel { border: 1px solid var(--mono-line); background: rgba(250,247,243,.76); border-radius: 2rem; padding: 1.4rem; position: sticky; top: 108px; }
.mono-filter-link { display: flex; justify-content: space-between; gap: 1rem; padding: .95rem 0; border-bottom: 1px solid var(--mono-line); color: var(--mono-brown-soft); }
.mono-filter-link.active, .mono-filter-link:hover { color: var(--mono-brown); }
.mono-booking-shell { display: grid; grid-template-columns: minmax(280px, .38fr) minmax(0, 1fr); gap: clamp(1.5rem, 4vw, 4rem); }
.mono-booking-aside { min-height: 620px; border-radius: 2.5rem; padding: 2rem; color: var(--mono-bg-soft); background: linear-gradient(180deg, rgba(138,114,102,.92), rgba(146,122,110,.78)), url('/images/hero-bg.jpg') center/cover; display: flex; flex-direction: column; justify-content: space-between; }
.mono-booking-form { background: rgba(250,247,243,.86); border: 1px solid var(--mono-line); border-radius: 2.5rem; padding: clamp(1.25rem, 4vw, 3rem); }
.mono-field-label { color: var(--mono-muted); font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 700; }

@media (max-width: 1024px) {
    .mono-hero-grid, .mono-split-quote, .mono-services-shell, .mono-booking-shell { grid-template-columns: 1fr; }
    .mono-hero-image-wrap, .mono-hero-image { min-height: 420px; }
    .mono-filter-panel { position: static; }
}

@media (max-width: 768px) {
    .mono-editorial-title { font-size: clamp(4rem, 21vw, 7rem); }
    .mono-hero-editorial { min-height: auto; padding-top: 2.5rem; }
    .mono-hero-note { position: static; width: 100%; margin-top: 1rem; }
    .mono-stat-strip { grid-template-columns: 1fr; }
    .mono-stat-strip > div { border-inline-start: 0; border-top: 1px solid var(--mono-line); }
    .mono-service-row { grid-template-columns: 1fr; gap: .75rem; }
    .mono-gallery-mosaic { grid-template-columns: 1fr 1fr; grid-auto-rows: 150px; }
    .mono-gallery-mosaic img:nth-child(4) { grid-column: auto; }
    .mono-booking-aside { min-height: 360px; border-radius: 1.75rem; }
    .mono-booking-form { border-radius: 1.75rem; }
}
