/* ============================================================
   VARSHA MAKEUP ARTISTRY — PREMIUM STYLE
   Light-first design system. Three themes: white / light / dark
   All selectors match the original HTML exactly.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;1,400&family=Jost:wght@300;400;500;600;700&family=Cinzel:wght@400;600;700&family=Lora:ital,wght@0,400;0,500;1,400&display=swap');

/* ── THEME TOKENS ─────────────────────────────────────────── */
/* Default = White theme */
:root {
    /* Palette */
    --accent: #b87333;
    /* warm copper */
    --accent-rgb: 184, 115, 51;
    --accent-light: #d4a574;
    --accent-dark: #8a5520;

    --bg-primary: #ffffff;
    --bg-secondary: #ffffff;
    --bg-card: #ffffff;
    --bg-tertiary: #ffffff;

    --text-primary: #1c1109;
    --text-secondary: #5a3e2b;
    --text-muted: #9a7860;

    --border: rgba(184, 115, 51, 0.18);
    --border-solid: #e8d5c0;
    --shadow: rgba(184, 115, 51, 0.14);
    --shadow-dark: rgba(28, 17, 9, 0.10);

    --gradient: linear-gradient(135deg, #b87333 0%, #d4956a 50%, #8a5520 100%);
    --gradient-soft: linear-gradient(160deg, #fff9f5 0%, #faeede 100%);

    /* Hero overlay stays dark for readability on video */
    --hero-overlay: linear-gradient(160deg, rgba(28, 17, 9, 0.72) 0%, rgba(138, 85, 32, 0.42) 100%);

    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Lora', Georgia, serif;
    --font-ui: 'Jost', system-ui, sans-serif;
    --font-accent: 'Cinzel', serif;
    --font-script: 'Great Vibes', cursive;

    /* Radius */
    --r-sm: 8px;
    --r-md: 14px;
    --r-lg: 22px;
    --r-xl: 32px;
    --r-full: 9999px;

    /* Transitions */
    --t-fast: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
    --t-base: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --t-slow: all 0.55s cubic-bezier(0.4, 0, 0.2, 1);

    /* Z-index scale */
    --z-nav: 1000;
    --z-float: 1400;
    --z-panel: 1600;
    --z-popup: 8000;
    --z-light: 9000;
    --z-spinner: 9999;
}

/* ── LIGHT THEME ──────────────────────────────────────────── */
[data-theme="light"] {
    --bg-primary: #fdf6ef;
    --bg-secondary: #f5e8d8;
    --bg-card: #fffaf6;
    --bg-tertiary: #eedcca;
    --text-primary: #1c1109;
    --text-secondary: #5a3e2b;
    --text-muted: #9a7860;
    --border: rgba(184, 115, 51, 0.22);
    --border-solid: #e0c8a8;
    --shadow: rgba(184, 115, 51, 0.18);
    --gradient-soft: linear-gradient(160deg, #fff4ea 0%, #f8e5cc 100%);
}

/* ── DARK ROYALE THEME ────────────────────────────────────── */
[data-theme="dark"] {
    --accent: #e0b87e;
    --accent-rgb: 224, 184, 126;
    --accent-light: #f5d8a8;
    --accent-dark: #b08840;

    --bg-primary: #18120c;
    --bg-secondary: #221810;
    --bg-card: #2c2018;
    --bg-tertiary: #362a1e;

    --text-primary: #f5ead8;
    --text-secondary: #d4b888;
    --text-muted: #9a8060;

    --border: rgba(224, 184, 126, 0.18);
    --border-solid: #3a2e20;
    --shadow: rgba(224, 184, 126, 0.20);
    --shadow-dark: rgba(0, 0, 0, 0.40);

    --gradient: linear-gradient(135deg, #e0b87e 0%, #f5d8a8 50%, #b08840 100%);
    --gradient-soft: linear-gradient(160deg, #201810 0%, #2c2018 100%);
    --hero-overlay: linear-gradient(160deg, rgba(8, 5, 2, 0.85) 0%, rgba(30, 20, 10, 0.60) 100%);
}

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

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

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.8;
    letter-spacing: 0.3px;
    transition: background 0.4s, color 0.4s;
    cursor: none;
}

@media (hover: none) {
    body {
        cursor: auto;
    }
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--t-base);
}

button {
    cursor: pointer;
    border: none;
    font-family: var(--font-ui);
    transition: var(--t-base);
}

ul,
ol {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    line-height: 1.2;
    color: var(--text-primary);
}

p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ── CONTAINER ────────────────────────────────────────────── */
.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 48px);
}

/* ── CUSTOM CURSOR ────────────────────────────────────────── */
.cursor-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: var(--z-spinner);
    transform: translate(-50%, -50%);
    transition: opacity 0.3s;
}

.cursor-ring {
    width: 30px;
    height: 30px;
    border: 2px solid var(--accent);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: calc(var(--z-spinner) - 1);
    transform: translate(-50%, -50%);
    transition: width 0.22s, height 0.22s, opacity 0.3s;
    opacity: 0.65;
}

body.cursor-hover .cursor-ring {
    width: 46px;
    height: 46px;
    opacity: 1;
    background: rgba(var(--accent-rgb), 0.07);
}

@media (hover: none) {

    .cursor-dot,
    .cursor-ring {
        display: none;
    }
}

/* ── PAGE LOADER ──────────────────────────────────────────── */
.premium-spinner-wrapper {
    position: fixed;
    inset: 0;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: var(--z-spinner);
    transition: opacity 0.5s, visibility 0.5s;
}

.premium-spinner-wrapper.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.spinner-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    width: 100%;
    max-width: 400px;
    padding: 0 20px;
    text-align: center;
}

.spinner-petals {
    display: flex;
    gap: 6px;
    margin-bottom: clamp(14px, 3vw, 24px);
}

.spinner-petals span {
    width: clamp(7px, 1.5vw, 10px);
    height: clamp(7px, 1.5vw, 10px);
    border-radius: 50%;
    background: var(--accent);
    animation: petalPulse 1.4s ease-in-out infinite;
}

.spinner-petals span:nth-child(1) {
    animation-delay: 0s;
}

.spinner-petals span:nth-child(2) {
    animation-delay: .17s;
}

.spinner-petals span:nth-child(3) {
    animation-delay: .34s;
}

