
/* =========================================
   1. CSS VARIABLES & COLOR PALETTE
   ========================================= */
/* Design Tokens */
:root {
    --bg-primary: #0E1011;
    --bg-secondary: #14191B;
    --primary-dark: #173639;
    --primary-glow: rgba(23, 54, 57, 0.6);
    --text-primary: #F4F4F0;
    --text-secondary: #B8C1BA;
    --card-bg: #1A2022;
    --border-color: rgba(255, 255, 255, 0.08);
    --accent: #C8D1C5;
    --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.3s ease;
}

/* =========================================
   2. TYPOGRAPHY & FONTS
   ========================================= */
/* Base Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    border-radius: 0 !important; 
}

html { scroll-behavior: smooth; }

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    direction: rtl;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

.serif-title { font-weight: 500; letter-spacing: -0.5px; }
p, .service-desc, .pricing-desc, .nav-links a { font-weight: 300; }

/* التعديل: فئة مخصصة لإجبار ظهور الأرقام باللغة الإنجليزية */
.en-num {
    direction: ltr;
    display: inline-block;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--primary-dark); }

/* =========================================
   3. GLOBAL LAYOUT
   ========================================= */
.brand-sidebar {
    position: fixed; top: 0; right: 0; bottom: 0; width: 5px;
    background: linear-gradient(to bottom, var(--primary-dark), var(--accent));
    z-index: 9999; box-shadow: -2px 0 20px var(--primary-glow);
}

.bg-grid-pattern {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background-image: linear-gradient(rgba(255, 255, 255, 0.01) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255, 255, 255, 0.01) 1px, transparent 1px);
    background-size: 100px 100px; pointer-events: none; z-index: 1;
}

.container { max-width: 1240px; margin: 0 auto; padding: 0 2.5rem; position: relative; z-index: 2; }
/* Shared Layout */
section { padding: 8rem 0; position: relative; }
.section-num { display: block; font-size: 0.9rem; color: var(--accent); opacity: 0.5; margin-bottom: 0.5rem; letter-spacing: 2px; }
.section-header { margin-bottom: 5rem; max-width: 700px; }
.section-header h2 { font-size: 3rem; margin-bottom: 1.5rem; display: inline-block; }
.section-header p { color: var(--text-secondary); font-size: 1.1rem; }

/* =========================================
   4. BUTTONS
   ========================================= */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 1.1rem 2.2rem; font-weight: 500; font-size: 0.95rem; cursor: pointer; 
    transition: var(--transition-smooth); border: 1px solid transparent; 
    position: relative; overflow: hidden; font-family: inherit;
}
.btn-primary { background-color: var(--primary-dark); color: var(--text-primary); }
.btn-primary::before {
    content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent); transition: 0.6s;
}
.btn-primary:hover::before { left: 100%; }
.btn-primary:hover { background-color: #1f494d; transform: translateY(-3px); box-shadow: 0 10px 30px var(--primary-glow); }
.btn-outline { background-color: transparent; border-color: var(--border-color); color: var(--text-primary); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); background-color: rgba(200, 209, 197, 0.03); }
.btn-small { padding: 0.6rem 1.2rem; font-size: 0.85rem; }

/* =========================================
   5. HEADER & NAVIGATION
   ========================================= */
header.navbar {
    position: fixed; top: 0; left: 0; right: 5px;
    background-color: rgba(14, 16, 17, 0.85); backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color); z-index: 1000;
    padding: 1.5rem 0; transition: var(--transition-fast);
}
header.navbar.scrolled { padding: 1rem 0; background-color: rgba(14, 16, 17, 0.98); }
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo-container { display: flex; align-items: center; color: var(--text-primary); text-decoration: none; position: relative; z-index: 1002; }
.brand-logo-img { display: block; width: 56px; height: auto; }

.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a { font-size: 0.95rem; color: var(--text-secondary); transition: var(--transition-fast); }
.nav-links a:hover { color: var(--text-primary); }
.mobile-toggle { display: none; flex-direction: column; gap: 6px; cursor: pointer; z-index: 1001; }
.mobile-toggle span { width: 28px; height: 2px; background-color: var(--text-primary); transition: var(--transition-smooth); transform-origin: center; }
.mobile-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* =========================================
   6. HERO SECTION
   ========================================= */
