/* ═══════════════════════════════════════════════════════════
   SUNFLOWER سن فلاور — style.css  (v2 – fixed slider + new sections)
   Modern Art · Arabic RTL · Fully Responsive
═══════════════════════════════════════════════════════════ */

/* ─── TOKENS ─────────────────────────────────────────────── */
:root {
    --clr-green-deep: #1a4d2e;
    --clr-green-mid: #2d7d4f;
    --clr-green-light: #4caf77;
    --clr-green-pale: #e8f5e9;
    --clr-gold: #f5c842;
    --clr-gold-dark: #c9a227;
    --clr-gold-pale: #fffbea;
    --clr-rose: #e8374a;
    --clr-cream: #faf8f5;
    --clr-white: #ffffff;
    --clr-ink: #1a1a1a;
    --clr-ink-soft: #3a3a3a;
    --clr-ink-muted: #6b6b6b;
    --clr-border: #e5e5e5;

    --font: "IBM Plex Sans Arabic", "Segoe UI", system-ui, sans-serif;

    --sp-xs: 0.5rem;
    --sp-sm: 0.75rem;
    --sp-md: 1rem;
    --sp-lg: 1.5rem;
    --sp-xl: 2rem;
    --sp-2xl: 3rem;
    --sp-3xl: 4.5rem;
    --sp-4xl: 6rem;

    --r-sm: 0.5rem;
    --r-md: 1rem;
    --r-lg: 1.5rem;
    --r-xl: 2rem;
    --r-full: 999px;

    --sh-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --sh-md: 0 6px 24px rgba(0, 0, 0, 0.1);
    --sh-lg: 0 16px 48px rgba(0, 0, 0, 0.14);
    --sh-xl: 0 32px 80px rgba(0, 0, 0, 0.18);

    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --dur-sm: 200ms;
    --dur-md: 350ms;
    --dur-lg: 600ms;
}

/* ─── RESET ──────────────────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
    font-size: 16px;
}
body {
    font-family: var(--font);
    color: var(--clr-ink);
    background: var(--clr-cream);
    direction: rtl;
    text-align: right;
    overflow-x: hidden;
    line-height: 1.65;
}
img {
    display: block;
    max-width: 100%;
    height: auto;
    object-fit: cover;
}
a {
    text-decoration: none;
    color: inherit;
}
ul {
    list-style: none;
}
button {
    cursor: pointer;
    font: inherit;
}

/* ─── UTILITIES ──────────────────────────────────────────── */
.container {
    width: min(92%, 1200px);
    margin-inline: auto;
}
.icon-sm {
    width: 1.1rem;
    height: 1.1rem;
    flex-shrink: 0;
}
.icon-xs {
    width: 0.9rem;
    height: 0.9rem;
    flex-shrink: 0;
}

/* ─── FLOAT BUTTONS ──────────────────────────────────────── */
.float-contacts {
    position: fixed;
    bottom: var(--sp-lg);
    left: var(--sp-lg);
    display: flex;
    flex-direction: column;
    gap: var(--sp-sm);
    z-index: 900;
}
.float-btn {
    width: 3.2rem;
    height: 3.2rem;
    border-radius: var(--r-full);
    display: grid;
    place-items: center;
    box-shadow: var(--sh-lg);
    transition:
        transform var(--dur-sm) var(--ease),
        box-shadow var(--dur-sm) var(--ease);
}
.float-btn svg {
    width: 1.5rem;
    height: 1.5rem;
}
.float-btn:hover {
    transform: scale(1.12) translateY(-2px);
    box-shadow: var(--sh-xl);
}
.float-btn.whatsapp {
    background: #25d366;
    color: #fff;
}
.float-btn.phone {
    background: var(--clr-green-deep);
    color: var(--clr-gold);
}