.spinner-petals span:nth-child(4) {
    animation-delay: .51s;
}

.spinner-petals span:nth-child(5) {
    animation-delay: .68s;
}

.spinner-petals span:nth-child(6) {
    animation-delay: .85s;
}

.spinner-petals span:nth-child(7) {
    animation-delay: 1.02s;
}

.spinner-petals span:nth-child(8) {
    animation-delay: 1.19s;
}

@keyframes petalPulse {

    0%,
    80%,
    100% {
        transform: scale(0.6);
        opacity: 0.4;
    }

    40% {
        transform: scale(1.25);
        opacity: 1;
    }
}

.typing-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.glowing-crown {
    font-size: clamp(1.6rem, 5vw, 2.6rem);
    color: var(--accent);
    margin-bottom: clamp(8px, 2vw, 14px);
    animation: crownGlow 2s ease-in-out infinite;
}

@keyframes crownGlow {

    0%,
    100% {
        filter: drop-shadow(0 0 6px rgba(var(--accent-rgb), .4));
    }

    50% {
        filter: drop-shadow(0 0 20px rgba(var(--accent-rgb), .9));
    }
}

.typing-brand {
    font-family: var(--font-script);
    font-size: clamp(2.4rem, 10vw, 5.5rem);
    color: var(--accent);
    white-space: nowrap;
    overflow: hidden;
    border-right: 3px solid var(--accent);
    padding-right: 6px;
    line-height: 1.1;
    animation: typing 1.5s cubic-bezier(0.4, 0, 0.2, 1) forwards,
        blink 0.8s step-end infinite;
    max-width: 0;
}

.typing-sub {
    font-family: var(--font-ui);
    font-size: clamp(0.55rem, 2vw, 0.78rem);
    letter-spacing: clamp(0.12em, 1vw, 0.38em);
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 4px;
    opacity: 0;
    animation: fadeUp 0.6s ease forwards 1.3s;
}

@keyframes typing {
    from {
        max-width: 0;
    }

    to {
        max-width: 100vw;
    }
}

@keyframes blink {

    from,
    to {
        border-color: transparent;
    }

    50% {
        border-color: var(--accent);
    }
}

.spinner-bar-wrap {
    width: clamp(160px, 55vw, 320px);
    height: 4px;
    background: var(--border-solid);
    border-radius: 99px;
    overflow: hidden;
    margin-top: clamp(18px, 4vw, 30px);
}

.spinner-bar {
    height: 100%;
    width: 0%;
    background: var(--gradient);
    border-radius: 99px;
    transition: width 0.12s linear;
}

.loading-phrase {
    font-size: clamp(0.7rem, 2vw, 0.85rem);
    color: var(--text-muted);
    font-style: italic;
    margin-top: clamp(10px, 2.5vw, 18px);
    letter-spacing: 0.04em;
}

/* ── SCROLL PROGRESS ──────────────────────────────────────── */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--gradient);
    box-shadow: 0 0 8px rgba(var(--accent-rgb), 0.4);
    z-index: calc(var(--z-spinner) + 1);
    width: 0;
    transition: width 0.1s linear;
}

/* ── FESTIVE BANNER ───────────────────────────────────────── */
.festive-banner {
    background: var(--gradient);
    color: #fff;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 40px;
    z-index: 200;
}

.banner-track {
    display: flex;
    gap: 80px;
    animation: marqueeScroll 28s linear infinite;
    white-space: nowrap;
    padding: 10px 0;
    font-family: var(--font-ui);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.04em;
}

.festive-banner:hover .banner-track {
    animation-play-state: paused;
}

@keyframes marqueeScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.banner-close {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #fff;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.2s;
}

.banner-close:hover {
    background: rgba(255, 255, 255, 0.4);
}

/* ── NAVBAR ───────────────────────────────────────────────── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: var(--z-nav);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px) saturate(160%);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
    transition: box-shadow 0.3s, background 0.35s;
}

[data-theme="dark"] .navbar {
    background: rgba(24, 18, 12, 0.92);
}

.navbar.scrolled {
    box-shadow: 0 4px 24px var(--shadow-dark);
    background: rgba(255, 255, 255, 0.98);
}

[data-theme="dark"] .navbar.scrolled {
    background: rgba(24, 18, 12, 0.98);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    max-width: 1320px;
    margin: 0 auto;
   /* 20 to 5px changed */
    padding: 0 clamp(5px, 4vw, 48px);
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
}

.site-logo-img {
    height: 48px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.logo:hover .site-logo-img {
    opacity: 0.88;
    transform: scale(1.02);
}

/* Keep these in case some page still renders the old h1/tagline */
.logo h1 {
    font-family: var(--font-accent);
    font-size: clamp(1rem, 2vw, 1.3rem);
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.05em;
    line-height: 1.2;
}

.logo .tagline {
    font-family: var(--font-ui);
    font-size: 0.6rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
    justify-content: center;
}

.nav-menu a {
    font-family: var(--font-ui);
    font-size: 0.8rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 7px 13px;
    border-radius: var(--r-full);
    color: var(--text-secondary);
    font-weight: 500;
    position: relative;
    transition: color 0.25s;
    white-space: nowrap;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 3px;
    left: 13px;
    right: 13px;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transition: transform 0.25s;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    transform: scaleX(1);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--accent);
}

.nav-menu a.nav-cta {
    background: var(--gradient);
    color: #fff !important;
    padding: 9px 22px !important;
    border-radius: var(--r-full);
    font-weight: 700;
    letter-spacing: 0.06em;
    box-shadow: 0 4px 16px var(--shadow);
}

.nav-menu a.nav-cta::after {
    display: none;
}

.nav-menu a.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px var(--shadow);
}

/* Mobile hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
    z-index: calc(var(--z-nav) + 100);
    position: relative;
    flex-shrink: 0;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2.5px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: transform 0.32s ease, opacity 0.22s ease;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: translateX(-8px);
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ── HERO ─────────────────────────────────────────────────── */
#home {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    filter: brightness(0.82);
}

.hero-overlay {
    position: absolute;
    /* inset: 0; */
    background: var(--hero-overlay);
    z-index: 1;
}

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 1320px;
    margin: 0 auto;
    width: 100%;
    padding: 120px clamp(20px, 5vw, 48px) 80px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(8px);
    color: rgba(255, 255, 255, 0.92);
    padding: 6px 18px;
    border-radius: var(--r-full);
    font-family: var(--font-ui);
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 24px;
    animation: fadeUp 0.7s ease both;
}