.hero-section {
    min-height: 100vh; display: flex; align-items: center;
    padding-top: 10rem; padding-bottom: 6rem;
    background: radial-gradient(circle at 80% 20%, var(--primary-glow) 0%, transparent 50%), var(--bg-primary);
}
.hero-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 5rem; align-items: center; }
.hero-content h1 { font-size: 4.2rem; line-height: 1.2; margin-bottom: 2rem; }
.hero-content p { font-size: 1.25rem; color: var(--text-secondary); margin-bottom: 3.5rem; max-width: 600px; }
.hero-buttons { display: flex; gap: 1.5rem; }
.hero-visual { position: relative; height: 550px; overflow: hidden; border: 1px solid var(--border-color); box-shadow: 0 30px 60px rgba(0,0,0,0.6); }
.hero-carousel { position: absolute; inset: 0; overflow: hidden; }
.hero-carousel::after {
    content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none;
    background: linear-gradient(to top, var(--bg-primary) 10%, rgba(14, 19, 27, 0.2) 55%, rgba(14, 19, 27, 0.35));
}
.hero-slide {
    position: absolute; inset: 0; opacity: 0; transform: scale(1.05);
    animation: heroCarousel 20s infinite; will-change: opacity, transform;
}
.hero-slide:nth-child(2) { animation-delay: 5s; }
.hero-slide:nth-child(3) { animation-delay: 10s; }
.hero-slide:nth-child(4) { animation-delay: 15s; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
@keyframes heroCarousel {
    0% { opacity: 0; transform: scale(1.08); }
    6%, 22% { opacity: 1; transform: scale(1.04); }
    28%, 100% { opacity: 0; transform: scale(1.02); }
}
.hero-visual-overlay {
    position: absolute; bottom: 0; right: 0; left: 0; padding: 3.5rem 2.5rem; z-index: 3;
    background: linear-gradient(to top, rgba(14,16,17,0.95), transparent); text-align: center;
}
.hero-visual-overlay h2 { font-size: 2.5rem; color: var(--text-primary); margin-bottom: 1rem; transform: translateY(32px); }
/* =========================================
   7. BRAND STORY & PILLARS
   ========================================= */
.story-section { background-color: var(--bg-secondary); }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.story-image-wrap { position: relative; display: flex; justify-content: center; align-items: center; }
.story-img-main {
    width: 85%; height: 480px; object-fit: cover; border: 1px solid var(--border-color);
    background-image: url('https://hadhsalon.com/wp-content/uploads/2026/06/5.jpg'); background-size: cover; background-position: center; transition: var(--transition-smooth);
}
.story-img-floating {
    position: absolute; bottom: -30px; left: 0; width: 50%; height: 240px; border: 1px solid rgba(255,255,255,0.1);
    background-image: url('https://hadhsalon.com/wp-content/uploads/2026/06/8.jpg'); background-size: cover; background-position: center; animation: float 6s ease-in-out infinite alternate;
}
@keyframes float { 0% { transform: translateY(0); } 100% { transform: translateY(-15px); } }
.story-image-wrap:hover .story-img-main { transform: scale(1.02) rotate(-1deg); }
.story-text-content p { font-size: 1.15rem; color: var(--text-secondary); margin-bottom: 2rem; text-align: justify; }
.story-highlight { font-size: 1.6rem; color: var(--accent); border-right: 3px solid var(--primary-dark); padding-right: 1.5rem; margin: 2.5rem 0; }

/* Experience Cards */
.pillars-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.pillar-card { background-color: var(--card-bg); border: 1px solid var(--border-color); padding: 3.5rem 2rem; position: relative; overflow: hidden; transition: var(--transition-smooth); }
.pillar-card::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--primary-dark), var(--accent)); transform: scaleX(0); transform-origin: right; transition: var(--transition-smooth);
}
.pillar-card:hover { transform: translateY(-10px); border-color: rgba(255,255,255,0.15); box-shadow: 0 20px 40px rgba(0,0,0,0.4); }
.pillar-card:hover::before { transform: scaleX(1); }
.pillar-icon { font-size: 2.5rem; color: var(--accent); margin-bottom: 2rem; display: block; opacity: 0.8; }
.pillar-icon-svg svg { width: 1em; height: 1em; display: block; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.pillar-card h3 { font-size: 1.4rem; margin-bottom: 1rem; }
.pillar-card p { font-size: 0.95rem; color: var(--text-secondary); margin-bottom: 0; }

/* =========================================
   8. SERVICES SECTION
   ========================================= */
.services-section { background: linear-gradient(to bottom, var(--bg-primary), var(--bg-secondary)); }
#services-tabs-start { scroll-margin-top: 65px; }
.tabs-nav {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem; margin-bottom: 4rem;
    border-bottom: 1px solid var(--border-color); padding-bottom: 1rem;
}
.tab-btn { background: transparent; border: none; color: var(--text-secondary); padding: 0.8rem 1rem; font-size: 1.1rem; cursor: pointer; transition: var(--transition-fast); position: relative; font-family: inherit; }
.tab-btn::after { content: ''; position: absolute; bottom: -13px; right: 0; width: 0; height: 2px; background-color: var(--accent); transition: var(--transition-fast); }
.tab-btn.active { color: var(--text-primary); font-weight: 600; }
.tab-btn.active::after { width: 100%; }
.tab-pane { display: none; animation: complexFade 0.7s cubic-bezier(0.16, 1, 0.3, 1); }
.tab-pane.active { display: block; }
@keyframes complexFade { from { opacity: 0; transform: translateY(20px) scale(0.98); } to { opacity: 1; transform: translateY(0) scale(1); } }

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.service-card {
    background-color: rgba(26, 32, 34, 0.5); border: 1px solid var(--border-color);
    padding: 2.5rem 2rem; display: flex; flex-direction: column; justify-content: space-between;
    backdrop-filter: blur(10px); transition: var(--transition-smooth);
}
.service-card:hover { background-color: var(--card-bg); border-color: rgba(255,255,255,0.15); transform: scale(1.02); }
.service-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; }
.service-title { font-size: 1.3rem; font-weight: 600; margin: 0; }

