/* ============================================
   PILATES BY RIM - Premium Stylesheet
   The Art of Conscious, Intelligent Movement
   ============================================ */

/* ── CSS Variables ── */
:root {
    /* Peaceful Color Palette */
    --sage: #7c9a6c;
    --sage-light: #a8c098;
    --sage-dark: #5a7a4a;
    --cream: #faf8f5;
    --cream-dark: #f0ece6;
    --sand: #e8ddd0;
    --gold: #c4a668;
    --gold-light: #ddc88a;
    --charcoal: #2d2d2d;
    --charcoal-light: #4a4a4a;
    --text: #3a3a3a;
    --text-light: #6b6b6b;
    --text-lighter: #999;
    --white: #ffffff;
    --overlay: rgba(45, 45, 45, 0.85);

    /* Typography */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
    --font-arabic: 'Noto Kufi Arabic', 'Tajawal', sans-serif;

    /* Spacing */
    --section-pad: 120px;
    --container-width: 1200px;

    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

    /* Borders */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--cream);
    overflow-x: hidden;
    width: 100%;
    line-height: 1.7;
    cursor: default;
    position: relative;
}

/* RTL Support */
html[dir="rtl"] body {
    font-family: var(--font-arabic);
}

html[dir="rtl"] .hero-title,
html[dir="rtl"] .section-title,
html[dir="rtl"] h1, html[dir="rtl"] h2, html[dir="rtl"] h3, html[dir="rtl"] h4 {
    font-family: var(--font-arabic);
}

html[dir="rtl"] .nav-links {
    flex-direction: row-reverse;
}

html[dir="rtl"] .service-link {
    direction: rtl;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

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

::selection {
    background: var(--sage-light);
    color: var(--white);
}

/* ── Custom Cursor (hidden - using CSS crosshair) ── */
.custom-cursor,
.cursor-follower {
    display: none;
}

@media (max-width: 768px) {
    body { cursor: auto; }
}

/* ── Preloader ── */
#preloader {
    position: fixed;
    inset: 0;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-inner {
    text-align: center;
}

.breath-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--sage-light) 0%, transparent 70%);
    margin: 0 auto 24px;
    animation: breathe 3s ease-in-out infinite;
}

@keyframes breathe {
    0%, 100% { transform: scale(0.8); opacity: 0.4; }
    50% { transform: scale(1.3); opacity: 0.8; }
}

.preloader-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--sage);
    letter-spacing: 4px;
    animation: fadeInOut 3s ease-in-out infinite;
}

@keyframes fadeInOut {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}


/* ── Container ── */
.section-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

/* ── Navigation ── */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.5s var(--ease-out);
}

/* Navbar on dark hero - light text */
#navbar .nav-link {
    color: rgba(255,255,255,0.7);
}
#navbar .nav-link:hover,
#navbar .nav-link.active {
    color: var(--sage-light);
}
#navbar .lang-btn {
    color: rgba(255,255,255,0.7);
    border-color: rgba(255,255,255,0.25);
}
#navbar .nav-logo-img {
    filter: brightness(0) invert(1);
}

/* Scrolled: cream bg, dark text */
#navbar.scrolled {
    background: rgba(250, 248, 245, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 2px 40px rgba(0,0,0,0.06);
}
#navbar.scrolled .nav-link {
    color: var(--text-light);
}
#navbar.scrolled .nav-link:hover,
#navbar.scrolled .nav-link.active {
    color: var(--sage);
}
#navbar.scrolled .lang-btn {
    color: var(--text-light);
    border-color: var(--sand);
}
#navbar.scrolled .nav-logo-img {
    filter: none;
}
#navbar .hamburger span {
    background: rgba(255,255,255,0.8);
}
#navbar.scrolled .hamburger span {
    background: var(--charcoal);
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo-img {
    height: 48px;
    width: auto;
    display: block;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: 1px;
    color: var(--charcoal);
}

.logo-accent {
    color: var(--sage);
    font-style: italic;
    margin: 0 2px;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-light);
    position: relative;
    padding: 4px 0;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--sage);
    transition: width 0.4s var(--ease-out);
}

.nav-link:hover {
    color: var(--sage);
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.lang-btn {
    background: none;
    border: 1.5px solid var(--sage);
    color: var(--sage);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-arabic);
}

.lang-btn:hover {
    background: var(--sage);
    color: var(--white);
}

.nav-cta {
    background: var(--sage);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: var(--sage-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(124, 154, 108, 0.3);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--charcoal);
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 4px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -4px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: rgba(250, 248, 245, 0.98);
    backdrop-filter: blur(30px);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s var(--ease-out);
}

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

.mobile-menu-inner {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mobile-link {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--charcoal);
    transition: color 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.mobile-menu.open .mobile-link {
    opacity: 1;
    transform: translateY(0);
}

.mobile-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-link:nth-child(2) { transition-delay: 0.15s; }
.mobile-link:nth-child(3) { transition-delay: 0.2s; }
.mobile-link:nth-child(4) { transition-delay: 0.25s; }
.mobile-link:nth-child(5) { transition-delay: 0.3s; }
.mobile-link:nth-child(6) { transition-delay: 0.35s; }

.mobile-link:hover {
    color: var(--sage);
}

.mobile-cta {
    display: inline-block;
    margin-top: 16px;
    background: var(--sage);
    color: var(--white);
    padding: 14px 40px;
    border-radius: 30px;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s var(--ease-out);
    transition-delay: 0.4s;
}

.mobile-menu.open .mobile-cta {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1024px) {
    .nav-links, .nav-cta { display: none; }
    .hamburger { display: flex; }
}

/* ── HERO (dark sparkles theme) ── */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: #0a0a0a;
}

/* Full-section sparkles */
.hero-sparkles {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0;
    transition: opacity 1.2s ease;
}

.hero-sparkles.loaded {
    opacity: 1;
}

.hero-grid {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1200px;
    padding: 120px 40px 80px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 64px;
    align-items: center;
}

.hero-content {
    text-align: left;
    position: relative;
    z-index: 3;
}

html[dir="rtl"] .hero-content {
    text-align: right;
}

.hero-badge {
    display: inline-block;
    padding: 8px 24px;
    border: 1px solid rgba(168,192,152,0.35);
    border-radius: 30px;
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--sage-light);
    margin-bottom: 32px;
    background: rgba(124,154,108,0.08);
    backdrop-filter: blur(10px);
}

.hero-title {
    font-family: var(--font-heading);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 0;
}

.hero-line {
    display: block;
    overflow: hidden;
}

.line-1 {
    font-size: clamp(1.1rem, 2.5vw, 1.6rem);
    letter-spacing: 6px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-bottom: 4px;
}

.line-2 {
    font-size: clamp(3.2rem, 9vw, 6.5rem);
    color: #ffffff;
}

