/* ============================================================
   Elite Body & Mind Care — Premium Spa CSS
   ============================================================ */

/* ── Variables ─────────────────────────────────────────────── */
:root {
    --gold:       #C9A84C;
    --gold-light: #E8C97A;
    --gold-dim:   rgba(201, 168, 76, 0.18);
    --dark:       #0E0E0F;
    --dark-2:     #161618;
    --dark-3:     #1E1E21;
    --cream:      #F4EFE6;
    --cream-2:    #EDE6D8;
    --text:       #C8C0B0;
    --text-light: #E8E0D0;
    --white:      #FFFFFF;
    --radius:     16px;
    --radius-lg:  24px;
    --transition: 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --shadow-gold: 0 8px 40px rgba(201, 168, 76, 0.2);
    --shadow-card: 0 20px 60px rgba(0, 0, 0, 0.4);
}

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

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

body {
    font-family: 'Jost', sans-serif;
    background: var(--dark);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.7;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.gold { color: var(--gold); }

/* ── Sparkle Zones (hero + footer only) ─────────────────── */
.sparkle-zone {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 2;   /* above section bg, below content */
}
.particle {
    position: absolute;
    border-radius: 50%;
    opacity: 0;
    animation: floatUp linear infinite;
    filter: blur(0.3px);
}
.particle--twinkle {
    animation: twinkle ease-in-out infinite;
}
@keyframes floatUp {
    0%   { opacity: 0;   transform: translateY(0)      scale(0.4); }
    8%   { opacity: 0.9; }
    85%  { opacity: 0.3; }
    100% { opacity: 0;   transform: translateY(-100vh) scale(1.8); }
}
@keyframes twinkle {
    0%, 100% { opacity: 0.05; transform: scale(0.8); }
    50%       { opacity: 0.85; transform: scale(1.4); }
}


/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: 'Jost', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    white-space: nowrap;
}
.btn--gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--dark);
    box-shadow: var(--shadow-gold);
}
.btn--gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 50px rgba(201, 168, 76, 0.4);
}
.btn--outline {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.4);
    backdrop-filter: blur(10px);
}
.btn--outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201,168,76,0.08);
}
.btn--whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: var(--white);
    box-shadow: 0 8px 30px rgba(37,211,102,0.3);
}
.btn--whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(37,211,102,0.4);
}
.btn--telegram {
    background: linear-gradient(135deg, #2AABEE, #229ED9);
    color: var(--white);
    box-shadow: 0 8px 30px rgba(42,171,238,0.3);
}
.btn--telegram:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(42,171,238,0.45);
}

/* ── Navigation ──────────────────────────────────────────────── */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 0 32px;
    transition: background 0.4s ease, box-shadow 0.4s ease;
}
.nav.scrolled {
    background: rgba(14,14,15,0.92);
    backdrop-filter: blur(24px);
    box-shadow: 0 1px 0 rgba(201,168,76,0.2);
}
.nav__inner {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}
.nav__logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--white);
    letter-spacing: 0.02em;
}
.nav__links {
    display: flex;
    align-items: center;
    gap: 36px;
}
.nav__link {
    font-size: 0.78rem;
    font-weight: 300;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text);
    transition: color 0.3s;
}
.nav__link:hover { color: var(--gold); }
.nav__hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.nav__hamburger span {
    display: block;
    width: 24px;
    height: 1px;
    background: var(--white);
    transition: var(--transition);
}