.currency-wrapper { display: flex; align-items: center; gap: 0.6rem; background-color: rgba(255,255,255,0.03); padding: 0.4rem 0.8rem; color: var(--accent); }

/* التعديل: إجبار ظهور أسعار الخدمات بالإنجليزي */
.service-price { font-size: 1.35rem; font-weight: 700; white-space: nowrap; margin-top: 0; direction: ltr; }

.currency-icon-svg { width: 28px; height: 28px; display: inline-block; }

.service-desc { font-size: 0.95rem; color: var(--text-secondary); margin-bottom: 2rem; flex-grow: 1; }

/* =========================================
   9. PACKAGES & SUBSCRIPTIONS
   ========================================= */
.pricing-section { background-color: var(--bg-primary); }
/* Pricing And Subscriptions */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; align-items: stretch; }
.pricing-grid-two { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 920px; margin-inline: auto; }
.pricing-card {
    background-color: var(--card-bg); border: 1px solid var(--border-color);
    padding: 4rem 2.5rem; display: flex; flex-direction: column; position: relative; transition: var(--transition-smooth);
}
.pricing-card.featured { background: var(--primary-dark); border-color: var(--accent); box-shadow: 0 20px 40px rgba(0,0,0,0.6); transform: translateY(-10px); }
.badge-premium { position: absolute; top: 0; left: 0; background-color: var(--text-primary); color: var(--bg-primary); padding: 0.5rem 1.5rem; font-size: 0.85rem; font-weight: 700; }
.pricing-title { font-size: 1.8rem; margin: 0 0 1rem; }

.pricing-price-wrap {
    display: flex; align-items: flex-end; justify-content: flex-start;
    gap: 1rem; margin-bottom: 1.5rem; color: var(--text-primary);
}

/* التعديل: إجبار ظهور أسعار الباقات بالإنجليزي */
.pricing-price { font-size: 3.5rem; font-weight: 700; line-height: 1; margin-top: 10px; direction: ltr; }

.pricing-currency-svg { width: 48px; height: 48px; color: var(--text-secondary); }
.pricing-card.featured .pricing-currency-svg { color: var(--text-primary); opacity: 0.9; }