/* ─── NAVIGATION ─────────────────────────────────────────── */
.site-header {
    position: fixed;
    inset-block-start: 0;
    inset-inline: 0;
    z-index: 800;
    transition:
        background var(--dur-md) var(--ease),
        box-shadow var(--dur-md) var(--ease);
}
.site-header.scrolled {
    background: rgba(26, 77, 46, 0.93);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.25);
}
.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--sp-lg);
    padding-block: var(--sp-md);
}
.logo {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--clr-white);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    z-index: 1;
}
.logo-sun {
    font-size: 1.8rem;
    color: var(--clr-gold);
    display: inline-block;
    animation: spin-slow 20s linear infinite;
}
@keyframes spin-slow {
    to {
        transform: rotate(360deg);
    }
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--sp-xs);
}
.nav-link {
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.925rem;
    font-weight: 500;
    padding: 0.4rem var(--sp-sm);
    border-radius: var(--r-full);
    transition: background var(--dur-sm) var(--ease);
}
.nav-link:hover,
.nav-link.active {
    background: rgba(255, 255, 255, 0.18);
    color: var(--clr-white);
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 0.4rem;
    z-index: 810;
}
.burger span {
    display: block;
    width: 1.6rem;
    height: 2px;
    background: var(--clr-white);
    border-radius: 2px;
    transition:
        transform var(--dur-md) var(--ease),
        opacity var(--dur-md) var(--ease);
}
.burger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.burger.open span:nth-child(2) {
    opacity: 0;
}
.burger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ─── HERO ───────────────────────────────────────────────── */
.hero {
    min-height: 100dvh;
    background: linear-gradient(
        135deg,
        var(--clr-green-deep) 0%,
        #0f3d24 55%,
        #1a4d2e 100%
    );
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.petal {
    position: absolute;
    border-radius: 60% 40% 60% 40%;
    opacity: 0.06;
    animation: float var(--dur, 12s) ease-in-out infinite var(--delay, 0s)
        alternate;
}
@keyframes float {
    from {
        transform: translateY(0) rotate(0deg) scale(1);
    }
    to {
        transform: translateY(-40px) rotate(20deg) scale(1.05);
    }
}
.p1 {
    width: 500px;
    height: 500px;
    background: var(--clr-gold);
    top: -20%;
    right: -10%;
    --dur: 14s;
    --delay: 0s;
}
.p2 {
    width: 300px;
    height: 300px;
    background: var(--clr-green-light);
    bottom: 5%;
    right: 10%;
    --dur: 10s;
    --delay: -3s;
}
.p3 {
    width: 200px;
    height: 200px;
    background: var(--clr-rose);
    top: 30%;
    left: 5%;
    --dur: 8s;
    --delay: -5s;
}
.p4 {
    width: 400px;
    height: 400px;
    background: var(--clr-gold);
    bottom: -15%;
    left: -5%;
    --dur: 16s;
    --delay: -7s;
}
.p5 {
    width: 150px;
    height: 150px;
    background: #fff;
    top: 10%;
    left: 25%;
    --dur: 9s;
    --delay: -2s;
}

.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: var(--sp-3xl);
    padding-block: var(--sp-4xl) var(--sp-2xl);
    padding-top: calc(var(--sp-4xl) + 4rem);
    position: relative;
    z-index: 1;
}
.hero-content {
    display: flex;
    flex-direction: column;
    gap: var(--sp-lg);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-xs);
    background: rgba(245, 200, 66, 0.15);
    border: 1px solid rgba(245, 200, 66, 0.35);
    color: var(--clr-gold);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.4rem var(--sp-md);
    border-radius: var(--r-full);
    width: fit-content;
    animation: badge-pulse 2.5s ease-in-out infinite;
}
.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--clr-gold);
    border-radius: 50%;
    animation: dot-ping 2s ease-in-out infinite;
}
@keyframes badge-pulse {
    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(245, 200, 66, 0);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(245, 200, 66, 0);
    }
}
@keyframes dot-ping {
    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.4);
        opacity: 0.7;
    }
}