/* Mobile nav */
@media (max-width: 900px) {
    .nav__hamburger { display: flex; }
    .nav__links {
        position: fixed;
        top: 80px; left: 0; right: 0;
        background: rgba(14,14,15,0.98);
        backdrop-filter: blur(24px);
        flex-direction: column;
        align-items: center;
        gap: 24px;
        padding: 40px 24px;
        transform: translateY(-120%);
        opacity: 0;
        transition: var(--transition);
        border-bottom: 1px solid rgba(201,168,76,0.2);
    }
    .nav__links.open {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ── Hero ────────────────────────────────────────────────────── */
.hero {
    position: relative;
    height: 100vh;       /* fallback for older browsers */
    height: 100dvh;      /* dvh = dynamic viewport height — excludes mobile browser chrome */
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.hero__bg {
    position: absolute;
    inset: 0;
}
.hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    transition: transform 8s ease;
    will-change: transform;
}
.hero__img.zoomed { transform: scale(1); }
.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(14,14,15,0.5) 0%,
        rgba(14,14,15,0.3) 40%,
        rgba(14,14,15,0.7) 100%
    );
}
.hero__content {
    position: relative;
    z-index: 3;  /* above sparkle-zone (z-index 2) */
    text-align: center;
    padding: 0 24px;
    opacity: 0;
    transform: translateY(30px);
    animation: heroFadeIn 1.2s 0.4s ease forwards;
}
@keyframes heroFadeIn {
    to { opacity: 1; transform: translateY(0); }
}
.hero__eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    font-size: 0.72rem;
    font-weight: 300;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
}
.hero__eyebrow .line {
    display: block;
    width: 40px;
    height: 1px;
    background: var(--gold);
    opacity: 0.6;
}
.hero__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 300;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 24px;
}
.hero__title em {
    font-style: italic;
    color: var(--gold);
}
.hero__subtitle {
    font-size: 1.05rem;
    font-weight: 300;
    color: rgba(255,255,255,0.72);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.8;
}
.hero__ctas {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}
/* "View Packages" CTA — sits above the marquee, never overlaps */
.hero__view-pkg {
    position: absolute;
    bottom: 62px;            /* marquee ~46px + 16px gap = no overlap */
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: 50px;
    background: rgba(14,14,15,0.55);
    border: 1px solid rgba(201,168,76,0.45);
    color: var(--gold);
    font-family: 'Jost', sans-serif;
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    white-space: nowrap;
    backdrop-filter: blur(12px);
    transition: background 0.35s ease, border-color 0.35s ease,
                color 0.35s ease, box-shadow 0.35s ease;
    text-decoration: none;
}
.hero__view-pkg:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--dark);
    box-shadow: 0 8px 32px rgba(201,168,76,0.35);
}
.hero__view-pkg-arrow {
    font-size: 0.7rem;
    animation: bounceDown 1.6s ease-in-out infinite;
}
@keyframes bounceDown {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(4px); }
}

.hero__stats {
    position: absolute;
    bottom: 46px;        /* sits flush on top of the marquee band (~46px tall) */
    right: 60px;
    z-index: 4;
    background: rgba(14,14,15,0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(201,168,76,0.2);
    border-bottom: none;           /* no border where it meets the marquee */
    border-radius: var(--radius) var(--radius) 0 0;
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 20px 36px;
}
.stat { text-align: center; }
.stat__num {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--gold);
    line-height: 1;
}
.stat__num sup { font-size: 0.9rem; }
.stat__label {
    display: block;
    font-size: 0.65rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text);
    margin-top: 4px;
}
.stat__divider {
    width: 1px;
    height: 40px;
    background: rgba(201,168,76,0.25);
}
@media (max-width: 700px) {
    .hero__stats { display: none; }
    .break-md { display: none; }
}