.line-3 {
    font-size: clamp(3.2rem, 9vw, 6.5rem);
}

.line-3.accent {
    color: var(--sage-light);
    font-style: italic;
}

/* ── Aceternity-style gradient glow lines ── */
.hero-glow-wrapper {
    position: relative;
    width: min(40rem, 90%);
    height: 10rem;
    margin: 0 auto;
}

.hero-glow-line {
    position: absolute;
    top: 0;
}

/* Wide sage glow (blurred) */
.glow-wide {
    left: 5%;
    width: 90%;
    height: 2px;
    background: linear-gradient(to right, transparent, #7c9a6c, transparent);
    filter: blur(6px);
}

/* Wide sage glow (sharp) */
.glow-wide-sharp {
    left: 5%;
    width: 90%;
    height: 1px;
    background: linear-gradient(to right, transparent, #7c9a6c, transparent);
}

/* Narrow sage-light glow (blurred) */
.glow-narrow {
    left: 25%;
    width: 50%;
    height: 5px;
    background: linear-gradient(to right, transparent, #a8c098, transparent);
    filter: blur(6px);
}

/* Narrow sage-light glow (sharp) */
.glow-narrow-sharp {
    left: 25%;
    width: 50%;
    height: 1px;
    background: linear-gradient(to right, transparent, #a8c098, transparent);
}

/* Concentrated sparkles zone under title */
.hero-sparkles-bottom {
    position: absolute;
    inset: 0;
    z-index: 1;
}

/* Radial mask to fade sparkles at edges (exact Aceternity pattern) */
.hero-glow-mask {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: #0a0a0a;
    -webkit-mask-image: radial-gradient(350px 200px at top center, transparent 20%, white);
    mask-image: radial-gradient(350px 200px at top center, transparent 20%, white);
    z-index: 2;
}

.hero-subtitle {
    font-size: clamp(0.95rem, 1.5vw, 1.15rem);
    color: rgba(255,255,255,0.5);
    max-width: 560px;
    margin: 32px 0 40px;
    line-height: 1.9;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

html[dir="rtl"] .hero-actions {
    justify-content: flex-end;
}

/* Hero dark-theme button overrides */
.hero-btn-ghost {
    color: rgba(255,255,255,0.8);
    border-color: rgba(255,255,255,0.3);
}

.hero-btn-ghost:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
    border-color: rgba(255,255,255,0.5);
}

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

/* Hero feature image (beside text) */
.hero-feature {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-feature-frame {
    position: relative;
    width: 100%;
    max-width: 460px;
    aspect-ratio: 4 / 5;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(168, 192, 152, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
    transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
    background: #111;
}

.hero-feature-frame:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 70px rgba(124, 154, 108, 0.22);
}

.hero-feature-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-feature-glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0) 65%, rgba(10, 10, 10, 0.35) 100%);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 36px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.4s var(--ease-out);
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
}

html[dir="rtl"] .btn {
    font-family: var(--font-arabic);
}

.btn-primary {
    background: var(--sage);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--sage-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(124, 154, 108, 0.35);
}

.btn-ghost {
    background: transparent;
    color: var(--charcoal);
    border: 1.5px solid var(--charcoal);
}

.btn-ghost:hover {
    background: var(--charcoal);
    color: var(--white);
    transform: translateY(-3px);
}

/* Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    opacity: 0;
    animation: fadeUp 1s var(--ease-out) 2s forwards;
    z-index: 2;
}

.scroll-indicator {
    width: 24px;
    height: 40px;
    border: 1.5px solid var(--sage);
    border-radius: 12px;
    margin: 0 auto 8px;
    position: relative;
}

.scroll-line {
    width: 2px;
    height: 8px;
    background: var(--sage);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
    0% { transform: translateX(-50%) translateY(0); opacity: 1; }
    100% { transform: translateX(-50%) translateY(16px); opacity: 0; }
}

.hero-scroll span {
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-lighter);
}

/* ── Section Common ── */
.section-label {
    font-size: 0.75rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--sage);
    margin-bottom: 16px;
    font-weight: 500;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 400;
    color: var(--charcoal);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-light);
    max-width: 600px;
    line-height: 1.8;
    font-weight: 300;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header .section-subtitle {
    margin: 0 auto;
}

/* ── ABOUT ── */
.about-section {
    padding: var(--section-pad) 0;
    position: relative;
    z-index: 2;
    background: var(--cream);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
}

.about-image-placeholder {
    width: 100%;
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, var(--sage-light) 0%, var(--sage) 100%);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.about-image-real {
    width: 100%;
    aspect-ratio: 3/4;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
}

.about-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.placeholder-silhouette {
    width: 60%;
    color: var(--white);
    opacity: 0.6;
}

.placeholder-text {
    position: absolute;
    bottom: 24px;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--white);
    letter-spacing: 2px;
}

.about-image-decor {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--sage-light);
    border-radius: var(--radius-lg);
    opacity: 0.4;
    z-index: -1;
}

.about-floating-card {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    box-shadow: 0 16px 48px rgba(0,0,0,0.08);
    text-align: center;
}

.card-1 {
    bottom: -20px;
    left: -30px;
}

.card-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.4rem;
    color: var(--sage);
    font-weight: 600;
    line-height: 1;
}

.card-label {
    font-size: 0.75rem;
    color: var(--text-light);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 4px;
}

.about-content-col .section-label,
.about-content-col .section-title {
    text-align: left;
}

html[dir="rtl"] .about-content-col .section-label,
html[dir="rtl"] .about-content-col .section-title {
    text-align: right;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.9;
    font-weight: 300;
}

.about-philosophy {
    margin-top: 32px;
    padding: 28px;
    background: linear-gradient(135deg, rgba(124,154,108,0.06) 0%, rgba(196,166,104,0.06) 100%);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--sage);
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

html[dir="rtl"] .about-philosophy {
    border-left: none;
    border-right: 3px solid var(--sage);
}

.philosophy-icon {
    flex-shrink: 0;
    width: 40px;
    color: var(--sage);
}

.about-philosophy blockquote {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--charcoal);
    line-height: 1.7;
    font-style: italic;
}

/* ── STATS ── */
.stats-section {
    padding: 80px 0;
    position: relative;
    background: var(--charcoal);
    overflow: hidden;
}

.stats-3d-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.3;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat-card {
    text-align: center;
    padding: 32px 16px;
    position: relative;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 5vw, 4rem);
    font-weight: 300;
    color: var(--white);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--sage-light);
    font-weight: 400;
}

.stat-line {
    width: 40px;
    height: 2px;
    background: var(--gold);
    margin: 16px auto 0;
    opacity: 0.6;
}

