/* ============================================================
   Yashikaa Lumirae — Shared Styles
   Premium Spiritual Institution | Est. 2019
   ============================================================ */

/* ========== CSS VARIABLES ========== */
:root {
    --bg: #1A0505;
    --surface: rgba(38, 10, 10, 0.95);
    --accent: #CD7F32;
    --accent-light: #DAA055;
    --accent-glow: rgba(205, 127, 50, 0.15);
    --text: #FADBD8;
    --text-muted: rgba(250, 219, 216, 0.6);
    --white: #FFFFFF;
    --header-h: 80px;
    --font-h: 'Bodoni Moda', serif;
    --font-b: 'Work Sans', sans-serif;
    --transition: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ========== RESET ========== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
    background-color: var(--bg);
    background-image: linear-gradient(rgba(26, 5, 5, 0.78), rgba(26, 5, 5, 0.78)), url('../images/reference/background3.jpg');
    background-attachment: scroll;
    background-size: cover;
    color: var(--text);
    font-family: var(--font-b);
    font-weight: 300;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* ========== FOCUS & ACCESSIBILITY ========== */
:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 4px;
}
:focus:not(:focus-visible) {
    outline: none;
}
.skip-link {
    position: absolute; top: -100px; left: 20px;
    padding: 10px 20px; background: var(--accent); color: #000;
    font-size: 0.75rem; text-decoration: none; z-index: 9999;
    transition: top 0.3s; border-radius: 0 0 4px 4px;
}
.skip-link:focus { top: 0; }

/* No-JS fallback: show all content if JavaScript fails */
.no-js .reveal {
    opacity: 1 !important;
    transform: none !important;
}

/* ========== SCROLL ANIMATIONS ========== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Animation variants */
.reveal-fade {
    opacity: 0;
    transition: opacity 1s var(--ease-out);
}
.reveal-fade.visible { opacity: 1; }

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