/* ── Marquee Band ──────────────────────────────────────────── */
.marquee-band {
    background: var(--gold);
    overflow: hidden;
    padding: 14px 0;
}
/* When used inside hero — pins to the very bottom edge */
.hero__marquee {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 4;   /* above hero content layers */
    width: 100%;
}
.marquee-track {
    display: flex;
    width: max-content;
    gap: 20px;
    animation: marquee 40s linear infinite;
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--dark);
}
.marquee-track span { white-space: nowrap; }
.marquee-track .dot { color: var(--dark-2); opacity: 0.5; }
@keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ── Skeleton Loading ───────────────────────────────────────── */
@keyframes shimmer {
    0%   { background-position: -600px 0; }
    100% { background-position:  600px 0; }
}
.skel-card {
    background: var(--dark-3);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.skel-img {
    height: 200px;
    background: linear-gradient(90deg,
        rgba(255,255,255,0.04) 25%,
        rgba(255,255,255,0.08) 50%,
        rgba(255,255,255,0.04) 75%);
    background-size: 600px 100%;
    animation: shimmer 1.4s infinite linear;
}
.skel-body { padding: 28px; }
.skel-line {
    height: 12px;
    border-radius: 6px;
    margin-bottom: 12px;
    background: linear-gradient(90deg,
        rgba(255,255,255,0.05) 25%,
        rgba(255,255,255,0.1)  50%,
        rgba(255,255,255,0.05) 75%);
    background-size: 600px 100%;
    animation: shimmer 1.4s infinite linear;
}
.skel-line--title  { width: 60%; height: 18px; margin-bottom: 20px; }
.skel-line--short  { width: 40%; }
.skel-line--medium { width: 70%; }
.skel-line--btn    { width: 100%; height: 44px; border-radius: 50px; margin-top: 24px; }

/* ── Section Shared ──────────────────────────────────────────── */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}
.section-eyebrow {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
    position: relative;
    padding: 0 24px;
}
.section-eyebrow::before,
.section-eyebrow::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 20px;
    height: 1px;
    background: var(--gold);
    opacity: 0.6;
}
.section-eyebrow::before { right: 100%; margin-right: -20px; }
.section-eyebrow::after  { left: 100%;  margin-left:  -20px; }
.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 300;
    color: var(--white);
    line-height: 1.2;
}
.section-desc {
    color: var(--text);
    font-weight: 300;
    max-width: 560px;
    margin: 16px auto 0;
    font-size: 0.98rem;
}
.section-header--light .section-title { color: var(--white); }
.section-header--light .section-desc  { color: rgba(255,255,255,0.65); }

/* Scroll reveal */
[data-reveal] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}
[data-delay="100"] { transition-delay: 0.1s; }
[data-delay="150"] { transition-delay: 0.15s; }
[data-delay="200"] { transition-delay: 0.2s; }
[data-delay="300"] { transition-delay: 0.3s; }
[data-delay="400"] { transition-delay: 0.4s; }

/* ── Why Us ──────────────────────────────────────────────────── */
.why-us {
    padding: 120px 0;
    background: var(--dark-2);
    position: relative;
    z-index: 1;
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 28px;
    margin-top: 20px;
}
.why-card {
    background: var(--dark-3);
    border: 1px solid rgba(201,168,76,0.12);
    border-radius: var(--radius);
    padding: 40px 32px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.why-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(201,168,76,0.08) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
}
.why-card:hover::before { opacity: 1; }
.why-card:hover {
    border-color: rgba(201,168,76,0.35);
    transform: translateY(-8px);
    box-shadow: var(--shadow-gold);
}
.why-card__icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--gold-dim);
    border: 1px solid rgba(201,168,76,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 1.6rem;
    color: var(--gold);
    transition: var(--transition);
}
.why-card:hover .why-card__icon {
    background: var(--gold);
    color: var(--dark);
    transform: scale(1.1);
}
.why-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
}
.why-card p {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--text);
    line-height: 1.8;
}

/* ── Services ────────────────────────────────────────────────── */
.services {
    padding: 120px 0;
    background: var(--dark);
    position: relative;
    z-index: 1;
}

/* Filter tabs */
.filter-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 56px;
}
.filter-tab {
    padding: 8px 24px;
    border-radius: 50px;
    border: 1px solid rgba(201,168,76,0.25);
    background: transparent;
    color: var(--text);
    font-family: 'Jost', sans-serif;
    font-size: 0.8rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
}
.filter-tab:hover,
.filter-tab.active {
    background: var(--gold);
    color: var(--dark);
    border-color: var(--gold);
}