/* ── SERVICES ── */
/* ── THE CLASS (Dynamic from DB) ── */
.the-class-section {
    padding: var(--section-pad) 0;
    background: var(--cream);
    position: relative;
    z-index: 2;
}

.classes-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 860px;
    margin: 0 auto;
}

.classes-loading {
    text-align: center;
    padding: 60px 0;
    color: var(--text-light);
    font-size: 0.95rem;
}

.class-detail-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 60px 50px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(124,154,108,0.1);
}

.class-card-name {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 12px;
}

.class-card-subtitle {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 32px;
    font-weight: 300;
}

.class-detail-heading {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 24px;
}

.class-benefits-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.class-benefits-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 16px;
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.8;
    font-weight: 300;
}

.class-benefits-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--sage);
    opacity: 0.7;
}

.class-ideal-for {
    background: rgba(124,154,108,0.04);
    border-radius: var(--radius-md, 12px);
    padding: 32px;
    margin-bottom: 40px;
    border-left: 3px solid var(--sage);
}

.ideal-items {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.ideal-item {
    font-size: 0.95rem;
    color: var(--charcoal);
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ideal-arrow {
    color: var(--sage);
    font-weight: 600;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.class-closing {
    text-align: center;
    margin-bottom: 36px;
    padding-top: 24px;
    border-top: 1px solid rgba(124,154,108,0.12);
}

.class-closing p {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--charcoal);
    line-height: 1.8;
    font-style: italic;
}

.class-schedule-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(124,154,108,0.06);
    border: 1px solid rgba(124,154,108,0.15);
    border-radius: 10px;
    padding: 16px 20px;
    margin-bottom: 32px;
    color: var(--charcoal);
}

.class-schedule-badge svg {
    color: var(--sage);
    flex-shrink: 0;
}

.schedule-days {
    font-weight: 600;
    font-size: 0.95rem;
}

.schedule-time {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 2px;
}

.class-join-btn {
    display: block;
    text-align: center;
    max-width: 280px;
    margin: 0 auto;
}

.register-class-name {
    display: none;
    background: var(--sage);
    color: var(--white);
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.95rem;
    text-align: center;
    margin-bottom: 24px;
}

@media (max-width: 768px) {
    .class-detail-card {
        padding: 36px 24px;
    }
    .class-ideal-for {
        padding: 24px 20px;
    }
}

/* ── METHOD ── */
.method-section {
    padding: var(--section-pad) 0;
    background: linear-gradient(180deg, var(--cream-dark) 0%, var(--cream) 100%);
    position: relative;
    overflow: hidden;
}

.method-3d {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.15;
}

.method-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
}

.pillar {
    text-align: center;
    padding: 48px 32px;
    background: rgba(255,255,255,0.6);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(124,154,108,0.1);
    transition: all 0.5s var(--ease-out);
}

.pillar:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.06);
    background: rgba(255,255,255,0.9);
}

.pillar-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--sage-light);
    opacity: 0.4;
    font-weight: 300;
    margin-bottom: 16px;
}

.pillar-3d-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
}

.pillar h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--charcoal);
    margin-bottom: 16px;
    font-weight: 500;
}

.pillar p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.8;
    font-weight: 300;
}

/* ── JOURNEY ── */
.journey-section {
    padding: var(--section-pad) 0;
    background: var(--cream);
    position: relative;
    z-index: 2;
}

.journey-timeline {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.journey-line {
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--sage-light), var(--gold));
    opacity: 0.3;
}

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

.journey-step {
    display: flex;
    gap: 32px;
    align-items: flex-start;
    margin-bottom: 48px;
    position: relative;
}

.step-marker {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--sage);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 500;
    position: relative;
    z-index: 2;
}

.step-content h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--charcoal);
    margin-bottom: 8px;
    font-weight: 500;
}

.step-content p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.8;
    font-weight: 300;
}

/* ── TESTIMONIALS ── */
.testimonials-section {
    padding: var(--section-pad) 0;
    background: linear-gradient(135deg, rgba(124,154,108,0.04) 0%, rgba(196,166,104,0.04) 100%);
    position: relative;
    z-index: 2;
}

.testimonials-carousel {
    overflow: hidden;
    position: relative;
    max-width: 750px;
    margin: 0 auto;
}

.testimonial-track {
    display: flex;
    transition: transform 0.6s var(--ease-out);
    direction: ltr; /* Prevent flex reversal in RTL — cards stay in order */
}

.testimonial-card {
    min-width: 100%;
    padding: 48px;
    background: var(--white);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: 0 8px 40px rgba(0,0,0,0.04);
    box-sizing: border-box;
}

/* RTL: restore text direction inside testimonial cards */
html[dir="rtl"] .testimonial-card {
    direction: rtl;
    text-align: center;
}

html[dir="rtl"] .carousel-controls {
    direction: rtl;
}

html[dir="rtl"] .testimonial-text {
    font-family: var(--font-arabic);
    line-height: 1.9;
}

html[dir="rtl"] .testimonial-author {
    direction: rtl;
}

.testimonial-stars {
    color: var(--gold);
    font-size: 1.2rem;
    letter-spacing: 4px;
    margin-bottom: 24px;
}

.testimonial-text {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--charcoal);
    line-height: 1.7;
    margin-bottom: 32px;
    font-style: italic;
    font-weight: 400;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--sage);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 500;
}

.author-name {
    font-weight: 500;
    color: var(--charcoal);
    font-size: 0.95rem;
}

.author-role {
    font-size: 0.8rem;
    color: var(--text-lighter);
}

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.carousel-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid var(--sage);
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: var(--sage);
}

.carousel-btn svg {
    width: 18px;
    height: 18px;
}

.carousel-btn:hover {
    background: var(--sage);
    color: var(--white);
}

.carousel-dots {
    display: flex;
    gap: 8px;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--sage-light);
    opacity: 0.3;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.carousel-dot.active {
    opacity: 1;
    width: 24px;
    border-radius: 4px;
    background: var(--sage);
}

/* ── Share Your Story (Testimonial Form) ── */
.testimonial-share {
    max-width: 720px;
    margin: 80px auto 0;
    padding: 48px 40px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.testimonial-share-header {
    text-align: center;
    margin-bottom: 32px;
}

.testimonial-share-header h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--charcoal);
    margin-bottom: 12px;
    font-weight: 500;
}

.testimonial-share-header p {
    color: var(--text-lighter);
    font-size: 0.95rem;
    line-height: 1.6;
}

.testimonial-form .testimonial-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.testimonial-rating {
    display: flex;
    gap: 6px;
    margin-top: 4px;
}

.testimonial-rating .rating-star {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.8rem;
    line-height: 1;
    color: var(--sage-light);
    opacity: 0.4;
    transition: all 0.2s ease;
    padding: 4px;
}