.hero-title {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}
.title-line {
    font-size: clamp(3.5rem, 9vw, 6.5rem);
    font-weight: 700;
    color: var(--clr-white);
    letter-spacing: -0.02em;
    display: block;
}
.title-line.accent {
    color: var(--clr-gold);
    -webkit-text-stroke: 2px var(--clr-gold);
}
.hero-tagline {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.7;
}
.hero-location {
    display: flex;
    align-items: center;
    gap: var(--sp-xs);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}
.hero-location svg {
    color: var(--clr-gold);
}

.hero-ctas {
    display: flex;
    gap: var(--sp-md);
    flex-wrap: wrap;
}
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem var(--sp-xl);
    border-radius: var(--r-full);
    font-size: 1rem;
    font-weight: 600;
    font-family: var(--font);
    border: 2px solid transparent;
    white-space: nowrap;
    transition:
        transform var(--dur-sm) var(--ease),
        box-shadow var(--dur-sm) var(--ease),
        background var(--dur-sm) var(--ease);
}
.btn svg {
    width: 1.15rem;
    height: 1.15rem;
}
.btn:hover {
    transform: translateY(-2px);
}
.btn:active {
    transform: translateY(0);
}
.btn-primary {
    background: var(--clr-gold);
    color: var(--clr-green-deep);
    box-shadow: 0 6px 20px rgba(245, 200, 66, 0.4);
}
.btn-primary:hover {
    box-shadow: 0 10px 30px rgba(245, 200, 66, 0.5);
}
.btn-outline {
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--clr-white);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
}
.btn-outline:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.8);
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: var(--sp-lg);
    padding-top: var(--sp-md);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.15rem;
}
.stat-num {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--clr-gold);
}
.stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
}
.stat-divider {
    width: 1px;
    height: 2rem;
    background: rgba(255, 255, 255, 0.15);
}

/* Hero collage */
.hero-visual {
    position: relative;
}
.collage {
    position: relative;
    height: 520px;
}
.collage-img {
    position: absolute;
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: var(--sh-xl);
    border: 3px solid rgba(255, 255, 255, 0.15);
    transition: transform var(--dur-md) var(--ease);
}
.collage-img:hover {
    transform: scale(1.03) rotate(0deg) !important;
}
.collage-img.main {
    width: 70%;
    height: 85%;
    top: 5%;
    right: 0;
    z-index: 3;
    transform: rotate(-2deg);
}
.collage-img.secondary {
    width: 48%;
}
.collage-img.top {
    top: 0;
    left: 0;
    height: 45%;
    z-index: 4;
    transform: rotate(3deg);
}
.collage-img.bottom {
    bottom: 0;
    left: 5%;
    height: 42%;
    z-index: 2;
    transform: rotate(-1.5deg);
}
.collage-img img {
    width: 100%;
    height: 100%;
}

.scroll-hint {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}
.scroll-hint span {
    display: block;
    width: 1.5px;
    height: 3rem;
    margin-inline: auto;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0),
        rgba(255, 255, 255, 0.5)
    );
    animation: scroll-line 2s ease-in-out infinite;
}
@keyframes scroll-line {
    0%,
    100% {
        height: 0;
        opacity: 0;
        transform: translateY(0);
    }
    30% {
        height: 3rem;
        opacity: 1;
    }
    70% {
        height: 3rem;
        opacity: 0.6;
        transform: translateY(1rem);
    }
}

/* ─── MARQUEE STRIP ──────────────────────────────────────── */
.marquee-strip {
    background: var(--clr-gold);
    overflow: hidden;
    padding-block: 0.75rem;
    white-space: nowrap;
}
.marquee-track {
    display: inline-flex;
    gap: 3rem;
    animation: marquee-scroll 25s linear infinite;
}
.marquee-track span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--clr-green-deep);
}
@keyframes marquee-scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* ─── SECTION HEADERS ────────────────────────────────────── */
.section-header {
    text-align: center;
    margin-bottom: var(--sp-2xl);
}
.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--clr-green-mid);
    background: var(--clr-green-pale);
    padding: 0.3rem var(--sp-md);
    border-radius: var(--r-full);
    margin-bottom: var(--sp-sm);
}
.section-header.light .section-tag {
    color: var(--clr-gold);
    background: rgba(245, 200, 66, 0.15);
}
.section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--clr-ink);
    line-height: 1.2;
}
.section-header.light .section-title {
    color: var(--clr-white);
}
.section-sub {
    margin-top: var(--sp-sm);
    color: var(--clr-ink-muted);
    font-size: 1rem;
}
.section-header.light .section-sub {
    color: rgba(255, 255, 255, 0.7);
}