.hero-badge i {
    color: #f5d98a;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 6vw, 4.8rem);
    color: #fff;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 22px;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}

.hero-title .line-reveal {
    display: block;
    animation: lineReveal 0.8s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.hero-title .delay-1 {
    animation-delay: 0.12s;
}

.hero-title .delay-2 {
    animation-delay: 0.24s;
}

.hero-title .accent-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    max-width: 520px;
    margin-bottom: 36px;
    line-height: 1.8;
}

.hero-stats {
    display: flex;
    gap: clamp(24px, 5vw, 60px);
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
    position: relative;
    padding: 0 clamp(12px, 2vw, 20px);
}

.stat:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 10%;
    bottom: 10%;
    width: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.stat:first-child {
    padding-left: 0;
}

.stat h3 {
    font-family: var(--font-accent);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: #f5d98a;
    font-weight: 700;
    line-height: 1;
    -webkit-text-fill-color: #f5d98a;
}

.stat p {
    font-family: var(--font-ui);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 4px;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.hero-trust-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-trust-badges span {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.9);
    padding: 5px 14px;
    border-radius: var(--r-full);
    font-family: var(--font-ui);
    font-size: 0.75rem;
    font-weight: 500;
}

.hero-trust-badges span i {
    color: #f5d98a;
}

.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.55);
    z-index: 3;
    font-family: var(--font-ui);
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    animation: scrollBounce 2.2s ease-in-out infinite;
}

.scroll-line {
    width: 1px;
    height: 32px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.55), transparent);
}

@keyframes scrollBounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(8px);
    }
}

/* ── BUTTONS ──────────────────────────────────────────────── */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 13px 32px;
    border-radius: var(--r-full);
    font-family: var(--font-ui);
    font-size: 0.90rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: 2px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform 0.28s cubic-bezier(0.34, 1.4, 0.64, 1), box-shadow 0.28s;
    background: var(--gradient);
    color: #fff;
    box-shadow: 0 4px 18px var(--shadow);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 32px var(--shadow);
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
    box-shadow: none;
}

.cta-button.secondary:hover {
    background: rgba(var(--accent-rgb), 0.08);
    transform: translateY(-2px);
}

.cta-button.small {
    padding: 8px 18px;
    font-size: 0.78rem;
}

/* On hero, both button variants look good over video */
#home .cta-button.secondary {
    border-color: rgba(255, 255, 255, 0.7);
    color: #fff;
}

#home .cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.12);
}

/* ── BRAND STRIP ──────────────────────────────────────────── */
.brand-strip {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    padding: 12px 0;
}

.brand-strip:hover .brand-track {
    animation-play-state: paused;
}

.brand-track {
    display: flex;
    gap: 64px;
    animation: marqueeScroll 22s linear infinite;
    white-space: nowrap;
    font-family: var(--font-ui);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
}

/* ── SECTION COMMONS ──────────────────────────────────────── */
section {
    padding: clamp(72px, 10vw, 110px) 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: clamp(48px, 7vw, 72px);
}

.section-subtitle {
    display: inline-block;
    font-family: var(--font-ui);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 14px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 3.2rem);
    color: var(--text-primary);
    font-weight: 800;
    line-height: 1.15;
}

.section-description {
    color: var(--text-muted);
    margin-top: 14px;
    font-size: 0.92rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.title-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 18px;
    color: var(--accent);
}

.title-ornament span {
    flex: 0 1 56px;
    height: 1px;
    background: var(--gradient);
}

.title-ornament i {
    font-size: 0.85rem;
}

/* ── REVEAL ───────────────────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

/* ── SERVICES SECTION ─────────────────────────────────────── */
.services-section {
    background: var(--bg-secondary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.38s cubic-bezier(0.34, 1.3, 0.64, 1), box-shadow 0.38s, border-color 0.28s;
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-soft);
    opacity: 0;
    transition: opacity 0.35s;
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    box-shadow: 0 20px 56px var(--shadow), 0 0 0 1px rgba(var(--accent-rgb), 0.25);
}

.service-card:hover::after {
    opacity: 1;
}

.service-card>* {
    position: relative;
    z-index: 1;
}

.service-icon-wrap {
    margin-bottom: 20px;
}

.service-icon {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 1.5rem;
    color: #fff;
    box-shadow: 0 6px 22px var(--shadow);
    transition: transform 0.35s;
}

.service-card:hover .service-icon {
    transform: rotate(-8deg) scale(1.1);
}

.service-card h3 {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 12px;
    font-weight: 700;
}

.service-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 18px;
}

.service-list {
    list-style: none;
    text-align: left;
    margin-bottom: 22px;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 9px;
    font-family: var(--font-ui);
    font-size: 0.83rem;
    color: var(--text-secondary);
    padding: 5px 0;
}

.service-list li i {
    color: var(--accent);
    font-size: 0.68rem;
}

.service-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: transparent;
    border: 1.5px solid var(--accent);
    color: var(--accent);
    padding: 9px 20px;
    border-radius: var(--r-full);
    font-family: var(--font-ui);
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--t-fast);
    overflow: hidden;
    position: relative;
}

.service-btn:hover {
    background: var(--gradient);
    color: #fff;
    border-color: transparent;
}

/* ── PORTFOLIO SECTION ────────────────────────────────────── */
.portfolio-section {
    background: var(--bg-primary);
}

.portfolio-search-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 440px;
    margin: 0 auto 28px;
    background: var(--bg-card);
    border: 1.5px solid var(--border);
    border-radius: var(--r-full);
    padding: 10px 20px;
    transition: border-color 0.22s;
}

.portfolio-search-bar:focus-within {
    border-color: var(--accent);
}

.portfolio-search-bar i {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.portfolio-search-bar input {
    border: none;
    background: none;
    outline: none;
    flex: 1;
    font-family: var(--font-ui);
    font-size: 0.88rem;
    color: var(--text-primary);
}

.portfolio-search-bar input::placeholder {
    color: var(--text-muted);
}

.portfolio-filters {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 20px;
}

.filter-btn {
    background: var(--bg-card);
    border: 1.5px solid var(--border);
    color: var(--text-secondary);
    padding: 7px 18px;
    border-radius: var(--r-full);
    font-family: var(--font-ui);
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--t-fast);
}