.testimonial-rating .rating-star.active {
    color: var(--gold);
    opacity: 1;
}

.testimonial-rating .rating-star:hover {
    transform: scale(1.15);
}

@media (max-width: 640px) {
    .testimonial-share {
        padding: 32px 22px;
        margin-top: 56px;
    }
    .testimonial-form .testimonial-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .testimonial-share-header h3 {
        font-size: 1.6rem;
    }
}

/* ── BOOKING ── */
.booking-section {
    padding: var(--section-pad) 0;
    background: var(--cream);
    position: relative;
    z-index: 2;
}

.booking-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 48px;
    box-shadow: 0 16px 64px rgba(0,0,0,0.06);
}

.booking-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 48px;
    gap: 0;
}

.booking-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.4;
    transition: opacity 0.3s ease;
}

.booking-step.active {
    opacity: 1;
}

.booking-step.done {
    opacity: 0.7;
}

.step-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--sage);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--sage);
    transition: all 0.3s ease;
}

.booking-step.active .step-circle {
    background: var(--sage);
    color: var(--white);
}

.booking-step.done .step-circle {
    background: var(--sage-light);
    color: var(--white);
    border-color: var(--sage-light);
}

.booking-step span {
    font-size: 0.7rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-light);
}

.step-connector {
    width: 60px;
    height: 2px;
    background: var(--sand);
    margin: 0 12px;
    margin-bottom: 24px;
}

/* Booking Panels */
.booking-panel {
    display: none;
    animation: fadeIn 0.4s ease;
}

.booking-panel.active {
    display: block;
}

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

/* Service Options */
.service-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.service-option input {
    display: none;
}

.option-card {
    padding: 24px;
    border: 2px solid var(--sand);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.option-card:hover {
    border-color: var(--sage-light);
    background: rgba(124,154,108,0.03);
}

.service-option input:checked + .option-card {
    border-color: var(--sage);
    background: rgba(124,154,108,0.06);
    box-shadow: 0 4px 16px rgba(124,154,108,0.15);
}

.option-icon {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.option-card h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--charcoal);
    margin-bottom: 4px;
}

.option-card p {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* Calendar */
.datetime-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.calendar-wrapper {
    border: 1px solid var(--sand);
    border-radius: var(--radius-md);
    padding: 20px;
}

.calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.calendar-header h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--charcoal);
}

.cal-nav {
    width: 32px;
    height: 32px;
    border: 1px solid var(--sand);
    border-radius: 50%;
    background: none;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--sage);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.cal-nav:hover {
    background: var(--sage);
    color: var(--white);
    border-color: var(--sage);
}

.calendar-days-header {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    margin-bottom: 8px;
}

.calendar-days-header span {
    font-size: 0.7rem;
    color: var(--text-lighter);
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.cal-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    background: none;
    color: var(--text);
}

.cal-day:hover:not(.disabled):not(.empty) {
    background: var(--sage-light);
    color: var(--white);
}

.cal-day.selected {
    background: var(--sage);
    color: var(--white);
}

.cal-day.today {
    border: 1.5px solid var(--sage);
}

.cal-day.disabled {
    color: var(--sand);
    cursor: not-allowed;
}

.cal-day.empty {
    cursor: default;
}

/* Calendar: highlight days with sessions */
.cal-day.has-session {
    font-weight: 600;
    color: var(--sage-dark, var(--sage));
    position: relative;
}

.cal-day.has-session::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--sage);
}

.cal-day.has-session.selected::after {
    background: var(--white);
}

.cal-day.no-session:not(.today) {
    color: var(--sand);
    cursor: default;
}

/* Sessions List (replaces old time-slots) */
.sessions-list-wrapper {
    min-height: 200px;
}

.sessions-list-wrapper h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--charcoal);
    margin-bottom: 16px;
}

.sessions-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.no-sessions-msg {
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
    padding: 40px 0;
    font-weight: 300;
}

.session-card {
    display: flex;
    align-items: stretch;
    border: 1.5px solid var(--sand);
    border-radius: var(--radius-sm, 8px);
    background: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-body);
    text-align: left;
    overflow: hidden;
    padding: 0;
    width: 100%;
}

.session-card:hover:not(.full) {
    border-color: var(--sage-light);
    background: rgba(124,154,108,0.04);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.session-card.selected {
    border-color: var(--sage);
    background: rgba(124,154,108,0.08);
    box-shadow: 0 4px 20px rgba(124,154,108,0.15);
}

.session-card.full {
    opacity: 0.5;
    cursor: not-allowed;
}

.session-color-bar {
    width: 5px;
    flex-shrink: 0;
}

.session-info {
    padding: 14px 16px;
    flex: 1;
}

.session-name {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--charcoal);
    margin-bottom: 4px;
}

.session-time {
    font-size: 0.85rem;
    color: var(--text);
    margin-bottom: 8px;
}

.session-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--text-light);
}

.session-instructor {
    font-weight: 400;
}

.session-spots {
    font-weight: 500;
    color: var(--sage);
}

.session-spots.spots-full {
    color: var(--gold, #c4a668);
}

/* Booking Form */
.booking-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-light);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 1.5px solid var(--sand);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text);
    background: var(--cream);
    transition: all 0.3s ease;
    outline: none;
}

html[dir="rtl"] .form-group input,
html[dir="rtl"] .form-group textarea {
    font-family: var(--font-arabic);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--sage);
    box-shadow: 0 0 0 3px rgba(124,154,108,0.1);
}

.form-group textarea {
    resize: vertical;
}

/* Confirmation */
.confirmation-card,
.success-card {
    text-align: center;
    padding: 24px 0;
}

.confirm-icon,
.success-animation {
    width: 60px;
    height: 60px;
    margin: 0 auto 24px;
    color: var(--sage);
}

.confirm-details {
    text-align: left;
    background: var(--cream);
    border-radius: var(--radius-md);
    padding: 24px;
    margin: 24px 0;
}

html[dir="rtl"] .confirm-details {
    text-align: right;
}

.confirm-details .detail-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--sand);
    font-size: 0.9rem;
}

.confirm-details .detail-row:last-child {
    border-bottom: none;
}

.confirm-details .detail-label {
    color: var(--text-light);
}

.confirm-details .detail-value {
    font-weight: 500;
    color: var(--charcoal);
}

.confirm-note,
.whatsapp-note {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 16px;
}

/* Success Animation */
.success-circle {
    stroke-dasharray: 226;
    stroke-dashoffset: 226;
    animation: drawCircle 0.8s ease forwards;
}

.success-check {
    stroke-dasharray: 50;
    stroke-dashoffset: 50;
    animation: drawCheck 0.5s ease 0.6s forwards;
}

@keyframes drawCircle {
    to { stroke-dashoffset: 0; }
}