.pricing-desc { font-size: 1rem; color: var(--text-secondary); margin-bottom: 2.5rem; padding-bottom: 2rem; border-bottom: 1px solid var(--border-color); }
.pricing-card.featured .pricing-desc { border-bottom-color: rgba(255,255,255,0.15); color: rgba(255,255,255,0.8); }
.pricing-features { list-style: none; margin-bottom: 3rem; flex-grow: 1; }
.pricing-features li { position: relative; padding-right: 2rem; margin-bottom: 1.2rem; font-size: 1rem; color: var(--text-secondary); }
.pricing-card.featured .pricing-features li { color: var(--text-primary); }
.pricing-features li::before { content: ''; position: absolute; right: 0; top: 0.6rem; width: 8px; height: 1px; background-color: var(--accent); }
.pricing-card .btn { width: 100%; }
.pricing-card.featured .btn-primary { background-color: var(--bg-primary); color: var(--text-primary); }
.pricing-card.featured .btn-primary:hover { background-color: var(--text-primary); color: var(--bg-primary); }

.subs-meta { font-size: 0.9rem; color: var(--accent); background-color: rgba(200, 209, 197, 0.05); padding: 0.4rem 1rem; display: inline-block; margin-bottom: 1.5rem; border: 1px solid rgba(255,255,255,0.02); direction: rtl; unicode-bidi: isolate; }

/* =========================================
   10. HOURS & LOCATION
   ========================================= */
.info-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 5rem; align-items: stretch; }
.hours-box, .location-box { background-color: var(--bg-secondary); border: 1px solid var(--border-color); padding: 4rem; display: flex; flex-direction: column; justify-content: space-between; }

.hours-list { list-style: none; margin-bottom: 3rem; margin-top: 2.5rem; }
.hours-list li {
    display: grid; grid-template-columns: 1fr 2.6fr; gap: 2rem; align-items: start;
    padding: 1.8rem 0; border-bottom: 1px solid rgba(255,255,255,0.05);
}
.hours-list li:first-child { border-top: 1px solid rgba(255,255,255,0.05); }
.day-title { color: var(--text-primary); font-size: 1.15rem; font-weight: 500; }
.time-slots-container { display: flex; flex-direction: column; gap: 0.8rem; }
.time-slot-item { display: flex; gap: 1.5rem; align-items: center; color: var(--text-secondary); font-size: 1rem; }
.period-name { color: var(--accent); opacity: 0.9; min-width: 100px; }
.period-time { font-weight: 500; color: var(--text-primary); direction: rtl; unicode-bidi: isolate; }

.map-interactive-wrapper { 
    position: relative; width: 100%; height: 320px; overflow: hidden; 
    border: 1px solid var(--border-color); margin-bottom: 2.5rem; margin-top: 2rem; 
}
.map-interactive-wrapper iframe {
    width: 100%; height: 100%; border: none;
    filter: grayscale(85%) contrast(110%);
    transition: var(--transition-smooth);
}
.map-interactive-wrapper iframe:hover {
    filter: grayscale(20%) contrast(100%);
}

/* =========================================
   11. SOCIAL MEDIA & FOOTER
   ========================================= */
/* Social Cards */
.social-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.social-card { background-color: var(--card-bg); border: 1px solid var(--border-color); padding: 3rem 2rem; text-align: center; transition: var(--transition-smooth); display: flex; flex-direction: column; align-items: center; justify-content: center; }
.social-card:hover { border-color: var(--accent); transform: translateY(-5px); background-color: rgba(255,255,255,0.02); }
.social-icon { width: 48px; height: 48px; color: var(--text-primary); fill: currentColor; margin-bottom: 1rem; transition: var(--transition-fast); }
.social-icon-outline { fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; }
.social-card:hover .social-icon { color: var(--accent); fill: currentColor; }
.social-card:hover .social-icon-outline { fill: none; }
.social-card .en-num { color: var(--text-secondary); font-size: 1rem; direction: ltr; display: block; }