/* ─── FEATURES ───────────────────────────────────────────── */
.features {
    padding-block: var(--sp-4xl);
    background: var(--clr-cream);
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-lg);
}
.feature-card {
    background: var(--clr-white);
    border-radius: var(--r-lg);
    padding: var(--sp-xl);
    border: 1px solid var(--clr-border);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(24px);
    transition:
        transform var(--dur-md) var(--ease),
        box-shadow var(--dur-md) var(--ease),
        border-color var(--dur-md) var(--ease);
}
.feature-card.visible {
    opacity: 1;
    transform: translateY(0);
    transition:
        opacity var(--dur-lg) var(--ease),
        transform var(--dur-lg) var(--ease);
}
.feature-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        transparent 60%,
        rgba(245, 200, 66, 0.05)
    );
    pointer-events: none;
}
.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--sh-lg);
    border-color: var(--clr-green-light);
}
.feature-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: var(--r-md);
    background: var(--c, var(--clr-green-pale));
    display: grid;
    place-items: center;
    margin-bottom: var(--sp-md);
    color: var(--ic, var(--clr-green-mid));
}
.feature-icon svg {
    width: 1.6rem;
    height: 1.6rem;
}
.feature-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--clr-ink);
    margin-bottom: var(--sp-xs);
}
.feature-desc {
    font-size: 0.9rem;
    color: var(--clr-ink-muted);
    line-height: 1.7;
}

/* ─── COUNTER STRIP ──────────────────────────────────────── */
.counter-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0f3d24 0%, var(--clr-green-deep) 100%);
    padding-block: var(--sp-3xl);
}
.counter-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E")
        repeat;
}
.counter-grid {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: var(--sp-xl);
    flex-wrap: wrap;
}
.counter-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--sp-xs);
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
}
.counter-item.visible {
    opacity: 1;
    transform: translateY(0);
    transition:
        opacity var(--dur-lg) var(--ease),
        transform var(--dur-lg) var(--ease);
}
.counter-num {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    color: var(--clr-gold);
    line-height: 1;
}
.counter-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}
.counter-sep {
    width: 1px;
    height: 3.5rem;
    background: rgba(255, 255, 255, 0.15);
}

/* ─── OCCASIONS ──────────────────────────────────────────── */
.occasions {
    padding-block: var(--sp-4xl);
    background: var(--clr-white);
}

.occasions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-lg);
}
.occasions-grid .occ-card:last-child {
    grid-column: 1 / -1;
}
.occ-card {
    background: var(--clr-cream);
    border-radius: var(--r-xl);
    padding: var(--sp-xl) var(--sp-lg);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(24px);
    transition:
        transform var(--dur-md) var(--ease),
        box-shadow var(--dur-md) var(--ease),
        border-color var(--dur-md) var(--ease);
}

.occ-card.visible {
    opacity: 1;
    transform: translateY(0);
    transition:
        opacity var(--dur-lg) var(--ease),
        transform var(--dur-lg) var(--ease);
}
.occ-card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 5rem;
    height: 5rem;
    border-radius: 0 var(--r-xl) 0 5rem;
    background: var(--accent-pale, #e8f5e9);
    transition:
        width var(--dur-md) var(--ease),
        height var(--dur-md) var(--ease);
}
.occ-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--sh-lg);
    border-color: var(--accent, var(--clr-green-mid));
}
.occ-card:hover::before {
    width: 7rem;
    height: 7rem;
}
.occ-emoji {
    font-size: 2.5rem;
    margin-bottom: var(--sp-md);
    position: relative;
    z-index: 1;
}
.occ-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--clr-ink);
    margin-bottom: var(--sp-xs);
}
.occ-desc {
    font-size: 0.88rem;
    color: var(--clr-ink-muted);
    line-height: 1.7;
}