.reveal-scale {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* ========== HEADER ========== */
header {
    position: fixed; top: 0; width: 100%; height: var(--header-h);
    background: rgba(26, 5, 5, 0.98);
    border-bottom: 1px solid rgba(205, 127, 50, 0.2);
    display: flex; justify-content: space-between; align-items: center;
    padding: 0 60px; z-index: 1000;
    backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
header.header-hidden {
    transform: translateY(-100%);
}
header.header-hidden + .scroll-progress {
    opacity: 0;
}
.logo {
    font-family: var(--font-h); font-size: 1.8rem; color: var(--white);
    text-decoration: none; text-transform: uppercase; letter-spacing: 12px;
    transition: opacity 0.3s; display: flex; align-items: center; gap: 10px;
}
.logo:hover { opacity: 0.8; }
.logo-icon {
    height: 42px; width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9; transition: opacity 0.3s;
}
.logo:hover .logo-icon { opacity: 1; }
.est-tag {
    font-family: var(--font-b); font-size: 0.5rem; color: var(--accent-light);
    opacity: 0.5; letter-spacing: 3px; text-transform: uppercase;
    margin-left: -5px; align-self: flex-end; margin-bottom: 5px;
}
.nav-links { display: flex; gap: 40px; }
.nav-links a {
    color: var(--text); text-decoration: none; text-transform: uppercase;
    font-size: 0.65rem; letter-spacing: 4px; transition: 0.3s;
    opacity: 0.7; position: relative;
}
.nav-links a::after {
    content: ''; position: absolute; bottom: -4px; left: 50%; width: 0; height: 1px;
    background: var(--accent); transition: width 0.3s var(--ease-out), left 0.3s var(--ease-out);
}
.nav-links a:hover::after, .nav-links a.active::after {
    width: 100%; left: 0;
}
.nav-links a:hover, .nav-links a.active { opacity: 1; color: var(--accent); }
/* Cart notification toast */
.cart-notification {
    position: fixed; bottom: -80px; left: 50%; transform: translateX(-50%);
    background: var(--surface); border: 1px solid rgba(205, 127, 50, 0.3);
    padding: 15px 25px; z-index: 10001; display: flex; align-items: center; gap: 20px;
    transition: bottom 0.4s var(--ease-out); backdrop-filter: blur(10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}
.cart-notification.visible { bottom: 30px; }
.cart-notification span { font-size: 0.75rem; color: var(--text); }
.cart-notification a {
    font-size: 0.6rem; text-transform: uppercase; letter-spacing: 2px;
    color: var(--accent); text-decoration: none; white-space: nowrap;
}
.cart-notification a:hover { color: var(--white); }

/* Wishlist badge */
.wishlist-count {
    position: absolute; top: -8px; right: -10px;
    background: var(--accent); color: #000; font-size: 0.5rem;
    width: 16px; height: 16px; border-radius: 50%;
    display: none; align-items: center; justify-content: center; font-weight: 500;
}
.wishlist-count.has-items { display: flex; }

/* Header icon bar */
.header-icons { display: flex; align-items: center; gap: 20px; }
.header-icon {
    color: var(--accent); text-decoration: none; font-size: 1.1rem;
    opacity: 0.7; transition: 0.3s; position: relative; display: flex; align-items: center;
}
.header-icon:hover { opacity: 1; }
.header-icon svg { width: 20px; height: 20px; fill: var(--accent); }
.cart-count {
    position: absolute; top: -8px; right: -10px;
    background: var(--accent); color: #000; font-size: 0.5rem;
    width: 16px; height: 16px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 500; display: none;
}
.cart-count.has-items { display: flex; }

.cta-header {
    text-decoration: none; border: 1px solid var(--accent); color: var(--accent);
    padding: 10px 25px; font-size: 0.65rem; text-transform: uppercase;
    letter-spacing: 3px; transition: 0.4s; position: relative; overflow: hidden;
}
.cta-header::before {
    content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(205, 127, 50, 0.1), transparent);
    transition: left 0.6s;
}
.cta-header:hover::before { left: 100%; }
.cta-header:hover, .cta-header.active { background: var(--accent); color: #000; }

/* Hide mobile-only login link on desktop */
.nav-mobile-login { display: none; }

/* ========== SCROLL PROGRESS ========== */
.scroll-progress {
    position: fixed; top: var(--header-h); left: 0; height: 2px; width: 0%;
    background: linear-gradient(90deg, transparent, var(--accent));
    z-index: 1001; transition: width 0.1s linear;
}

/* ========== MOBILE MENU TOGGLE ========== */
.menu-toggle {
    display: none; background: none; border: none; cursor: pointer;
    padding: 10px; position: relative; width: 44px; height: 44px;
    z-index: 1001;
}
.menu-toggle span {
    display: block; width: 24px; height: 2px; background: var(--accent);
    position: absolute; left: 10px; transition: all 0.3s ease;
}
.menu-toggle span:nth-child(1) { top: 14px; }
.menu-toggle span:nth-child(2) { top: 21px; }
.menu-toggle span:nth-child(3) { top: 28px; }
.menu-toggle.active span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

/* ========== CONTAINER ========== */
.container { max-width: 1300px; margin: 0 auto; padding: 0 40px; }

/* ========== HERO ========== */
.hero {
    height: 100vh; padding-top: var(--header-h);
    display: flex; align-items: center; justify-content: center; text-align: center;
    position: relative;
}
.hero-fullscreen {
    padding-top: 0; flex-direction: column;
}
.hero-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 120%;
    background-size: cover; background-position: center;
    z-index: -1; will-change: transform;
}
.hero-content { position: relative; z-index: 1; }
.hero-label {
    color: var(--accent); letter-spacing: 6px; text-transform: uppercase;
    font-size: 0.75rem; margin-bottom: 30px;
    opacity: 0; animation: heroFadeIn 1s 0.3s forwards;
}
.hero h1 {
    font-family: var(--font-b); font-size: clamp(2.5rem, 6vw, 4.5rem); color: var(--white);
    font-weight: 300; text-transform: uppercase; letter-spacing: 8px;
    line-height: 1.3; margin-bottom: 25px;
    opacity: 0; animation: heroFadeIn 1s 0.6s forwards;
}
.hero-subtitle {
    max-width: 600px; margin: 0 auto 50px; color: var(--text); opacity: 0;
    font-size: 1.05rem; font-weight: 300; line-height: 1.8; letter-spacing: 0.5px;
    animation: heroFadeIn 1s 0.9s forwards;
}
.hero .btn { opacity: 0; animation: heroFadeIn 1s 1.2s forwards; }
.scroll-indicator {
    position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    opacity: 0; animation: heroFadeIn 1s 1.5s forwards;
}
.scroll-indicator span {
    font-size: 0.6rem; text-transform: uppercase; letter-spacing: 4px;
    color: var(--accent); opacity: 0.6;
}
.scroll-line {
    width: 1px; height: 40px; background: var(--accent); opacity: 0.3;
    animation: scrollPulse 2s infinite;
}

@keyframes heroFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes scrollPulse {
    0%, 100% { opacity: 0.1; transform: scaleY(0.5); }
    50% { opacity: 0.4; transform: scaleY(1); }
}

/* ========== SECTION COMMON ========== */
.section-box {
    padding: 160px 0; border-bottom: 1px solid rgba(205, 127, 50, 0.1);
    position: relative;
}
/* Subtle warm glow at top of each section for continuity */
.section-box::before {
    content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    width: 80%; height: 200px;
    background: radial-gradient(ellipse at center top, rgba(205, 127, 50, 0.04) 0%, transparent 70%);
    pointer-events: none;
}
.section-header { text-align: center; margin-bottom: 80px; }
.section-header h2 {
    font-family: var(--font-b); font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 300; text-transform: uppercase; letter-spacing: 6px;
    margin-bottom: 20px; line-height: 1.4;
}
.section-header .label {
    font-size: 0.75rem; text-transform: uppercase; letter-spacing: 8px;
    color: var(--accent); display: block; margin-bottom: 15px;
}
.section-header .section-desc {
    max-width: 550px; margin: 0 auto; font-size: 0.9rem;
    opacity: 0.75; line-height: 1.7;
}
.section-cta { text-align: center; margin-top: 80px; }

/* ========== BUTTONS ========== */
.btn {
    display: inline-block; padding: 20px 60px; border: 1px solid var(--accent);
    color: var(--accent); text-decoration: none; text-transform: uppercase;
    font-size: 0.75rem; letter-spacing: 4px; transition: 0.4s;
    background: transparent; position: relative; overflow: hidden;
    font-family: var(--font-b);
}
.btn::before {
    content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(205, 127, 50, 0.08), transparent);
    transition: left 0.6s;
}
.btn:hover::before { left: 100%; }
.btn:hover { background: var(--accent); color: #000; }
.btn-sm { padding: 15px 40px; font-size: 0.65rem; }

/* ========== FOOTER ========== */
footer {
    padding: 80px 0 60px; text-align: center;
    border-top: 1px solid rgba(205, 127, 50, 0.1);
    background: rgba(0, 0, 0, 0.5);
}
.footer-logo {
    display: flex;
    flex-direction: column;
    justify-content: center;

    font-family: var(--font-h);  letter-spacing: 15px;
    color: var(--white);
    margin-bottom: 40px; 
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-size: 1.8rem;
    /* display: inline-flex;  */
}
.footer-logo-icon {
    height: auto; width: 48px;
    filter: brightness(0) invert(1);
    opacity: 0.7;
}

.footer-logo p:first-of-type {
    font-size: 1.2rem;
    letter-spacing: 10px;
    margin-left: 5px;
}
.footer-logo p:last-of-type {
    font-size: 1.2rem;
    letter-spacing: 22px;
    margin-left: 11px;
}
.footer-nav { display: flex; justify-content: center; gap: 40px; margin-bottom: 40px; }
.footer-nav a {
    color: var(--text); text-decoration: none; font-size: 0.65rem;
    text-transform: uppercase; letter-spacing: 3px; opacity: 0.55; transition: 0.3s;
}
.footer-nav a:hover { opacity: 1; color: var(--accent); }
.footer-line { width: 60px; height: 1px; background: rgba(205, 127, 50, 0.2); margin: 0 auto 30px; }
.footer-closing {
    font-family: var(--font-h); font-style: italic; font-size: 1rem;
    color: var(--accent); opacity: 0.5; margin-bottom: 30px;
}
.footer-copy {
    color: rgba(250, 219, 216, 0.3); font-size: 0.65rem; letter-spacing: 5px;
}

/* ========== BACK TO TOP ========== */
.back-to-top {
    position: fixed; bottom: 40px; right: 40px; width: 48px; height: 48px;
    border: 1px solid rgba(205, 127, 50, 0.3); background: rgba(26, 5, 5, 0.95);
    color: var(--accent); font-size: 1.2rem; cursor: pointer; z-index: 999;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none; transition: 0.4s;
    backdrop-filter: blur(10px); text-decoration: none;
}
.back-to-top.visible { opacity: 1; pointer-events: auto; }
.back-to-top:hover { background: var(--accent); color: #000; border-color: var(--accent); }

/* ========== PRELOADER ========== */
.preloader {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: var(--bg); z-index: 99999;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}
.preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-mark {
    width: 60px; height: 60px;
    animation: preloaderPulse 1.5s ease-in-out infinite; opacity: 0.6;
}
.preloader-mark img {
    width: 100%; height: 100%; object-fit: contain;
    filter: brightness(0) invert(1);
}
.preloader-text {
    font-family: var(--font-h); font-size: 0.7rem; color: var(--accent);
    letter-spacing: 8px; text-transform: uppercase; margin-top: 25px; opacity: 0.4;
}
@keyframes preloaderPulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.08); opacity: 0.8; }
}