.filter-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.filter-btn.active {
    background: var(--gradient);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 14px var(--shadow);
}

.portfolio-view-toggle {
    display: flex;
    gap: 7px;
    justify-content: flex-end;
    margin-bottom: 22px;
}

.view-btn {
    width: 38px;
    height: 38px;
    border-radius: var(--r-sm);
    background: var(--bg-card);
    border: 1.5px solid var(--border);
    color: var(--text-muted);
    cursor: pointer;
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--t-fast);
}

.view-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.view-btn.active {
    background: var(--gradient);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 3px 12px var(--shadow);
}

/* Grid view (default) */
.portfolio-grid.grid-view {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
}

.portfolio-grid.grid-view .portfolio-item {
    aspect-ratio: 1/1;
}

/* Masonry view */
.portfolio-grid.masonry-view {
    columns: 3;
    column-gap: 18px;
}

.portfolio-grid.masonry-view .portfolio-item {
    break-inside: avoid;
    margin-bottom: 18px;
    aspect-ratio: unset;
    height: auto;
}

/* List view */
.portfolio-grid.list-view {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.portfolio-grid.list-view .portfolio-item {
    height: 140px;
    display: flex;
    flex-direction: row;
    border-radius: var(--r-md);
    aspect-ratio: unset;
}

.portfolio-grid.list-view .portfolio-item img {
    width: 180px;
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
}

.portfolio-grid.list-view .portfolio-overlay {
    position: relative;
    background: var(--bg-secondary);
    opacity: 1;
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}

.portfolio-grid.list-view .portfolio-overlay h3 {
    color: var(--text-primary);
}

.portfolio-grid.list-view .portfolio-overlay p {
    color: var(--text-muted);
}

/* Portfolio item */
.portfolio-item {
    border-radius: var(--r-lg);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    background: var(--border-solid);
    box-shadow: 0 4px 16px var(--shadow-dark);
    transition: transform 0.35s, box-shadow 0.35s;
    animation: portfolioIn 0.5s ease both;
}

.portfolio-item.hidden {
    display: none;
}

.portfolio-item:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 40px var(--shadow);
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s;
}

.portfolio-item:hover img {
    transform: scale(1.09);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.82) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px 18px;
    opacity: 0;
    transition: opacity 0.35s;
}

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

.portfolio-overlay h3 {
    font-family: var(--font-display);
    color: #fff;
    font-size: 1rem;
    margin-bottom: 4px;
}

.portfolio-overlay p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.78rem;
}

.portfolio-zoom {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #fff;
    cursor: pointer;
    font-size: 0.78rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.22s;
}

.portfolio-zoom:hover {
    background: var(--accent);
    border-color: var(--accent);
}

.portfolio-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(var(--accent-rgb), 0.88);
    color: #fff;
    padding: 3px 10px;
    border-radius: var(--r-full);
    font-family: var(--font-ui);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    backdrop-filter: blur(4px);
}

.portfolio-load-more {
    text-align: center;
    margin-top: 40px;
}

@keyframes portfolioIn {
    from {
        opacity: 0;
        transform: scale(0.94) translateY(12px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

/* stagger */
.portfolio-item:nth-child(1) {
    animation-delay: .04s
}

.portfolio-item:nth-child(2) {
    animation-delay: .09s
}

.portfolio-item:nth-child(3) {
    animation-delay: .14s
}

.portfolio-item:nth-child(4) {
    animation-delay: .19s
}

.portfolio-item:nth-child(5) {
    animation-delay: .24s
}

.portfolio-item:nth-child(6) {
    animation-delay: .29s
}

.portfolio-item:nth-child(7) {
    animation-delay: .34s
}

.portfolio-item:nth-child(8) {
    animation-delay: .39s
}

.portfolio-item:nth-child(9) {
    animation-delay: .44s
}

/* ── BEFORE / AFTER SLIDER ────────────────────────────────── */
.before-after-section {
    background: var(--bg-secondary);
}

.ba-slider-container {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.ba-slider {
    position: relative;
    border-radius: var(--r-xl);
    overflow: hidden;
    user-select: none;
    cursor: ew-resize;
    box-shadow: 0 16px 60px var(--shadow-dark);
    aspect-ratio: 4/3;
}

.ba-before,
.ba-after {
    position: absolute;
    inset: 0;
}

.ba-before img,
.ba-after img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.ba-after {
    clip-path: inset(0 50% 0 0);
}

.ba-label {
    position: absolute;
    bottom: 14px;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    padding: 4px 12px;
    border-radius: var(--r-full);
    font-family: var(--font-ui);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    backdrop-filter: blur(4px);
}

.ba-before .ba-label {
    right: 14px;
}

.ba-after .ba-label {
    left: 14px;
}

.ba-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 5;
    pointer-events: none;
}

.ba-line {
    width: 2px;
    flex: 1;
    background: #fff;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
}

.ba-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gradient);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    box-shadow: 0 4px 18px var(--shadow);
    flex-shrink: 0;
    border: 3px solid #fff;
    animation: baPulse 2.2s ease-in-out infinite;
}

@keyframes baPulse {

    0%,
    100% {
        box-shadow: 0 4px 18px var(--shadow);
    }

    50% {
        box-shadow: 0 4px 28px rgba(var(--accent-rgb), .65), 0 0 0 6px rgba(var(--accent-rgb), .12);
    }
}

.ba-hint {
    margin-top: 16px;
    font-family: var(--font-ui);
    font-size: 0.8rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
}

/* ── INSTAGRAM SECTION ────────────────────────────────────── */
.instagram-section {
    background: var(--bg-primary);
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 36px;
}

.insta-item {
    position: relative;
    aspect-ratio: 9/16;
    border-radius: var(--r-lg);
    overflow: hidden;
    cursor: pointer;
    background: var(--border-solid);
    border: 1px solid var(--border);
    transition: transform 0.35s cubic-bezier(0.34, 1.3, 0.64, 1), box-shadow 0.35s;
}

.insta-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.insta-item:hover {
    transform: scale(1.04);
    box-shadow: 0 12px 36px var(--shadow);
}

.insta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.32);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: #fff;
    opacity: 0;
    transition: opacity 0.3s;
}

.insta-overlay i {
    font-size: 1.6rem;
}