.final-cta { background: linear-gradient(180deg, var(--bg-secondary) 0%, #07090a 100%); text-align: center; padding: 12rem 0; overflow: hidden; }
.final-cta h2 { font-size: 4rem; margin-bottom: 1.5rem; }
.final-cta p { font-size: 1.3rem; color: var(--text-secondary); margin-bottom: 3.5rem; }
.final-cta .hero-buttons { justify-content: center; }

/* Footer */
footer { background-color: #07090a; padding: 5rem 0 7rem 0; border-top: 1px solid var(--border-color); color: var(--text-secondary); font-size: 0.95rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 4rem; margin-bottom: 4rem; text-align: right; }

.footer-logo-svg { width: 140px; height: auto; color: var(--text-primary); margin-bottom: 1.5rem; display: block; }

.footer-brand p { max-width: 300px; font-size: 0.95rem; }
.footer-col h4 { color: var(--text-primary); font-size: 1.1rem; margin-bottom: 1.5rem; font-weight: 600; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.8rem; }
.footer-col ul li a { color: var(--text-secondary); transition: var(--transition-fast); }
.footer-col ul li a:hover { color: var(--text-primary); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.03); padding-top: 2rem; display: flex; justify-content: space-between; align-items: center; font-size: 0.85rem; opacity: 0.6; }

.booking-float {
    position: fixed; bottom: 30px; left: 30px; background-color: #173639; color: var(--text-primary); padding: 1rem 1.8rem;
    display: flex; align-items: center; gap: 0.8rem; box-shadow: 0 10px 30px rgba(0,0,0,0.4); z-index: 999; transition: var(--transition-smooth); border: 1px solid rgba(255,255,255,0.1); font-weight: 500; font-family: inherit;
}
.booking-float:hover { transform: translateY(-3px); background-color: #1f494d; box-shadow: 0 15px 35px var(--primary-glow); }
.booking-float svg { fill: none; stroke: currentColor; width: 20px; height: 20px; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.reveal-element { opacity: 0; transform: translateY(40px); transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal-element.active-reveal { opacity: 1; transform: translateY(0); }

/* =========================================
   12. RESPONSIVE MEDIA QUERIES
   ========================================= */
@media (max-width: 1200px) {
    .hero-content h1 { font-size: 3.5rem; }
    .services-grid, .pricing-grid, .pillars-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid-two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 992px) {
    /* Shared Layout */
section { padding: 6rem 0; }
    .hero-grid, .story-grid, .info-grid { grid-template-columns: 1fr; gap: 4rem; }
    .hours-list li { grid-template-columns: 1fr; gap: 1rem; } 
    .hero-visual { height: 450px; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .final-cta h2 { font-size: 3rem; }
}
/* Mobile And Responsive Rules */
@media (max-width: 768px) {
    .nav-links {
        position: fixed; top: 0; right: 0; left: auto; bottom: auto; width: min(320px, calc(100vw - 5px)); max-width: none; height: 100dvh; min-height: 100vh;
        background-color: var(--bg-primary); flex-direction: column; padding: 8rem 3rem; gap: 2rem; 
        transform: translateX(100%); transition: var(--transition-smooth); border-left: 1px solid var(--border-color); z-index: 999; text-align: right; align-items: flex-start; overflow-y: auto;
    }
    .nav-links.active { transform: translateX(0); box-shadow: -10px 0 30px rgba(0,0,0,0.8); }
    .mobile-toggle { display: flex; }
    .nav-cta { display: none; }
    .hero-content h1 { font-size: 2.5rem; }
    .section-header h2 { font-size: 2.2rem; }
    .services-grid, .pricing-grid, .social-grid, .pillars-grid { grid-template-columns: 1fr; }
    .tabs-nav-wrap {
        position: sticky; top: 65px; z-index: 900;
        margin: 0 -2.5rem 2.5rem;
        background-color: rgba(14, 16, 17, 0.96); backdrop-filter: blur(18px);
    }
    .tabs-nav {
        position: static;
        flex-wrap: nowrap; justify-content: flex-start; gap: 0.75rem;
        overflow-x: auto; overflow-y: hidden;
        margin: 0; padding: 0.8rem 2.5rem 1rem;
        background-color: transparent;
        scrollbar-width: none;
    }
    .tabs-edge-hint {
        position: absolute; top: 50%; z-index: 4;
        width: 34px; height: 34px; transform: translateY(-50%);
        border: 1px solid rgba(200, 209, 197, 0.18); border-radius: 999px;
        background-color: rgba(14, 16, 17, 0.94); background-repeat: no-repeat; background-size: 18px 18px; background-position: center;
        box-shadow: 0 8px 22px rgba(0,0,0,0.45); opacity: 0; pointer-events: none;
        transition: opacity var(--transition-fast);
        animation: tabsHintNudge 1.8s ease-in-out infinite;
    }
    .tabs-edge-hint-left {
        left: 1rem;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c8d1c5' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M15 18l-6-6 6-6'/%3E%3C/svg%3E");
    }
    .tabs-edge-hint-right {
        right: 1rem;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c8d1c5' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 18l6-6-6-6'/%3E%3C/svg%3E");
    }
    .tabs-nav.can-scroll-left ~ .tabs-edge-hint-left,
    .tabs-nav.can-scroll-right ~ .tabs-edge-hint-right { opacity: 1; }
    @keyframes tabsHintNudge {
        0%, 100% { transform: translateY(-50%) translateX(0); }
        50% { transform: translateY(-50%) translateX(4px); }
    }
    .tabs-nav::-webkit-scrollbar { display: none; }
    .tab-btn { flex: 0 0 auto; white-space: nowrap; font-size: 1rem; padding: 0.8rem 0.9rem; }
    #packages .pricing-grid,
    #subscriptions .pricing-grid {
        display: flex; grid-template-columns: none; gap: 1rem;
        overflow-x: auto; overflow-y: hidden;
        scroll-snap-type: x mandatory; scroll-padding-inline: 11vw;
        margin: 0 -2.5rem; padding: 0 11vw 1.25rem;
        --hint-left-icon: 0 0; --hint-right-icon: 0 0;
        background-image:
            url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c8d1c5' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M15 18l-6-6 6-6'/%3E%3C/svg%3E"),
            url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c8d1c5' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 18l6-6-6-6'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-size: var(--hint-left-icon), var(--hint-right-icon);
        background-position: 4vw center, calc(100% - 4vw) center;
        animation: sliderHintNudge 1.8s ease-in-out infinite;
        scrollbar-width: none;
    }
    #packages .pricing-grid.can-scroll-left,
    #subscriptions .pricing-grid.can-scroll-left { --hint-left-icon: 22px 22px; }
    #packages .pricing-grid.can-scroll-right,
    #subscriptions .pricing-grid.can-scroll-right { --hint-right-icon: 22px 22px; }
    #packages .pricing-grid::-webkit-scrollbar,
    #subscriptions .pricing-grid::-webkit-scrollbar { display: none; }
    #packages .pricing-card,
    #subscriptions .pricing-card {
        flex: 0 0 78vw; max-width: 78vw; scroll-snap-align: center; scroll-snap-stop: always;
    }
    #packages .pricing-card.active-reveal,
    #subscriptions .pricing-card.active-reveal { opacity: 0.68; transform: scale(0.92); }
    #packages .pricing-card.active-reveal.slider-active,
    #subscriptions .pricing-card.active-reveal.slider-active { opacity: 1; transform: scale(1); }
    @keyframes sliderHintNudge {
        0%, 100% { background-position: 16px center, calc(100% - 16px) center, left center, right center; }
        50% { background-position: 24px center, calc(100% - 24px) center, left center, right center; }
    }
    #packages .pricing-grid,
    #subscriptions .pricing-grid {
        animation-name: pricingSliderHintNudge;
    }
    @keyframes pricingSliderHintNudge {
        0%, 100% { background-position: 4vw center, calc(100% - 4vw) center; }
        50% { background-position: 6vw center, calc(100% - 6vw) center; }
    }
    .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; text-align: center; justify-items: center; }
    .footer-logo-svg { margin-left: auto; margin-right: auto; }
    .footer-brand p { margin-left: auto; margin-right: auto; }
    .footer-col, .footer-col ul, .footer-col ul li { text-align: center; }
    .footer-col ul li[dir="ltr"] { direction: ltr; text-align: center; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
    .hero-buttons, .final-cta .hero-buttons { flex-direction: column; width: 100%; }
    .btn { width: 100%; text-align: center; justify-content: center; }
    .booking-float { left: 20px; right: 20px; bottom: 20px; justify-content: center; padding: 1.1rem; font-size: 1.1rem; }
    .hours-box, .location-box { padding: 2rem 1.5rem; }
    .pillar-card { padding: 32px; }
    .pillar-icon { margin-bottom: 0; }
    .story-img-main { height: 340px; }
    .story-img-floating { height: 160px; bottom: -18px; }
}

/* Shared Utility Classes */
.svg-sprite { display: none; }
.section-header-center { text-align: center; margin: 0 auto 5rem; }
.section-title-right { text-align: right; }
.footer-credit { direction: ltr; opacity: 1; }

/* WordPress Theme Compatibility Overrides */
.hadh-salon-page {
    font-family: "GE SS Two", sans-serif !important;
}

.hadh-salon-page button,
.hadh-salon-page input,
.hadh-salon-page select,
.hadh-salon-page textarea,
.hadh-salon-page .btn,
.hadh-salon-page .tab-btn,
.hadh-salon-page .booking-float {
    font-family: "GE SS Two", sans-serif !important;
}

.hadh-salon-page .en-num,
.hadh-salon-page .service-price,
.hadh-salon-page .pricing-price,
.hadh-salon-page .period-time {
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif !important;
    font-variant-numeric: lining-nums tabular-nums;
    font-feature-settings: "locl" 0, "lnum" 1, "tnum" 1;
}

.hadh-salon-page .en-num,
.hadh-salon-page .service-price,
.hadh-salon-page .pricing-price {
    direction: ltr !important;
    unicode-bidi: isolate !important;
}

.hadh-salon-page .period-time {
    direction: rtl !important;
    unicode-bidi: isolate !important;
}

.hadh-salon-page .tab-btn,
.hadh-salon-page .tab-btn:hover,
.hadh-salon-page .tab-btn:focus,
.hadh-salon-page .tab-btn:active {
    background: transparent !important;
    background-color: transparent !important;
    color: var(--text-secondary) !important;
    box-shadow: none !important;
}

.hadh-salon-page .tab-btn.active,
.hadh-salon-page .tab-btn.active:hover,
.hadh-salon-page .tab-btn.active:focus,
.hadh-salon-page .tab-btn.active:active {
    background: transparent !important;
    background-color: transparent !important;
    color: var(--text-primary) !important;
    box-shadow: none !important;
}

.hadh-salon-page .tab-btn:focus-visible {
    outline: 1px solid rgba(200, 209, 197, 0.75) !important;
    outline-offset: 6px;
}

.hadh-salon-page .btn-primary,
.hadh-salon-page .book-btn,
.hadh-salon-page .booking-float {
    background-color: var(--primary-dark) !important;
    color: var(--text-primary) !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
    text-decoration: none !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4) !important;
}

.hadh-salon-page .btn-primary:hover,
.hadh-salon-page .btn-primary:focus,
.hadh-salon-page .btn-primary:active,
.hadh-salon-page .book-btn:hover,
.hadh-salon-page .book-btn:focus,
.hadh-salon-page .book-btn:active,
.hadh-salon-page .booking-float:hover,
.hadh-salon-page .booking-float:focus,
.hadh-salon-page .booking-float:active {
    background-color: #1f494d !important;
    color: var(--text-primary) !important;
    border-color: rgba(255, 255, 255, 0.16) !important;
    box-shadow: 0 15px 35px var(--primary-glow) !important;
}

.hadh-salon-page .pricing-card.featured .btn-primary {
    background-color: var(--bg-primary) !important;
    color: var(--text-primary) !important;
}

.hadh-salon-page .pricing-card.featured .btn-primary:hover,
.hadh-salon-page .pricing-card.featured .btn-primary:focus,
.hadh-salon-page .pricing-card.featured .btn-primary:active {
    background-color: var(--text-primary) !important;
    color: var(--bg-primary) !important;
}

.hadh-salon-page .btn:focus-visible,
.hadh-salon-page .booking-float:focus-visible {
    outline: 1px solid rgba(200, 209, 197, 0.75) !important;
    outline-offset: 3px;
}