/* ─── GALLERY SLIDER  (fixed) ────────────────────────────── */
.gallery-section {
    padding-block: var(--sp-4xl);
    background: var(--clr-green-deep);
    overflow: hidden;
}
.gallery-section .section-tag {
    color: var(--clr-gold);
    background: rgba(245, 200, 66, 0.15);
}
.gallery-section .section-title {
    color: var(--clr-white);
}
.gallery-section .section-sub {
    color: rgba(255, 255, 255, 0.6);
}

/* Slider outer wrapper – controls overflow & sizing */
.slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden; /* ← clips slides */
    touch-action: pan-y; /* allow vertical scroll, capture horizontal for swipe */
}

/* Track – holds all slides side-by-side */
.slider-track {
    display: flex;
    /* no gap—padding inside each slide instead */
    transition: transform 450ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
    /* Prevent text selection while dragging */
    user-select: none;
    -webkit-user-select: none;
}

/* Individual slide */
.slide {
    /* Each slide = 100% of wrapper at mobile, 50% tablet, 33.33% desktop */
    flex: 0 0 var(--slide-w, 33.333%);
    min-width: 0;
    padding: 0 var(--sp-sm);
    position: relative;
}

.slide img {
    width: 100%;
    height: 320px;
    border-radius: var(--r-xl);
    object-fit: cover;
    box-shadow: var(--sh-lg);
    transition: transform var(--dur-lg) var(--ease);
    pointer-events: none;
}
.slide:hover img {
    transform: scale(1.03);
}

.slide figcaption {
    position: absolute;
    bottom: var(--sp-md);
    inset-inline: var(--sp-md);
    background: rgba(26, 77, 46, 0.75);
    backdrop-filter: blur(12px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--clr-white);
    font-size: 0.95rem;
    font-weight: 600;
    text-align: center;
    padding: 0.75rem var(--sp-md);
    border-radius: var(--r-lg);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    pointer-events: none;
    transition:
        transform var(--dur-md) var(--ease),
        background var(--dur-md) var(--ease),
        border-color var(--dur-md) var(--ease),
        color var(--dur-md) var(--ease);
}

.slide:hover figcaption {
    transform: translateY(-4px);
    background: var(--clr-gold);
    color: var(--clr-green-deep);
    border-color: rgba(245, 200, 66, 0.2);
}

/* Arrow buttons */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 3rem;
    height: 3rem;
    border-radius: var(--r-full);
    background: rgba(255, 255, 255, 0.15);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    color: var(--clr-white);
    display: grid;
    place-items: center;
    z-index: 10;
    transition:
        background var(--dur-sm) var(--ease),
        transform var(--dur-sm) var(--ease);
    cursor: pointer;
}
.slider-arrow:hover {
    background: rgba(255, 255, 255, 0.28);
}
.slider-arrow:active {
    transform: translateY(-50%) scale(0.93);
}
.slider-arrow svg {
    width: 1.4rem;
    height: 1.4rem;
}
.slider-arrow.prev {
    right: var(--sp-md);
}
.slider-arrow.next {
    left: var(--sp-md);
}

/* Dot indicators */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: var(--sp-xs);
    margin-top: var(--sp-xl);
}
.slider-dot {
    width: 0.6rem;
    height: 0.6rem;
    border-radius: var(--r-full);
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition:
        background var(--dur-sm) var(--ease),
        width var(--dur-sm) var(--ease);
}
.slider-dot.active {
    background: var(--clr-gold);
    width: 1.8rem;
}

/* Responsive slide width */
@media (max-width: 900px) {
    .slide {
        --slide-w: 50%;
    }
}
@media (max-width: 600px) {
    .slide {
        --slide-w: 85%;
    }
}