/* ========== CUSTOM CURSOR ========== */
@media (pointer: fine) {
    .cursor-dot {
        position: fixed; top: 0; left: 0; width: 6px; height: 6px;
        background: var(--accent); border-radius: 50%; pointer-events: none;
        z-index: 99998; transition: width 0.2s ease, height 0.2s ease, opacity 0.3s;
        transform: translate(-50%, -50%);
    }
    .cursor-dot.hovering {
        width: 12px; height: 12px; opacity: 0.7;
    }
    .cursor-ring {
        display: none;
    }
}

/* ========== PAGE TRANSITION ========== */
body { animation: pageIn 0.5s ease-out; }
@keyframes pageIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Page transition overlay */
.page-transition {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: var(--bg); z-index: 99998;
    transform: scaleY(0); transform-origin: bottom;
    transition: transform 0.4s var(--ease-out);
    pointer-events: none;
}
.page-transition.active {
    transform: scaleY(1); transform-origin: top;
}

/* ========== STICKY CTA (appears on scroll) ========== */
.sticky-cta {
    position: fixed; bottom: -60px; left: 0; width: 100%; z-index: 998;
    background: rgba(26, 5, 5, 0.98); border-top: 1px solid rgba(205, 127, 50, 0.2);
    padding: 12px 0; text-align: center;
    backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    transition: bottom 0.4s var(--ease-out);
}
.sticky-cta.visible { bottom: 0; }
.sticky-cta a {
    color: var(--accent); text-decoration: none; font-size: 0.65rem;
    text-transform: uppercase; letter-spacing: 4px; transition: 0.3s;
}
.sticky-cta a:hover { color: var(--white); }