/* Services grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

/* Service card */
.svc-card {
    background: var(--dark-3);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(30px);
}
.svc-card.visible {
    opacity: 1;
    transform: translateY(0);
}
.svc-card:hover {
    border-color: rgba(201,168,76,0.3);
    transform: translateY(-8px);
    box-shadow: var(--shadow-card);
}
.svc-card__img-wrap {
    position: relative;
    height: 200px;
    overflow: hidden;
}
.svc-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.svc-card:hover .svc-card__img { transform: scale(1.08); }
.svc-card__img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 30%, rgba(14,14,15,0.85) 100%);
}
.svc-card__badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--gold);
    color: var(--dark);
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 50px;
}
.svc-card__body {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.svc-card__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 6px;
}
.svc-card__desc {
    font-size: 0.8rem;
    color: var(--gold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.svc-card__prices {
    flex: 1;
    margin-bottom: 24px;
}
.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 0.88rem;
}
.price-row:last-child { border-bottom: none; }
.price-row__dur { color: var(--text); font-weight: 300; }
.price-row__val { color: var(--gold-light); font-weight: 400; }
.svc-card__book {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 20px;
    border-radius: 50px;
    background: rgba(201,168,76,0.08);
    border: 1px solid rgba(201,168,76,0.25);
    color: var(--gold);
    font-size: 0.82rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: var(--transition);
    cursor: pointer;
}
.svc-card__book:hover {
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-color: #25D366;
    color: var(--white);
}

/* ── Testimonials ────────────────────────────────────────────── */
.testimonials {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    z-index: 1;
}
.testi-bg {
    position: absolute;
    inset: 0;
}
.testi-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.testi-overlay {
    position: absolute;
    inset: 0;
    background: rgba(14,14,15,0.85);
    backdrop-filter: blur(2px);
}
.testi-slider {
    position: relative;
    z-index: 2;
    overflow: hidden;
}
.testi-track {
    display: flex;
    gap: 24px;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.testi-card {
    flex: 0 0 calc(50% - 12px);
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(201,168,76,0.18);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    backdrop-filter: blur(12px);
    transition: var(--transition);
}
.testi-card:hover {
    border-color: rgba(201,168,76,0.4);
    background: rgba(255,255,255,0.07);
}
.testi-stars {
    font-size: 1rem;
    color: var(--gold);
    letter-spacing: 3px;
    margin-bottom: 20px;
}
.testi-card p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.18rem;
    font-weight: 300;
    font-style: italic;
    color: rgba(255,255,255,0.85);
    line-height: 1.8;
    margin-bottom: 32px;
}
.testi-author {
    display: flex;
    align-items: center;
    gap: 14px;
}
.testi-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--dark);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.testi-author strong { display: block; color: var(--white); font-weight: 400; }
.testi-author span { font-size: 0.8rem; color: var(--text); }
.testi-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 36px;
}
.testi-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(201,168,76,0.25);
    cursor: pointer;
    transition: var(--transition);
    border: none;
}
.testi-dot.active {
    background: var(--gold);
    width: 24px;
    border-radius: 4px;
}

@media (max-width: 768px) {
    .testi-card { flex: 0 0 100%; }
}

/* ── Location ────────────────────────────────────────────────── */
.location {
    padding: 120px 0;
    background: var(--dark-2);
    position: relative;
    z-index: 1;
}
.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
@media (max-width: 900px) {
    .location-grid { grid-template-columns: 1fr; }
}
.location-info .section-title { text-align: left; margin-bottom: 40px; }
.location-info .section-eyebrow { padding-left: 0; }
.location-info .section-eyebrow::before { display: none; }
.contact-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}
.contact-item__icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--gold-dim);
    border: 1px solid rgba(201,168,76,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 0.9rem;
    flex-shrink: 0;
    margin-top: 2px;
}
.contact-item strong { display: block; color: var(--white); font-weight: 400; margin-bottom: 2px; font-size: 0.85rem; }
.contact-item span, .contact-item a { font-size: 0.9rem; color: var(--text); font-weight: 300; }
.contact-item a:hover { color: var(--gold); }