/* ─── REVIEWS ────────────────────────────────────────────── */
.reviews-section {
    padding-block: var(--sp-4xl);
    background: var(--clr-cream);
}

.google-badge-bar {
    display: flex;
    align-items: center;
    gap: var(--sp-md);
    flex-wrap: wrap;
    justify-content: center;
    background: var(--clr-white);
    border: 1px solid var(--clr-border);
    border-radius: var(--r-full);
    padding: var(--sp-sm) var(--sp-xl);
    width: fit-content;
    margin: 0 auto var(--sp-2xl);
    box-shadow: var(--sh-sm);
}
.google-logo {
    height: 18px;
    width: auto;
}
.badge-text {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--clr-ink-muted);
}
.stars-row {
    display: flex;
    gap: 2px;
}
.star {
    color: #fbbc04;
    font-size: 1rem;
}
.badge-link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: #4285f4;
    padding: 0.25rem 0.75rem;
    border-radius: var(--r-full);
    border: 1px solid #4285f4;
    transition: background var(--dur-sm) var(--ease);
}
.badge-link:hover {
    background: #e8f0fe;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-lg);
}
.review-card {
    background: var(--clr-white);
    border-radius: var(--r-lg);
    padding: var(--sp-xl);
    border: 1px solid var(--clr-border);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    transition:
        transform var(--dur-md) var(--ease),
        box-shadow var(--dur-md) var(--ease);
}
.review-card.visible {
    opacity: 1;
    transform: translateY(0);
    transition:
        opacity var(--dur-lg) var(--ease),
        transform var(--dur-lg) var(--ease);
}
.review-card::before {
    content: "❝";
    position: absolute;
    top: var(--sp-md);
    left: var(--sp-md);
    font-size: 4rem;
    line-height: 1;
    color: var(--clr-green-pale);
    font-family: Georgia, serif;
    pointer-events: none;
}
.review-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--sh-lg);
}
.review-card.featured {
    background: linear-gradient(135deg, var(--clr-green-deep), #0f3d24);
    border-color: transparent;
}
.review-card.featured::before {
    color: rgba(255, 255, 255, 0.06);
}
.review-card.featured .review-text {
    color: rgba(255, 255, 255, 0.88);
}
.review-card.featured .reviewer-name {
    color: var(--clr-gold);
}

.review-top {
    display: flex;
    align-items: center;
    gap: var(--sp-sm);
    margin-bottom: var(--sp-md);
}
.reviewer-avatar {
    width: 2.8rem;
    height: 2.8rem;
    border-radius: var(--r-full);
    background: linear-gradient(
        135deg,
        var(--clr-green-mid),
        var(--clr-green-deep)
    );
    color: var(--clr-gold);
    font-size: 1.2rem;
    font-weight: 700;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    box-shadow: var(--sh-sm);
}
.reviewer-info {
    flex: 1;
}
.reviewer-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--clr-ink);
}
.review-stars {
    color: #fbbc04;
    font-size: 0.9rem;
    letter-spacing: 1px;
}
.google-icon {
    margin-inline-start: auto;
    flex-shrink: 0;
}
.review-text {
    font-size: 0.92rem;
    line-height: 1.75;
    color: var(--clr-ink-soft);
    position: relative;
    z-index: 1;
}

/* ─── CONTACT ────────────────────────────────────────────── */
.contact-section {
    padding-block: var(--sp-4xl);
    background: linear-gradient(135deg, var(--clr-green-deep) 0%, #0e3a22 100%);
    position: relative;
    overflow: hidden;
}
.contact-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.contact-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
}
.b1 {
    width: 600px;
    height: 600px;
    background: var(--clr-gold);
    top: -20%;
    right: -10%;
}
.b2 {
    width: 400px;
    height: 400px;
    background: var(--clr-green-light);
    bottom: -15%;
    left: -5%;
}
.contact-inner {
    position: relative;
    z-index: 1;
}
.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-lg);
    margin-top: var(--sp-xl);
}
.contact-card {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--r-xl);
    padding: var(--sp-xl);
    display: flex;
    align-items: center;
    gap: var(--sp-md);
    transition:
        background var(--dur-md) var(--ease),
        transform var(--dur-md) var(--ease),
        box-shadow var(--dur-md) var(--ease);
}
.contact-card:hover {
    background: rgba(255, 255, 255, 0.13);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}