/* ========== SOCIAL PROOF COUNTER ========== */
.proof-bar {
    display: flex; justify-content: center; gap: 60px; padding: 40px 0;
    border-bottom: 1px solid rgba(205, 127, 50, 0.1);
}
.proof-item { text-align: center; }
.proof-num {
    font-family: var(--font-h); font-size: 2.5rem; color: var(--accent);
    font-style: italic; display: block; line-height: 1;
}
.proof-label {
    font-size: 0.6rem; text-transform: uppercase; letter-spacing: 3px;
    opacity: 0.6; margin-top: 8px; display: block;
}

/* ========== REVIEWS SYSTEM ========== */
.reviews-section { margin-top: 30px; padding-top: 25px; border-top: 1px solid rgba(205, 127, 50, 0.1); }
.reviews-header { margin-bottom: 20px; }
.reviews-title { font-family: var(--font-b); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 3px; color: var(--accent); margin-bottom: 12px; }
.reviews-summary { display: flex; align-items: center; gap: 12px; }
.reviews-avg { font-family: var(--font-h); font-size: 2rem; color: var(--accent); font-style: italic; }
.reviews-stars { color: var(--accent); font-size: 1.1rem; letter-spacing: 2px; }
.reviews-count { font-size: 0.65rem; opacity: 0.5; letter-spacing: 1px; }
.review-item { padding: 18px 0; border-bottom: 1px solid rgba(205, 127, 50, 0.06); }
.review-item:last-child { border-bottom: none; }
.review-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.review-name { font-size: 0.75rem; font-weight: 400; }
.review-stars { color: var(--accent); font-size: 0.8rem; letter-spacing: 1px; }
.review-text { font-size: 0.8rem; opacity: 0.7; line-height: 1.7; }
.review-date { font-size: 0.55rem; opacity: 0.35; text-transform: uppercase; letter-spacing: 2px; display: block; margin-top: 6px; }
.reviews-see-all {
    display: block; width: 100%; padding: 12px; margin-top: 15px;
    background: transparent; border: 1px solid rgba(205, 127, 50, 0.2);
    color: var(--accent); font-family: var(--font-b); font-size: 0.6rem;
    text-transform: uppercase; letter-spacing: 3px; cursor: pointer; transition: 0.3s;
}
.reviews-see-all:hover { border-color: var(--accent); color: var(--white); }
.reviews-write {
    display: block; width: 100%; padding: 12px; margin-top: 8px;
    background: rgba(205, 127, 50, 0.08); border: 1px solid rgba(205, 127, 50, 0.15);
    color: var(--accent); font-family: var(--font-b); font-size: 0.6rem;
    text-transform: uppercase; letter-spacing: 3px; cursor: pointer; transition: 0.3s;
}
.reviews-write:hover { background: rgba(205, 127, 50, 0.15); }
.write-review-form { margin-top: 20px; padding: 25px; border: 1px solid rgba(205, 127, 50, 0.1); }
.write-review-stars { margin-bottom: 15px; }
.wr-label { font-size: 0.6rem; text-transform: uppercase; letter-spacing: 2px; opacity: 0.6; margin-right: 10px; }
.wr-star { font-size: 1.5rem; cursor: pointer; color: rgba(205, 127, 50, 0.3); transition: 0.2s; margin-right: 3px; }
.wr-star.active, .wr-star:hover { color: var(--accent); }
.wr-field { margin-bottom: 12px; }
.wr-input, .wr-textarea {
    width: 100%; background: transparent; border: none;
    border-bottom: 1px solid rgba(205, 127, 50, 0.2); padding: 10px 0;
    color: var(--text); font-family: var(--font-b); font-size: 0.85rem;
    font-weight: 300; outline: none; transition: border-color 0.3s;
}
.wr-input:focus, .wr-textarea:focus { border-color: var(--accent); }
.wr-textarea { min-height: 80px; resize: vertical; border: 1px solid rgba(205, 127, 50, 0.2); padding: 10px; margin-top: 5px; }
.wr-submit {
    padding: 12px 30px; background: var(--accent); color: #000; border: none;
    font-family: var(--font-b); font-size: 0.6rem; text-transform: uppercase;
    letter-spacing: 3px; cursor: pointer; transition: 0.3s; margin-top: 10px;
}
.wr-submit:hover { background: var(--accent-light); }