.location-map {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    aspect-ratio: 4/3;
}
.map-link { display: block; height: 100%; position: relative; }
.map-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.map-link:hover .map-img { transform: scale(1.06); }
.map-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(14,14,15,0.2), rgba(14,14,15,0.7));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    transition: background 0.4s;
}
.map-link:hover .map-overlay { background: rgba(14,14,15,0.55); }
.map-pin {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--gold);
    color: var(--dark);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    box-shadow: 0 8px 30px rgba(201,168,76,0.4);
}
.map-cta {
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ── Footer ──────────────────────────────────────────────────── */
.footer { background: var(--dark-2); border-top: 1px solid rgba(201,168,76,0.1); position: relative; overflow: hidden; }
.footer__top { padding: 80px 0 60px; position: relative; z-index: 2; }
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 48px;
}
@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr; gap: 36px; }
}
.footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 16px;
}
.footer-brand p {
    font-size: 0.88rem;
    font-weight: 300;
    color: var(--text);
    line-height: 1.8;
    max-width: 320px;
    margin-bottom: 24px;
}
.footer-socials { display: flex; gap: 14px; }
.footer-socials a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(201,168,76,0.1);
    border: 1px solid rgba(201,168,76,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1rem;
    transition: var(--transition);
}
.footer-socials a:hover {
    background: var(--gold);
    color: var(--dark);
    transform: translateY(-3px);
}
.footer-links h4, .footer-contact h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: 0.04em;
}
.footer-links a, .footer-contact p {
    display: block;
    font-size: 0.88rem;
    font-weight: 300;
    color: var(--text);
    margin-bottom: 10px;
    transition: color 0.3s;
}
.footer-links a:hover { color: var(--gold); }
.footer-contact p i { color: var(--gold); margin-right: 8px; }
.footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 20px 0;
    text-align: center;
    position: relative;
    z-index: 2;
}
.footer__bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.3); }
.footer__dev {
    margin-top: 6px;
    font-size: 0.72rem;
    color: rgba(255,255,255,0.2);
    letter-spacing: 0.04em;
}
.footer__dev-link {
    color: var(--gold);
    opacity: 0.6;
    transition: opacity 0.3s;
}
.footer__dev-link:hover { opacity: 1; }

/* ── WhatsApp Float ──────────────────────────────────────────── */
.wa-float {
    position: fixed;
    bottom: 36px;
    right: 36px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: var(--white);
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 900;
    box-shadow: 0 8px 30px rgba(37,211,102,0.4);
    transition: opacity 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
    /* Hidden by default — JS adds .visible after scroll */
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px) scale(0.85);
}
.wa-float.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
    animation: waPulse 3s ease infinite;
}
.wa-float:hover {
    transform: scale(1.1) !important;
    box-shadow: 0 12px 40px rgba(37,211,102,0.6);
}
@keyframes waPulse {
    0%, 100% { box-shadow: 0 8px 30px rgba(37,211,102,0.4); }
    50%       { box-shadow: 0 8px 50px rgba(37,211,102,0.7); }
}

/* ── Back to Top ─────────────────────────────────────────────── */
.back-to-top {
    position: fixed;
    bottom: 108px;           /* stacked above WA button */
    right: 36px;
    width: 60px;             /* same size as .wa-float */
    height: 60px;
    border-radius: 50%;
    background: rgba(14,14,15,0.75);
    border: 1.5px solid rgba(201,168,76,0.5);
    color: var(--gold);
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 900;
    cursor: pointer;
    backdrop-filter: blur(14px);
    /* Hidden by default */
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px) scale(0.85);
    transition: opacity 0.4s ease, transform 0.4s ease,
                background 0.3s ease, box-shadow 0.3s ease;
}
.back-to-top.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}
.back-to-top:hover {
    background: var(--gold);
    color: var(--dark);
    box-shadow: var(--shadow-gold);
    transform: translateY(-3px) scale(1.08) !important;
}

/* ── Responsive tweaks ───────────────────────────────────────── */
@media (max-width: 600px) {
    .services-grid { grid-template-columns: 1fr; }
    .hero__title { font-size: 2.6rem; }
    .why-grid { grid-template-columns: 1fr; }
    .hero__ctas { flex-direction: column; align-items: center; }
    .testi-card { padding: 32px 24px; }
}