.insta-overlay span {
    font-family: var(--font-ui);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

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

.instagram-cta {
    text-align: center;
}

/* ── COURSES SECTION ──────────────────────────────────────── */
.courses-section {
    background: var(--bg-secondary);
}

.batch-countdown-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    background: rgba(var(--accent-rgb), 0.08);
    border: 1.5px solid rgba(var(--accent-rgb), 0.28);
    border-radius: var(--r-md);
    padding: 14px 24px;
    margin-bottom: 48px;
    flex-wrap: wrap;
    font-family: var(--font-ui);
    font-size: 0.88rem;
    color: var(--text-primary);
}

.batch-countdown-banner i {
    color: var(--accent);
}

.batch-timer {
    font-family: var(--font-accent);
    font-size: 1.05rem;
    color: var(--accent);
    font-weight: 700;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 30px;
    margin-bottom: 64px;
}

.course-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 38px 30px;
    position: relative;
    overflow: hidden;
    transition: transform 0.38s cubic-bezier(0.34, 1.3, 0.64, 1), box-shadow 0.38s, border-color 0.28s;
}

.course-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient);
}

.course-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    box-shadow: 0 24px 64px var(--shadow);
}

.course-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    background: var(--gradient);
    color: #fff;
    padding: 4px 14px;
    border-radius: var(--r-full);
    font-family: var(--font-ui);
    font-size: 0.68rem;
    font-weight: 700;
}

.course-icon {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 16px;
}

.course-card h3 {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 10px;
    line-height: 1.3;
}

.course-duration {
    display: flex;
    align-items: center;
    gap: 7px;
    font-family: var(--font-ui);
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 22px;
}

.course-features {
    list-style: none;
    margin-bottom: 24px;
}

.course-features li {
    display: flex;
    align-items: center;
    gap: 9px;
    font-family: var(--font-ui);
    font-size: 0.83rem;
    color: var(--text-secondary);
    padding: 5px 0;
    border-bottom: 1px solid var(--border);
}

.course-features li:last-child {
    border: none;
}

.course-features i {
    color: var(--accent);
    font-size: 0.68rem;
}

.course-price {
    margin-bottom: 22px;
}

.price-label {
    display: block;
    font-family: var(--font-ui);
    font-size: 0.75rem;
    color: var(--text-muted);
}

.price {
    font-family: var(--font-accent);
    font-size: 1rem;
    color: var(--accent);
    font-weight: 700;
}

/* Course benefits */
.course-benefits {
    margin-top: 56px;
    padding: 48px 40px;
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    box-shadow: 0 4px 20px var(--shadow);
}

.course-benefits>h3 {
    text-align: center;
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    color: var(--text-primary);
    margin-bottom: 40px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 22px;
}

.benefit-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 30px 22px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.25s;
    box-shadow: 0 2px 10px var(--shadow);
}

.benefit-item:hover {
    transform: translateY(-6px);
    border-color: var(--accent);
    box-shadow: 0 14px 40px var(--shadow);
}

.benefit-item i {
    display: block;
    font-size: 1.9rem;
    color: var(--accent);
    margin-bottom: 14px;
}

.benefit-item h4 {
    font-size: 0.95rem;
    color: var(--text-primary);
    margin-bottom: 7px;
    font-weight: 700;
}

.benefit-item p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ── ABOUT SECTION ────────────────────────────────────────── */
.about-section {
    background: var(--bg-primary);
}

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

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

.about-image {
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: 0 24px 64px var(--shadow-dark);
    position: relative;
}

.about-image img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    display: block;
}

.about-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(var(--accent-rgb), .10) 100%);
    border-radius: var(--r-xl);
    pointer-events: none;
}

.about-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: var(--gradient);
    color: #fff;
    padding: 10px 18px;
    border-radius: var(--r-full);
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-ui);
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 18px var(--shadow);
}

.about-float-stats {
    position: absolute;
    right: -22px;
    bottom: 20px;

    display: flex;
    /* flex-direction: column; */
    gap: 12px;
}

.float-stat {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    padding: 12px 18px;
    text-align: center;
    box-shadow: 0 6px 24px var(--shadow-dark);
}

.float-stat.top-left {
    top: 20px;
    left: -24px;
}

.float-stat.bottom-right {
    bottom: 80px;
    right: -24px;
}

.float-stat strong {
    display: block;
    font-family: var(--font-accent);
    font-size: 1.2rem;
    color: var(--accent);
}

.float-stat span {
    font-family: var(--font-ui);
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.about-text .section-subtitle {
    display: block;
    margin-bottom: 10px;
}

.about-text .section-title {
    text-align: left;
    margin-bottom: 18px;
}

.about-intro {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--text-primary);
    font-style: italic;
    margin-bottom: 18px;
}

.about-text p {
    margin-bottom: 16px;
}

.about-specialties {
    margin: 28px 0;
    padding: 24px;
    background: rgba(var(--accent-rgb), 0.06);
    border-left: 4px solid var(--accent);
    border-radius: var(--r-sm);
}

.about-specialties h3 {
    font-family: var(--font-ui);
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.specialty-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.specialty-tags span {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(var(--accent-rgb), 0.09);
    border: 1px solid rgba(var(--accent-rgb), 0.3);
    color: var(--accent);
    padding: 5px 14px;
    border-radius: var(--r-full);
    font-family: var(--font-ui);
    font-size: 0.78rem;
    font-weight: 500;
    transition: var(--t-fast);
}

.specialty-tags span:hover {
    background: var(--accent);
    color: #fff;
}

.about-achievements {
    margin: 26px 0;
}

.achievement {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 16px;
}

.achievement i {
    font-size: 1.2rem;
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 3px;
}

.achievement h4 {
    font-size: 0.9rem;
    color: var(--text-primary);
    margin-bottom: 3px;
    font-weight: 700;
}

.achievement p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ── TESTIMONIALS ─────────────────────────────────────────── */
.testimonials-section {
    background: var(--bg-secondary);
}

.overall-rating {
    display: flex;
    gap: 36px;
    align-items: flex-start;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    padding: 32px 36px;
    margin-bottom: 52px;
    flex-wrap: wrap;
    box-shadow: 0 4px 20px var(--shadow);
}

.rating-score {
    text-align: center;
    min-width: 110px;
}

.score-num {
    display: block;
    font-family: var(--font-accent);
    font-size: 3rem;
    color: var(--accent);
    font-weight: 700;
    line-height: 1;
}

.score-stars {
    color: var(--accent);
    font-size: 1.1rem;
    margin: 8px 0;
}

.score-total {
    font-family: var(--font-ui);
    font-size: 0.75rem;
    color: var(--text-muted);
}

.rating-bars {
    flex: 1;
    min-width: 200px;
}

.bar-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-ui);
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.bar-track {
    flex: 1;
    height: 7px;
    background: var(--border-solid);
    border-radius: 4px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: var(--gradient);
    border-radius: 4px;
    animation: barGrow 0.8s ease both;
}