@keyframes drawCheck {
    to { stroke-dashoffset: 0; }
}

/* Booking Nav */
.booking-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 32px;
    gap: 16px;
}

.booking-nav .btn {
    min-width: 140px;
    text-align: center;
}

.booking-nav .btn:only-child {
    margin-left: auto;
}

html[dir="rtl"] .booking-nav .btn:only-child {
    margin-left: 0;
    margin-right: auto;
}

/* ── INSTAGRAM ── */
.instagram-section {
    padding: var(--section-pad) 0 80px;
    background: var(--cream);
    position: relative;
    z-index: 2;
}

.insta-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
    margin-bottom: 32px;
}

.insta-item {
    aspect-ratio: 1;
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.4s var(--ease-out);
    position: relative;
}

.insta-item:hover {
    box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}

.insta-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s var(--ease-out);
}

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

.insta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(45, 45, 45, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.insta-overlay span {
    color: var(--white);
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 500;
}

.insta-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--sage-light) 0%, var(--sage) 50%, var(--gold) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.insta-placeholder span {
    color: var(--white);
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 500;
}

.insta-follow-btn {
    display: inline-block;
    padding: 12px 32px;
    border: 1.5px solid var(--charcoal);
    border-radius: 30px;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--charcoal);
    transition: all 0.3s ease;
    text-align: center;
}

.insta-follow-btn:hover {
    background: var(--charcoal);
    color: var(--white);
}

.instagram-section .section-header {
    margin-bottom: 40px;
}

/* ── CONTACT ── */
.contact-section {
    padding: var(--section-pad) 0;
    background: var(--cream-dark);
    position: relative;
    z-index: 2;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-info-col .section-label,
.contact-info-col .section-title {
    text-align: left;
}

html[dir="rtl"] .contact-info-col .section-label,
html[dir="rtl"] .contact-info-col .section-title {
    text-align: right;
}

.contact-intro {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 40px;
    font-weight: 300;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sage);
    box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}

.contact-icon svg {
    width: 20px;
    height: 20px;
}

.contact-item h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 2px;
}

.contact-item p,
.contact-item a {
    font-size: 0.9rem;
    color: var(--text-light);
}

.contact-item a:hover {
    color: var(--sage);
}

/* Contact Form */
.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 40px rgba(0,0,0,0.04);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form .btn.full-width {
    width: 100%;
}

/* ── FOOTER ── */
.site-footer {
    background: var(--charcoal);
    color: var(--white);
    padding: 80px 0 32px;
    position: relative;
    z-index: 2;
}

.footer-wave {
    position: absolute;
    top: -60px;
    left: 0;
    right: 0;
    color: var(--charcoal);
}

.footer-wave svg {
    width: 100%;
    height: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .logo-text {
    color: var(--white);
    font-size: 1.4rem;
}

.footer-brand p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    margin-top: 12px;
    line-height: 1.6;
}

.footer-links h4 {
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--sage-light);
    margin-bottom: 20px;
}

.footer-links a {
    display: block;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    padding: 4px 0;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-social h4 {
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--sage-light);
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: rgba(255,255,255,0.6);
}

.social-links a svg {
    width: 18px;
    height: 18px;
}

.social-links a:hover {
    border-color: var(--sage);
    background: var(--sage);
    color: var(--white);
}

.footer-bottom {
    padding-top: 32px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.35);
}

/* ── WhatsApp Float ── */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
    z-index: 999;
    transition: all 0.3s ease;
}

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

.whatsapp-float svg {
    width: 28px;
    height: 28px;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

/* ── Reveal Animations ── */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s var(--ease-out);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.8s var(--ease-out);
}

.reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.8s var(--ease-out);
}

.reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    :root {
        --section-pad: 80px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-image-wrapper {
        max-width: 400px;
        margin: 0 auto;
    }

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

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

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

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

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

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

@media (max-width: 768px) {
    :root {
        --section-pad: 64px;
    }

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

    .method-pillars {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .booking-container {
        padding: 32px 20px;
    }

    .about-image-decor {
        top: -10px;
        right: -10px;
    }

    .card-1 {
        left: -10px;
        bottom: -10px;
    }

    .service-options {
        grid-template-columns: 1fr;
    }

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

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

    .booking-steps {
        flex-wrap: wrap;
        gap: 8px;
    }

    .step-connector {
        width: 30px;
    }

    .testimonial-card {
        padding: 32px 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .contact-form {
        padding: 28px 20px;
    }

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

    .about-content-col .section-label,
    .about-content-col .section-title,
    .contact-info-col .section-label,
    .contact-info-col .section-title {
        text-align: center;
    }

    html[dir="rtl"] .about-content-col .section-label,
    html[dir="rtl"] .about-content-col .section-title,
    html[dir="rtl"] .contact-info-col .section-label,
    html[dir="rtl"] .contact-info-col .section-title {
        text-align: center;
    }

    .about-philosophy {
        flex-direction: column;
        text-align: center;
    }

    .philosophy-icon {
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

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

/* ═══════════════════════════════════════════════
   WEEKLY CALENDAR - Booking Section
   ═══════════════════════════════════════════════ */

.week-calendar {
    max-width: 1100px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-xl, 16px);
    padding: 32px;
    box-shadow: 0 16px 64px rgba(0,0,0,0.06);
}

/* Week Navigation */
.week-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    padding: 0 8px;
}

.week-nav-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: 1.5px solid var(--sand);
    padding: 8px 18px;
    border-radius: 30px;
    font-family: var(--font-body, 'Montserrat', sans-serif);
    font-size: 0.85rem;
    color: var(--text);
    cursor: pointer;
    transition: all 0.3s ease;
}

.week-nav-btn:hover {
    border-color: var(--sage);
    color: var(--sage);
    background: rgba(124,154,108,0.04);
}

.week-label {
    font-family: var(--font-heading, 'Cormorant Garamond', serif);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--charcoal);
    text-align: center;
}

/* Day Headers */
.week-header {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
    margin-bottom: 8px;
}

.week-day-header {
    text-align: center;
    padding: 12px 4px;
    border-radius: 10px;
    background: var(--cream, #faf8f5);
}

.week-day-header.today {
    background: var(--sage);
    color: var(--white);
}

.week-day-header .day-name {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: inherit;
    opacity: 0.7;
}

.week-day-header .day-date {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 2px;
    color: inherit;
}

.week-day-header.today .day-name,
.week-day-header.today .day-date {
    color: var(--white);
    opacity: 1;
}

/* Day Columns */
.week-columns {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
    min-height: 120px;
}

.week-column {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-height: 100px;
}

.week-column.past-day {
    opacity: 0.4;
}

.week-no-session {
    text-align: center;
    color: var(--sand);
    padding: 30px 0;
    font-size: 1.2rem;
}

/* Session Cards in Calendar */
.week-calendar .session-card {
    display: flex;
    flex-direction: column;
    padding: 12px;
    border: none;
    border-radius: 10px;
    background: var(--cream, #faf8f5);
    cursor: pointer;
    transition: all 0.25s ease;
    border-left: 4px solid var(--sage);
    gap: 4px;
}

.week-calendar .session-card:hover:not(.full):not(.past) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    background: var(--white);
}

.week-calendar .session-card.full {
    opacity: 0.5;
    cursor: not-allowed;
}

.week-calendar .session-card.past {
    opacity: 0.35;
    cursor: not-allowed;
}

.week-calendar .session-name {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-bottom: 2px;
    line-height: 1.2;
}

.week-calendar .session-time {
    font-size: 0.72rem;
    color: var(--text-light);
    margin-bottom: 4px;
}

.week-calendar .session-spots {
    font-size: 0.68rem;
    font-weight: 500;
    color: var(--sage);
}

.week-calendar .session-spots.spots-full {
    color: #c44;
}

/* Week Empty */
.week-empty {
    text-align: center;
    padding: 40px;
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ═══════════════════════════════════════════════
   AUTH MODAL
   ═══════════════════════════════════════════════ */

.auth-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2147483647; /* max int — sits above EVERYTHING */
    padding: 24px;
    overflow-y: auto;
}

.auth-overlay.active {
    display: flex;
}

/* Hide everything else on the page while the booking modal is open
   so nothing can sit over (or peek through) it */
body:has(.auth-overlay.active) #navbar,
body:has(.auth-overlay.active) .site-footer,
body:has(.auth-overlay.active) .whatsapp-float,
body:has(.auth-overlay.active) #preloader {
    display: none !important;
}

.auth-modal {
    background: var(--white);
    border-radius: 20px;
    width: 100%;
    max-width: 440px;
    padding: 40px;
    position: relative;
    box-shadow: 0 24px 80px rgba(0,0,0,0.15), 0 0 0 1px rgba(124,154,108,0.08);
    max-height: 90vh;
    overflow-y: auto;
    perspective: 800px;
}

.auth-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: var(--cream, #faf8f5);
    font-size: 1.4rem;
    color: var(--text-light);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

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

.auth-close:hover {
    background: #fee;
    color: #c44;
}

.auth-step h3 {
    font-family: var(--font-heading, 'Cormorant Garamond', serif);
    font-size: 1.5rem;
    color: var(--charcoal);
    margin-bottom: 20px;
    text-align: center;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.auth-form .form-group label {
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-light);
    margin-bottom: 4px;
}

.auth-form .form-group input {
    padding: 12px 16px;
    border: 1.5px solid var(--sand);
    border-radius: 10px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
    width: 100%;
}

.auth-form .form-group input:focus {
    outline: none;
    border-color: var(--sage);
    box-shadow: 0 0 0 3px rgba(124,154,108,0.12);
}

.auth-error {
    color: #c44;
    font-size: 0.85rem;
    text-align: center;
    min-height: 20px;
}

.auth-user-name {
    text-align: center;
    font-size: 1rem;
    color: var(--sage);
    font-weight: 600;
    margin-bottom: 16px;
    margin-top: -12px;
}

/* Session Confirmation Card */
.confirm-session-card {
    background: var(--cream, #faf8f5);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
}

.confirm-class-name {
    font-family: var(--font-heading, 'Cormorant Garamond', serif);
    font-size: 1.3rem;
    color: var(--sage);
    font-weight: 600;
    margin-bottom: 12px;
}

.confirm-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 0.9rem;
    color: var(--text);
}

/* Payment Placeholder */
/* Payment Form */
.payment-summary {
    background: var(--cream, #faf8f5);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    margin-bottom: 20px;
}

.payment-amount {
    margin-top: 12px;
    font-size: 1.5rem;
    color: var(--charcoal);
}

.payment-methods {
    border: 1.5px solid var(--sand);
    border-radius: 12px;
    padding: 20px;
}

.payment-methods-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 12px;
}

.accepted-cards {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.accepted-cards span {
    padding: 4px 10px;
    border: 1px solid var(--sand);
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-light);
}

.tap-card-wrapper {
    min-height: 50px;
    padding: 14px;
    border: 1.5px solid var(--sand);
    border-radius: 10px;
    background: var(--white);
    transition: border-color 0.3s ease;
}

.tap-card-wrapper:focus-within {
    border-color: var(--sage);
    box-shadow: 0 0 0 3px rgba(124,154,108,0.12);
}

.payment-spinner {
    width: 32px;
    height: 32px;
    border: 3px solid var(--sand);
    border-top-color: var(--sage);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto;
}

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

/* ═══════════════════════════════════════════════
   RESPONSIVE - Weekly Calendar
   ═══════════════════════════════════════════════ */

@media (max-width: 900px) {
    .week-calendar {
        padding: 20px 12px;
    }

    .week-header {
        gap: 4px;
    }

    .week-columns {
        gap: 4px;
    }

    .week-day-header .day-name {
        font-size: 0.6rem;
    }

    .week-day-header .day-date {
        font-size: 0.95rem;
    }

    .week-calendar .session-card {
        padding: 8px;
    }

    .week-calendar .session-name {
        font-size: 0.68rem;
    }

    .week-calendar .session-time {
        font-size: 0.65rem;
    }

    .week-calendar .session-spots {
        font-size: 0.6rem;
    }
}

@media (max-width: 640px) {
    .week-calendar {
        padding: 16px 10px;
        border-radius: 16px;
    }

    /* Hide the desktop grid layout on mobile */
    .week-header,
    .week-columns {
        display: none !important;
    }

    /* Show mobile agenda layout */
    .week-agenda {
        display: flex !important;
        flex-direction: column;
        gap: 6px;
    }

    .week-nav-btn span {
        display: none;
    }

    .week-label {
        font-size: 1rem;
    }

    .auth-modal {
        padding: 28px 20px;
        margin: 12px;
    }
}

/* Mobile agenda styles (hidden on desktop) */
.week-agenda {
    display: none;
}

.week-agenda-day {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--cream-dark, #f0ece6);
}

.week-agenda-day:last-child {
    border-bottom: none;
}

.week-agenda-day.past-day {
    opacity: 0.4;
}

.week-agenda-date {
    flex-shrink: 0;
    width: 56px;
    text-align: center;
    padding: 8px 4px;
    border-radius: 12px;
    background: var(--cream, #faf8f5);
}

.week-agenda-day.today .week-agenda-date {
    background: var(--sage);
    color: var(--white);
}

.week-agenda-date .agenda-day-name {
    display: block;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    opacity: 0.7;
}

.week-agenda-day.today .agenda-day-name {
    opacity: 1;
    color: var(--white);
}

.week-agenda-date .agenda-day-num {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    margin-top: 2px;
}

.week-agenda-sessions {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-height: 48px;
    justify-content: center;
}

.week-agenda-sessions .no-sessions {
    color: var(--text-lighter, #999);
    font-size: 0.8rem;
    padding: 8px 0;
}

.week-agenda-sessions .session-card {
    display: flex;
    flex-direction: column;
    padding: 10px 12px;
    border: none;
    border-radius: 10px;
    background: var(--cream, #faf8f5);
    cursor: pointer;
    transition: all 0.25s ease;
    border-left: 4px solid var(--sage);
    gap: 3px;
}

.week-agenda-sessions .session-card:hover:not(.full):not(.past) {
    transform: translateX(4px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.07);
    background: var(--white);
}

.week-agenda-sessions .session-card.full {
    opacity: 0.5;
    cursor: not-allowed;
}

.week-agenda-sessions .session-card.past {
    opacity: 0.35;
    cursor: not-allowed;
}

.week-agenda-sessions .session-name {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    line-height: 1.2;
}

.week-agenda-sessions .session-time {
    font-size: 0.75rem;
    color: var(--text-light);
}

.week-agenda-sessions .session-spots {
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--sage);
}

.week-agenda-sessions .session-spots.spots-full {
    color: #c44;
}

/* ═══════════════════════════════════════════════
   ADDITIONAL RTL FIXES
   ═══════════════════════════════════════════════ */

/* Hero RTL */
html[dir="rtl"] .hero-badge {
    font-family: var(--font-arabic);
    letter-spacing: 1px;
}

html[dir="rtl"] .hero-subtitle {
    font-family: var(--font-arabic);
}

/* Stats RTL */
html[dir="rtl"] .stat-label {
    font-family: var(--font-arabic);
}

/* Method RTL */
html[dir="rtl"] .pillar-title,
html[dir="rtl"] .pillar-text {
    font-family: var(--font-arabic);
}

/* Journey RTL */
html[dir="rtl"] .journey-step {
    text-align: right;
}

html[dir="rtl"] .journey-steps {
    direction: rtl;
}

/* Contact RTL */
html[dir="rtl"] .contact-intro {
    font-family: var(--font-arabic);
}

html[dir="rtl"] .contact-item h4,
html[dir="rtl"] .contact-item p,
html[dir="rtl"] .contact-item a {
    font-family: var(--font-arabic);
    text-align: right;
}

/* Footer RTL */
html[dir="rtl"] .footer-brand p {
    font-family: var(--font-arabic);
}

html[dir="rtl"] .footer-links {
    text-align: right;
}

html[dir="rtl"] .footer-links h4,
html[dir="rtl"] .footer-social h4 {
    font-family: var(--font-arabic);
}

/* Booking RTL */
html[dir="rtl"] .week-calendar .session-card {
    border-left: none;
    border-right: 4px solid var(--sage);
}

html[dir="rtl"] .week-agenda-sessions .session-card {
    border-left: none;
    border-right: 4px solid var(--sage);
}

html[dir="rtl"] .week-nav-btn {
    font-family: var(--font-arabic);
}

html[dir="rtl"] .section-subtitle {
    font-family: var(--font-arabic);
}

/* Auth modal RTL */
html[dir="rtl"] .auth-modal {
    text-align: right;
}

html[dir="rtl"] .auth-modal h3 {
    font-family: var(--font-arabic);
}

html[dir="rtl"] .auth-modal label {
    font-family: var(--font-arabic);
}

/* Instagram section RTL */
html[dir="rtl"] .insta-follow-btn {
    font-family: var(--font-arabic);
}

/* Section labels/headers RTL */
html[dir="rtl"] .section-label {
    font-family: var(--font-arabic);
}

/* Classes RTL */
html[dir="rtl"] .classes-loading {
    font-family: var(--font-arabic);
}

html[dir="rtl"] .class-card-name,
html[dir="rtl"] .class-detail-heading {
    font-family: var(--font-arabic);
}

html[dir="rtl"] .class-card-subtitle,
html[dir="rtl"] .class-benefits-list li,
html[dir="rtl"] .ideal-item,
html[dir="rtl"] .class-closing p {
    font-family: var(--font-arabic);
    text-align: right;
}

html[dir="rtl"] .class-benefits-list li {
    padding-left: 0;
    padding-right: 28px;
}

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

html[dir="rtl"] .class-ideal-for {
    border-left: none;
    border-right: 3px solid var(--sage);
}

html[dir="rtl"] .ideal-arrow {
    transform: scaleX(-1);
    display: inline-block;
}

/* ═══════════════════════════════════════════════
   ENHANCED RESPONSIVE - Full coverage
   ═══════════════════════════════════════════════ */

/* Extra large screens */
@media (min-width: 1400px) {
    .section-container {
        max-width: 1300px;
    }
}

/* Tablet landscape */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 110px 24px 60px;
        text-align: center;
    }

    .hero-content {
        text-align: center;
    }

    html[dir="rtl"] .hero-content {
        text-align: center;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    html[dir="rtl"] .hero-actions {
        justify-content: center;
    }

    .hero-feature-frame {
        max-width: 380px;
    }

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

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

/* Tablet portrait */
@media (max-width: 768px) {
    .hero-section {
        min-height: 100vh;
        padding-top: 0;
        align-items: flex-start;
    }

    .hero-grid {
        padding: 100px 16px 56px;
        gap: 32px;
    }

    .hero-badge {
        font-size: 0.65rem;
        letter-spacing: 2px;
        padding: 6px 18px;
        margin-bottom: 24px;
    }

    .line-1 {
        font-size: clamp(0.95rem, 3.5vw, 1.3rem);
        letter-spacing: 4px;
    }

    .line-2,
    .line-3 {
        font-size: clamp(2.4rem, 10vw, 4.2rem);
        line-height: 1.05;
    }

    .hero-subtitle {
        margin: 20px auto 28px;
        padding: 0 4px;
        line-height: 1.7;
    }

    .hero-feature-frame {
        max-width: 320px;
    }

    .journey-steps {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .carousel-controls {
        margin-top: 24px;
    }

    .testimonial-text {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
    }

    .contact-info-col {
        text-align: center;
    }

    .contact-details {
        align-items: center;
    }

    .contact-item {
        justify-content: center;
    }

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

    .insta-follow-btn {
        font-size: 0.8rem;
    }

    .stat-number {
        font-size: clamp(2rem, 6vw, 2.8rem);
    }

    .stat-label {
        font-size: 0.75rem;
    }
}

/* Mobile */
@media (max-width: 480px) {
    :root {
        --section-pad: 48px;
    }

    .hero-section {
        min-height: 100vh;
    }

    .hero-grid {
        padding: 90px 14px 48px;
        gap: 28px;
    }

    .hero-badge {
        font-size: 0.6rem;
        letter-spacing: 1.5px;
        padding: 6px 14px;
        margin-bottom: 20px;
    }

    .line-1 {
        font-size: 0.85rem;
        letter-spacing: 3px;
    }

    .line-2,
    .line-3 {
        font-size: clamp(2rem, 11vw, 2.8rem);
    }

    .hero-subtitle {
        font-size: 0.9rem;
        margin: 18px auto 24px;
        padding: 0 8px;
        line-height: 1.65;
    }

    .hero-feature-frame {
        max-width: 280px;
    }

    .nav-container {
        padding: 0 16px;
    }

    .section-container {
        padding: 0 16px;
    }

    .section-header {
        margin-bottom: 32px;
    }

    .section-label {
        font-size: 0.7rem;
    }

    .section-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }

    .about-floating-card {
        display: none;
    }

    .about-philosophy blockquote {
        font-size: 0.95rem;
    }

    .about-text p {
        font-size: 0.9rem;
    }

    .testimonial-card {
        padding: 24px 16px;
    }

    .testimonial-text {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .testimonial-stars {
        font-size: 1rem;
        letter-spacing: 2px;
        margin-bottom: 16px;
    }

    .author-avatar {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .author-name {
        font-size: 0.85rem;
    }

    .carousel-btn {
        width: 36px;
        height: 36px;
    }

    .carousel-btn svg {
        width: 14px;
        height: 14px;
    }

    .stat-card {
        padding: 20px 12px;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.7rem;
    }

    .method-pillars {
        gap: 24px;
    }

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

    .contact-form {
        padding: 24px 16px;
    }

    .contact-form .form-group input,
    .contact-form .form-group textarea {
        font-size: 0.9rem;
    }

    .footer-grid {
        text-align: center;
    }

    .footer-brand {
        text-align: center;
    }

    .footer-links {
        text-align: center;
    }

    .footer-social {
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-bottom {
        font-size: 0.8rem;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float svg {
        width: 26px;
        height: 26px;
    }

    .nav-logo-img {
        height: 36px;
    }
}

/* Small mobile */
@media (max-width: 360px) {
    :root {
        --section-pad: 40px;
    }

    .hero-grid {
        padding: 84px 12px 40px;
    }

    .hero-badge {
        font-size: 0.55rem;
        padding: 5px 12px;
    }

    .line-2,
    .line-3 {
        font-size: clamp(1.7rem, 11vw, 2.2rem);
    }

    .hero-subtitle {
        font-size: 0.85rem;
    }

    .hero-feature-frame {
        max-width: 240px;
    }

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

    .testimonial-card {
        padding: 20px 12px;
    }

    .testimonial-text {
        font-size: 0.88rem;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .stat-number {
        font-size: 1.5rem;
    }

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

    .btn {
        padding: 12px 24px;
        font-size: 0.78rem;
    }
}

/* RTL responsive overrides */
@media (max-width: 768px) {
    html[dir="rtl"] .contact-info-col {
        text-align: center;
    }

    html[dir="rtl"] .contact-item h4,
    html[dir="rtl"] .contact-item p,
    html[dir="rtl"] .contact-item a {
        text-align: center;
    }

    html[dir="rtl"] .journey-step {
        text-align: center;
    }

    html[dir="rtl"] .footer-links {
        text-align: center;
    }
}

@media (max-width: 480px) {
    html[dir="rtl"] .footer-grid {
        text-align: center;
    }

    html[dir="rtl"] .footer-brand {
        text-align: center;
    }
}

/* ============================================
   VISUAL ENHANCEMENTS
   Glassmorphism, micro-interactions, hover fx
   ============================================ */

/* ── Stat Cards (dark background context) ── */
.stat-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-md);
    transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), background 0.4s ease;
}

.stat-card:hover {
    transform: translateY(-6px);
    background: rgba(255,255,255,0.08);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.pillar {
    transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.pillar:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(0,0,0,0.08);
}

.pillar-number {
    transition: transform 0.4s var(--ease-out), color 0.3s ease;
}

.pillar:hover .pillar-number {
    transform: scale(1.15);
    color: var(--sage);
}

/* ── Button Enhancements ── */
.btn-primary {
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.15), transparent);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.btn-primary:hover::after {
    transform: translateX(100%);
}

/* ── Journey Steps Hover ── */
.journey-step {
    transition: transform 0.3s var(--ease-out);
}

.journey-step:hover {
    transform: translateX(8px);
}

.step-marker {
    transition: transform 0.3s var(--ease-out), background 0.3s ease;
}

.journey-step:hover .step-marker {
    transform: scale(1.15);
}

/* ── Testimonial Card Polish ── */
.testimonial-card {
    transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

/* ── About Floating Card Pulse ── */
.about-floating-card {
    animation: floatPulse 4s ease-in-out infinite;
}

@keyframes floatPulse {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* ── Instagram Grid Hover ── */
.insta-item {
    transition: transform 0.4s var(--ease-out);
}

.insta-item:hover {
    transform: scale(1.05) rotate(-1deg);
}

/* ── Section Labels Decoration (centered headers only) ── */
.section-header .section-label::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 1px;
    background: var(--sage);
    vertical-align: middle;
    margin-right: 12px;
}

.section-header .section-label::after {
    content: '';
    display: inline-block;
    width: 24px;
    height: 1px;
    background: var(--sage);
    vertical-align: middle;
    margin-left: 12px;
}

/* ── Smooth Focus States ── */
.auth-form .form-group input {
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
}

.auth-form .form-group input:focus {
    transform: translateY(-1px);
}

/* ── WhatsApp Button Glow ── */
#btn-confirm-whatsapp {
    transition: all 0.4s var(--ease-out);
    position: relative;
}

#btn-confirm-whatsapp:hover {
    box-shadow: 0 8px 30px rgba(37,211,102,0.35);
    transform: translateY(-3px);
}

/* ── Contact Items Hover ── */
.contact-item {
    transition: transform 0.3s var(--ease-out);
}

.contact-item:hover {
    transform: translateX(6px);
}

/* ── Preloader Enhancement ── */
.breath-circle {
    box-shadow: 0 0 60px rgba(124,154,108,0.2);
}

/* ── RTL Visual Fixes ── */
html[dir="rtl"] .section-header .section-label::before {
    margin-right: 0;
    margin-left: 12px;
}

html[dir="rtl"] .section-header .section-label::after {
    margin-left: 0;
    margin-right: 12px;
}

html[dir="rtl"] .journey-step:hover {
    transform: translateX(-8px);
}

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

/* ── Reduced Motion ── */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .about-floating-card { animation: none; }
    .hero-sparkles { display: none; }
}