/* ========== WHATSAPP FLOATING BUTTON ========== */
.whatsapp-float {
    position: fixed; bottom: 100px; right: 40px; z-index: 997;
    width: 50px; height: 50px; border-radius: 50%;
    background: rgba(37, 211, 102, 0.85); color: #fff; font-size: 1.6rem;
    display: flex; align-items: center; justify-content: center;
    text-decoration: none; box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
    transition: 0.3s;
}
.whatsapp-float:hover { transform: scale(1.1); background: #25D366; box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4); }
.whatsapp-float svg { width: 28px; height: 28px; fill: #fff; }

/* ========== RESPONSIVE — TABLET ========== */
@media (max-width: 1024px) {
}

/* ========== RESPONSIVE — MOBILE ========== */
@media (max-width: 768px) {
    header { padding: 0 25px; }
    .est-tag { display: none; }
    .footer-logo p:first-of-type { letter-spacing: 8px; }
    .footer-logo p:last-of-type { letter-spacing: 12px; margin-left: 4px; }
    .nav-links {
        display: none;
        position: fixed; top: var(--header-h); left: 0; width: 100%;
        background: rgba(26, 5, 5, 0.98);
        flex-direction: column; align-items: center;
        padding: 30px 0; gap: 28px;
        border-bottom: 1px solid rgba(205, 127, 50, 0.2);
        backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px);
        z-index: 999;
    }
    .nav-links.active { display: flex; }
    .cta-header { display: none; }
    .header-icons { gap: 15px; }
    .menu-toggle { display: block; }
    /* Login link in mobile dropdown */
    .nav-mobile-login {
        display: block;
        color: var(--accent);
        text-decoration: none;
        border: 1px solid rgba(205, 127, 50, 0.5);
        padding: 10px 36px;
        font-size: 0.65rem;
        letter-spacing: 3px;
        text-transform: uppercase;
        transition: background 0.3s, color 0.3s;
        margin-top: 6px;
    }
    .nav-mobile-login:hover { background: var(--accent); color: #000; }

    /* On mobile homepage, allow header to stay hidden until scroll trigger */
    /* (The JS will handle the reveal after passing the hero section) */
    header.header-hidden { transform: translateY(-100%); }
    .menu-toggle { display: block; }
    .nav-links {
        display: none;
        position: fixed; top: var(--header-h); left: 0; width: 100%;
        background: rgba(26, 5, 5, 0.98);
        flex-direction: column; align-items: center;
        padding: 30px 0; gap: 28px;
        border-bottom: 1px solid rgba(205, 127, 50, 0.2);
        backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px);
        z-index: 999;
    }
    .nav-links.active { display: flex; }

    .container { padding: 0 25px; }

    .hero h1 { font-size: clamp(2.2rem, 10vw, 3.5rem); }
    .hero-subtitle { font-size: 0.9rem; padding: 0 20px; }

    /* WhatsApp button — move above proof bar on mobile */
    .whatsapp-float { bottom: 80px; right: 20px; width: 44px; height: 44px; }
    .whatsapp-float svg { width: 22px; height: 22px; }

    .section-box { padding: 100px 0; }
    .section-header { margin-bottom: 50px; }
    .section-header h2 { letter-spacing: 3px; }
    .btn { letter-spacing: 2px; padding: 16px 40px; }
    .btn-sm { padding: 12px 30px; }
    .footer-nav { flex-wrap: wrap; gap: 20px; justify-content: center; }
    .back-to-top { bottom: 25px; right: 25px; width: 40px; height: 40px; font-size: 1rem; }

    .sticky-cta { display: none; }

    .proof-bar { flex-wrap: wrap; gap: 30px; }

    /* Fix: Horizontal animations → vertical on mobile (prevents horizontal scroll) */
    .reveal-left,
    .reveal-right {
        transform: translateY(30px);
    }
    .reveal-left.visible,
    .reveal-right.visible {
        transform: translateY(0);
    }

    /* Fix: Modal responsive */
    .fp-modal-grid { grid-template-columns: 1fr !important; gap: 20px !important; }
    .fp-modal-img { height: auto !important; max-height: 280px !important; }
    .fp-modal-others { grid-template-columns: repeat(2, 1fr) !important; }

    /* Fix: WhatsApp button position */
    .whatsapp-float { bottom: 80px; right: 20px; width: 46px; height: 46px; }
    .whatsapp-float svg { width: 24px; height: 24px; }
}

/* ========== RESPONSIVE — SMALL MOBILE ========== */
@media (max-width: 480px) {
    .logo { font-size: 1.3rem; letter-spacing: 8px; }
    .logo-icon { height: 32px; }
    .hero-label { font-size: 0.6rem; letter-spacing: 4px; }
    .container { padding: 0 15px; }
    .section-header h2 { letter-spacing: 2px; font-size: 1.5rem; }
    .hero-subtitle { font-size: 0.85rem; padding: 0 10px; }
}


/* ======= dynamic card  

.curriculum-text {
  white-space: pre-line;
} */