@keyframes barGrow {
    from {
        width: 0;
    }
}

.testimonials-slider {
    display: flex;
    gap: 24px;
    overflow: hidden;
    margin-bottom: 28px;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 34px 28px;
    flex: 0 0 calc(50% - 12px);
    min-width: 280px;
    position: relative;
    transition: transform 0.35s, box-shadow 0.35s;
    box-shadow: 0 3px 16px var(--shadow);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 14px;
    right: 20px;
    font-family: var(--font-display);
    font-size: 5rem;
    color: rgba(var(--accent-rgb), 0.08);
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 48px var(--shadow);
}

.rating {
    color: var(--accent);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent);
}

.testimonial-author h4 {
    font-size: 0.9rem;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.testimonial-author p {
    font-family: var(--font-ui);
    font-size: 0.75rem;
    color: var(--text-muted);
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.slider-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1.5px solid var(--border);
    color: var(--text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: var(--t-fast);
}

.slider-btn:hover {
    background: var(--accent);
    color: #fff;
    border-color: transparent;
}

.slider-dots {
    display: flex;
    gap: 7px;
}

.dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--border-solid);
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: var(--accent);
    width: 20px;
    border-radius: 4px;
}

/* ── FAQ ──────────────────────────────────────────────────── */
.faq-section {
    background: var(--bg-primary);
}

.faq-grid {
    max-width: 860px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color 0.25s, box-shadow 0.25s;
}

.faq-item.open {
    border-color: var(--accent);
    box-shadow: 0 6px 24px var(--shadow);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    gap: 12px;
}

.faq-question h4 {
    font-family: var(--font-ui);
    font-size: 0.92rem;
    color: var(--text-primary);
    font-weight: 600;
    flex: 1;
}

.faq-icon {
    color: var(--accent);
    font-size: 0.8rem;
    flex-shrink: 0;
    transition: transform 0.3s;
}

.faq-item.open .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer p {
    padding: 0 24px 20px;
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.75;
}

.faq-item.open .faq-answer {
    max-height: 300px;
}

/* ── BOOKING SECTION ──────────────────────────────────────── */
.booking-section {
    background: var(--bg-secondary);
}

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

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.step-num {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--border-solid);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-ui);
    font-weight: 700;
    font-size: 0.9rem;
    transition: background 0.3s, color 0.3s, box-shadow 0.3s;
}

.step.active .step-num,
.step.done .step-num {
    background: var(--gradient);
    color: #fff;
    box-shadow: 0 4px 14px var(--shadow);
}

.step-label {
    font-family: var(--font-ui);
    font-size: 0.72rem;
    color: var(--text-muted);
    letter-spacing: 0.07em;
    text-transform: uppercase;
    white-space: nowrap;
}

.step.active .step-label {
    color: var(--accent);
}

.step-line {
    width: 56px;
    height: 2px;
    background: var(--border-solid);
    margin: 0 6px 20px;
}

.step-line.done {
    background: var(--gradient);
}

.booking-container {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 36px;
    align-items: start;
}

.booking-form {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    padding: 44px;
    box-shadow: 0 4px 24px var(--shadow);
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeUp 0.4s ease;
}

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

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 7px;
    font-family: var(--font-ui);
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 8px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.form-group label i {
    color: var(--accent);
    font-size: 0.72rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-secondary);
    border: 1.5px solid var(--border);
    border-radius: var(--r-md);
    color: var(--text-primary);
    font-family: var(--font-ui);
    font-size: 0.88rem;
    outline: none;
    transition: border-color 0.22s, box-shadow 0.22s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(var(--accent-rgb), 0.12);
}

.form-group input:valid:not(:placeholder-shown) {
    border-color: #4caf82;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%234caf82'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 15px;
    padding-right: 36px;
}

.form-group select:valid,
.form-group textarea:valid {
    background-image: none;
}

.form-group textarea {
    resize: vertical;
    min-height: 90px;
}

.field-error {
    display: block;
    font-size: 0.72rem;
    color: #e85454;
    margin-top: 5px;
    min-height: 16px;
}

.form-btn-row {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-family: var(--font-ui);
    font-size: 0.85rem;
    color: var(--text-secondary);
    cursor: pointer;
}

.checkbox-label input {
    margin-top: 3px;
    accent-color: var(--accent);
}

.booking-summary {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    padding: 20px;
    margin-bottom: 22px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 7px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.83rem;
}

.summary-row:last-child {
    border: none;
}

.summary-label {
    color: var(--text-muted);
    font-family: var(--font-ui);
}

.summary-value {
    color: var(--text-primary);
    font-family: var(--font-ui);
    font-weight: 600;
}

.booking-info {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.info-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 24px 20px;
    text-align: center;
    transition: transform 0.28s, box-shadow 0.28s;
    box-shadow: 0 2px 10px var(--shadow);
}

.info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px var(--shadow);
}

.info-card i {
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 10px;
    display: block;
}