.call-card {
    border-color: rgba(245, 200, 66, 0.35);
}
.wa-card {
    border-color: rgba(37, 211, 102, 0.35);
}
.location-card {
    border-color: rgba(255, 255, 255, 0.15);
}
.cc-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: var(--r-md);
    display: grid;
    place-items: center;
    flex-shrink: 0;
}
.call-card .cc-icon {
    background: rgba(245, 200, 66, 0.15);
    color: var(--clr-gold);
}
.wa-card .cc-icon {
    background: rgba(37, 211, 102, 0.15);
    color: #25d366;
}
.location-card .cc-icon {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
}
.cc-icon svg {
    width: 1.6rem;
    height: 1.6rem;
}
.cc-text {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}
.cc-label {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.55);
}
.cc-value {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--clr-white);
}
.cc-sub {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ─── FOOTER ─────────────────────────────────────────────── */
.site-footer {
    background: #0a2a17;
    padding-block: var(--sp-2xl);
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}
.footer-inner {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--sp-sm);
}
.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--clr-white);
}
.footer-name {
    color: var(--clr-gold);
}
.footer-tagline {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
}
.footer-copy {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .hero-split {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: calc(var(--sp-4xl) + 5rem);
    }
    .hero-content {
        align-items: center;
    }
    .hero-ctas {
        justify-content: center;
    }
    .hero-stats {
        justify-content: center;
    }
    .hero-visual {
        display: none;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .occasions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .contact-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --sp-3xl: 3rem;
        --sp-4xl: 4rem;
    }

    /* Burger */
    .burger {
        display: flex;
    }
    .nav-links {
        position: fixed;
        inset-block-start: 0;
        inset-inline: 0;
        height: 100dvh;
        background: rgba(26, 77, 46, 0.97);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: var(--sp-lg);
        transform: translateY(-100%);
        transition: transform var(--dur-md) var(--ease);
        z-index: 800;
    }
    .nav-links.open {
        transform: translateY(0);
    }
    .nav-link {
        font-size: 1.4rem;
        padding: var(--sp-sm) var(--sp-xl);
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
    .occasions-grid {
        grid-template-columns: 1fr;
    }
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    .hero-stats {
        flex-wrap: wrap;
        gap: var(--sp-md);
    }
    .counter-grid {
        gap: var(--sp-md);
    }
    .counter-sep {
        display: none;
    }

    .google-badge-bar {
        flex-direction: column;
        text-align: center;
        border-radius: var(--r-lg);
        gap: var(--sp-xs);
    }

    /* Arrows closer to edges on mobile */
    .slider-arrow.prev {
        right: 0.5rem;
    }
    .slider-arrow.next {
        left: 0.5rem;
    }
    .slider-arrow {
        width: 2.4rem;
        height: 2.4rem;
    }
}

@media (max-width: 480px) {
    .hero-split {
        padding-top: calc(var(--sp-2xl) + 5rem);
    }
    .title-line {
        font-size: clamp(2.8rem, 14vw, 3.5rem);
    }
    .btn {
        padding: 0.75rem var(--sp-lg);
        font-size: 0.95rem;
    }
    .contact-card {
        flex-direction: column;
        text-align: center;
        padding: var(--sp-lg);
    }
    .float-contacts {
        bottom: var(--sp-md);
        left: var(--sp-md);
    }
    .float-btn {
        width: 2.8rem;
        height: 2.8rem;
    }
    .float-btn svg {
        width: 1.25rem;
        height: 1.25rem;
    }
    .slide img {
        height: 260px;
    }
}

/* ─── REDUCED MOTION ─────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    html {
        scroll-behavior: auto;
    }
    .marquee-track {
        animation: none;
    }
    .slider-track {
        transition: none;
    }
}