.info-card h3 {
    font-size: 0.92rem;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.info-card p {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.avail-legend {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 8px;
    font-family: var(--font-ui);
    font-size: 0.75rem;
    color: var(--text-muted);
    align-items: center;
    flex-wrap: wrap;
}

.avail-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.avail-dot.booked {
    background: #e85454;
}

.avail-dot.available {
    background: #4caf82;
}

.avail-dot.limited {
    background: var(--accent);
}

/* ── CONTACT SECTION ──────────────────────────────────────── */
.contact-section {
    background: var(--bg-primary);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 40px;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.contact-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 28px 22px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.25s;
    box-shadow: 0 2px 10px var(--shadow);
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 12px 40px var(--shadow);
}

.contact-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(var(--accent-rgb), 0.10);
    color: var(--accent);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    transition: background 0.28s, transform 0.28s;
}

.contact-card:hover .contact-icon {
    background: var(--gradient);
    color: #fff;
    transform: scale(1.1) rotate(-6deg);
}

.contact-card h3 {
    font-size: 0.92rem;
    color: var(--text-primary);
    margin-bottom: 8px;
    font-weight: 700;
}

.contact-card a {
    color: var(--accent);
    font-family: var(--font-ui);
    font-size: 0.85rem;
    font-weight: 600;
}

.contact-card p {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 6px;
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 6px;
}

.map-container {
    border-radius: var(--r-xl);
    overflow: hidden;
    position: relative;
    box-shadow: 0 12px 48px var(--shadow-dark);
    border: 1px solid var(--border);
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 420px;
    border: 0;
}

.map-overlay {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    pointer-events: all;
}

.map-overlay .cta-button {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35) !important;
    border: 2px solid rgba(255, 255, 255, 0.22) !important;
    backdrop-filter: blur(10px);
}

/* ── FOOTER ───────────────────────────────────────────────── */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    padding: 72px 0 28px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
    gap: 44px;
    margin-bottom: 48px;
}

.footer-col h3 {
    font-family: var(--font-accent);
    font-size: 1.1rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 14px;
}

.footer-col h4 {
    font-family: var(--font-ui);
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 2px;
    background: var(--gradient);
}

.footer-col p {
    font-size: 0.83rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 16px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-family: var(--font-ui);
    font-size: 0.83rem;
    color: var(--text-muted);
    transition: color 0.2s, padding-left 0.2s;
}

.footer-col ul li a:hover {
    color: var(--accent);
    padding-left: 6px;
}

.social-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 18px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(var(--accent-rgb), 0.10);
    color: var(--accent);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    transition: var(--t-fast);
}

.social-links a:hover {
    background: var(--gradient);
    color: #fff;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px var(--shadow);
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 13px;
    font-family: var(--font-ui);
    font-size: 0.83rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.contact-list li i {
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 2px;
    font-size: 0.82rem;
}

.contact-list li a {
    color: var(--text-muted);
    transition: color 0.2s;
}

.contact-list li a:hover {
    color: var(--accent);
}

.footer-newsletter h4 {
    margin-top: 20px;
}

.newsletter-form {
    display: flex;
    width: 240px;
    background: var(--bg-card);
    border: 1.5px solid var(--border);
    border-radius: var(--r-full);
    overflow: hidden;
    margin-top: 10px;
    transition: border-color 0.22s;
}

.newsletter-form:focus-within {
    border-color: var(--accent);
}

.newsletter-form input {
    flex: 1;
    border: none;
    background: none;
    padding: 10px 14px;
    font-family: var(--font-ui);
    font-size: 0.82rem;
    color: var(--text-primary);
    outline: none;
}

.newsletter-form input::placeholder {
    color: var(--text-muted);
}

.newsletter-form button {
    background: var(--gradient);
    border: none;
    color: #fff;
    width: 42px;
    height: 42px;
    margin: 2px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    flex-shrink: 0;
    transition: opacity 0.2s;
}

.newsletter-form button:hover {
    opacity: 0.85;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--border);
    padding-top: 24px;
    font-family: var(--font-ui);
    font-size: 0.78rem;
    color: var(--text-muted);
    flex-wrap: wrap;
    gap: 8px;
}

.footer-bottom i {
    color: var(--accent);
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {

    0%,
    100% {
        transform: scale(1);
    }

    25% {
        transform: scale(1.2);
    }

    50% {
        transform: scale(1);
    }
}

/* ── FLOATING BUTTONS ─────────────────────────────────────── */
.floating-buttons {
    position: fixed;
    right: 18px;
    bottom: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: var(--z-float);
    pointer-events: all;
}

.float-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    text-decoration: none;
    flex-shrink: 0;
    position: relative;
    transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.28s;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
    -webkit-tap-highlight-color: transparent;
}

.float-btn:hover {
    transform: scale(1.13) translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
}

.float-btn:active {
    transform: scale(0.94);
}

.float-btn.top-btn {
    background: var(--bg-card);
    color: var(--accent);
    border: 1.5px solid var(--border);
    box-shadow: 0 4px 16px var(--shadow);
}

.float-btn.top-btn i {
    animation: arrowBounce 1.5s ease-in-out infinite;
}

.float-btn.call-btn {
    background: #2563eb;
    color: #fff;
    box-shadow: 0 4px 18px rgba(37, 99, 235, 0.35);
}

.float-btn.whatsapp-btn {
    background: #25d366;
    color: #fff;
    animation: waPulse 2.4s ease-in-out infinite;
}

.float-btn.whatsapp-btn:hover {
    animation: none;
    transform: scale(1.13) translateY(-2px);
}

.float-btn.book-btn {
    background: var(--gradient);
    color: #fff;
    box-shadow: 0 4px 18px var(--shadow);
}

/* Tooltips */
.float-btn::before {
    content: attr(title);
    position: absolute;
    right: calc(100% + 12px);
    top: 50%;
    transform: translateY(-50%) translateX(5px);
    background: var(--text-primary);
    color: var(--bg-card);
    font-family: var(--font-ui);
    font-size: 0.72rem;
    font-weight: 600;
    white-space: nowrap;
    padding: 5px 10px;
    border-radius: 8px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s, transform 0.2s;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
}

.float-btn::after {
    content: '';
    position: absolute;
    right: calc(100% + 3px);
    top: 50%;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-left-color: var(--text-primary);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
}

.float-btn:hover::before {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

.float-btn:hover::after {
    opacity: 1;
}

.float-btn.whatsapp-btn::after,
.float-btn.whatsapp-btn:hover::after {
    display: none !important;
}

@keyframes waPulse {

    0%,
    100% {
        box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
    }

    50% {
        box-shadow: 0 4px 28px rgba(37, 211, 102, 0.75), 0 0 0 7px rgba(37, 211, 102, 0.1);
    }
}

@keyframes arrowBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-3px);
    }
}

/* ── TOAST ────────────────────────────────────────────────── */
.toast-container {
    position: fixed;
    bottom: 96px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9500;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    pointer-events: none;
}

.toast {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-full);
    padding: 12px 24px;
    font-family: var(--font-ui);
    font-size: 0.85rem;
    color: var(--text-primary);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    gap: 10px;
    animation: toastIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: all;
}

.toast i {
    color: var(--accent);
}

.toast.out {
    animation: toastOut 0.3s ease forwards;
}

@keyframes toastIn {
    from {
        opacity: 0;
        transform: translateY(18px) scale(0.9);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

@keyframes toastOut {
    to {
        opacity: 0;
        transform: translateY(8px) scale(0.95);
    }
}

/* ── KEYFRAMES (shared) ───────────────────────────────────── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(22px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

@keyframes lineReveal {
    from {
        opacity: 0;
        transform: translateY(38px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.92);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1100px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

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

    .about-float-stats {
        display: none;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {

    /* Nav — mobile drawer */
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(24px);
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        padding: 90px 32px 40px;
        gap: 6px;
        z-index: var(--z-nav);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-12px);
        transition: opacity 0.35s, transform 0.35s;
    }

    [data-theme="dark"] .nav-menu {
        background: rgba(24, 18, 12, 0.98);
    }

    .nav-menu.open {
        opacity: 1;
        pointer-events: all;
        transform: translateY(0);
    }

    .nav-menu li {
        width: 100%;
        opacity: 0;
        transform: translateX(-18px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .nav-menu.open li {
        opacity: 1;
        transform: translateX(0);
    }

    .nav-menu.open li:nth-child(1) {
        transition-delay: 0.07s;
    }

    .nav-menu.open li:nth-child(2) {
        transition-delay: 0.12s;
    }

    .nav-menu.open li:nth-child(3) {
        transition-delay: 0.17s;
    }

    .nav-menu.open li:nth-child(4) {
        transition-delay: 0.22s;
    }

    .nav-menu.open li:nth-child(5) {
        transition-delay: 0.27s;
    }

    .nav-menu a {
        display: block;
        width: 100%;
        font-size: 1.15rem !important;
        padding: 14px 18px !important;
        border-radius: var(--r-md) !important;
        border-bottom: 1px solid var(--border) !important;
        letter-spacing: 0.02em !important;
        white-space: normal !important;
    }

    .nav-menu a::after {
        display: none !important;
    }

    .nav-menu a.nav-cta {
        border-bottom: none !important;
        text-align: center;
        border-radius: var(--r-full) !important;
        margin-top: 12px;
    }

    body.menu-open {
        overflow: hidden;
    }

    /* Layout */
    .booking-container {
        grid-template-columns: 1fr;
    }

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

    .testimonial-card {
        flex: 0 0 88%;
    }

    .overall-rating {
        flex-direction: column;
        gap: 20px;
    }
}

@media (min-width: 901px) {
    .nav-menu {
        display: flex !important;
        position: static !important;
        opacity: 1 !important;
        pointer-events: all !important;
        transform: none !important;
        background: transparent !important;
        width: auto !important;
        height: auto !important;
        padding: 0 !important;
        flex-direction: row !important;
        backdrop-filter: none !important;
    }

    .nav-menu li {
        opacity: 1 !important;
        transform: none !important;
    }

    .hamburger {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .hero-stats {
        gap: 20px;
        justify-content: space-around;
    }

    .stat h3 {
        font-size: 1.6rem;
    }

    .stat p {
        font-size: 0.72rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

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

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

    .contact-info {
        grid-template-columns: 1fr;
    }

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

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

    .footer-content {
        grid-template-columns: 1fr;
    }

    .portfolio-grid.masonry-view {
        columns: 2 !important;
    }

    .portfolio-grid.grid-view {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }
}

@media (max-width: 540px) {
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .portfolio-grid.list-view .portfolio-item {
        height: 110px;
    }

    .portfolio-grid.list-view .portfolio-item img {
        width: 120px;
    }

    .portfolio-grid.masonry-view {
        columns: 1 !important;
    }

    .portfolio-grid.grid-view {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .portfolio-grid.grid-view .portfolio-item {
        aspect-ratio: 1/1;
    }

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

    .course-benefits {
        padding: 28px 18px;
    }

    .booking-form {
        padding: 28px 22px;
    }

    .batch-countdown-banner {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-buttons .cta-button {
        width: 100%;
        max-width: 280px;
    }

    .portfolio-filters .filter-btn {
        padding: 6px 13px;
        font-size: 0.75rem;
    }

    .cta-button {
        font-size: 0.85rem;
    }

    .site-logo-img {
        height: 38px !important;
    }

    .brand-name-text {
        font-size: 0.95rem !important;
        letter-spacing: 0.03em !important;
    }

    .logo {
        gap: 6px !important;
    }

    .nav-container {
        padding: 0 12px !important;
    }

    .nav-menu {
        padding: 80px 20px 36px !important;
    }

    .nav-menu a {
        font-size: 1rem !important;
        padding: 10px 14px !important;
    }

    .nav-menu a.nav-cta {
        margin-top: 8px;
    }

    .float-btn {
        width: 44px !important;
        height: 44px !important;
        font-size: 0.98rem !important;
    }

    .floating-buttons {
        right: 10px !important;
        bottom: 14px !important;
        gap: 8px !important;
    }

    .float-btn::before,
    .float-btn::after {
        display: none !important;
    }

    .footer-content {
        gap: 28px;
    }
}

@media (max-width: 360px) {
    .portfolio-grid.grid-view {
        grid-template-columns: 1fr !important;
    }

    .site-logo-img {
        height: 32px !important;
    }

    .brand-name-text {
        font-size: 0.85rem !important;
        letter-spacing: 0.02em !important;
    }

    .logo {
        gap: 4px !important;
    }

    .nav-container {
        padding: 0 8px !important;
    }

    .hamburger {
        padding: 4px !important;
    }

    .nav-menu a {
        font-size: 0.95rem !important;
        padding: 8px 12px !important;
    }
}

@media (hover: none) {

    .float-btn::before,
    .float-btn::after {
        display: none !important;
    }
}

@media (max-height: 500px) and (orientation: landscape) {
    .premium-spinner-wrapper {
        flex-direction: row;
        gap: 20px;
    }

    .spinner-inner {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .spinner-petals {
        display: none;
    }

    .typing-brand {
        font-size: 1.8rem;
    }
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .brand-track,
    .banner-track {
        animation: none !important;
    }
}

::selection {
    background: rgba(var(--accent-rgb), 0.22);
    color: var(--text-primary);
}