/* ========================================
   BIBUKET — STYLE
   Premium Çiçekçi Tasarımı
   ======================================== */

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

:root {
    /* Romantik Lüks Paleti */
    --bg-dark: #0c0a0e;
    --bg-section: #110e14;
    --bg-section-alt: #15111a;
    --bg-card: #1c1722;
    --bg-card-hover: #241e2c;
    --rose: #d4a0b0;
    --rose-light: #e8c0cc;
    --rose-dark: #b87d8e;
    --gold: #d4b896;
    --gold-light: #e8d4b8;
    --cream: #f5efe8;
    --cream-dim: #c4bfb8;
    --cream-muted: #8e8a85;
    --white: #ffffff;
    --overlay: rgba(12, 10, 14, 0.7);
    --border: rgba(212, 160, 176, 0.12);
    --border-hover: rgba(212, 160, 176, 0.35);
    --gradient-accent: linear-gradient(135deg, var(--rose) 0%, var(--gold) 100%);
    --whatsapp: #25D366;
    --instagram: #E1306C;

    /* Tipografi */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;

    /* Spacing */
    --section-pad: 100px;
    --container-max: 1200px;

    /* Transition */
    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    text-rendering: optimizeSpeed;
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 16px;
    line-height: 1.7;
    color: var(--cream);
    background: var(--bg-dark);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

a {
    color: var(--rose);
    text-decoration: none;
    transition: color 0.3s var(--ease);
}

a:hover {
    color: var(--rose-light);
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: var(--section-pad) 0;
}

.section__tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}

.section__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 600;
    line-height: 1.15;
    color: var(--cream);
    margin-bottom: 24px;
}

.section__header {
    text-align: center;
    margin-bottom: 60px;
}

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 14px 32px;
    border-radius: 50px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.35s var(--ease);
    white-space: nowrap;
}

.btn--lg {
    padding: 16px 36px;
    font-size: 0.95rem;
}

.btn--primary {
    background: var(--gradient-accent);
    color: var(--bg-dark);
    border-color: transparent;
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212, 160, 176, 0.3);
    color: var(--bg-dark);
}

.btn--outline {
    background: transparent;
    color: var(--cream);
    border-color: rgba(245, 240, 232, 0.25);
}

.btn--outline:hover {
    border-color: var(--rose);
    color: var(--rose);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212, 160, 176, 0.15);
}

.btn--whatsapp {
    background: var(--whatsapp);
    color: var(--white);
    border-color: var(--whatsapp);
}

.btn--whatsapp:hover {
    background: #20bd5a;
    border-color: #20bd5a;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.3);
}

.btn--instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: var(--white);
    border-color: transparent;
}

.btn--instagram:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(225, 48, 108, 0.3);
    color: var(--white);
}

.btn--directions {
    background: var(--bg-card);
    color: var(--cream);
    border-color: var(--border-hover);
}

.btn--directions:hover {
    background: var(--rose);
    color: var(--bg-dark);
    border-color: var(--rose);
    transform: translateY(-2px);
}

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

/* ---------- HEADER ---------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s var(--ease);
}

.header--scrolled {
    background: rgba(12, 10, 14, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.header__logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--cream);
    letter-spacing: 0.5px;
}

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

.header__logo:hover {
    color: var(--cream);
}

.header__menu {
    display: flex;
    gap: 32px;
}

.header__link {
    font-size: 0.88rem;
    font-weight: 400;
    color: var(--cream-dim);
    letter-spacing: 0.3px;
    position: relative;
}

.header__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-accent);
    transition: width 0.3s var(--ease);
    border-radius: 1px;
}

.header__link:hover {
    color: var(--rose-light);
}

.header__link:hover::after {
    width: 100%;
}

.header__actions {
    display: flex;
    gap: 8px;
    align-items: center;
}

.header__icon {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.05);
    color: var(--cream-dim);
    transition: all 0.3s var(--ease);
}

.header__icon svg {
    fill: currentColor;
}

.header__icon--ig:hover {
    background: var(--instagram);
    border-color: var(--instagram);
    color: var(--white);
}

.header__icon--wp:hover {
    background: var(--whatsapp);
    border-color: var(--whatsapp);
    color: var(--white);
}

.header__icon--dir:hover {
    background: var(--rose);
    border-color: var(--rose);
    color: var(--bg-dark);
}

.header__cta-phone {
    padding: 10px 20px;
    font-size: 0.82rem;
    background: var(--gradient-accent);
    color: var(--bg-dark);
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s var(--ease);
    margin-left: 4px;
}

.header__cta-phone:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 160, 176, 0.3);
    color: var(--bg-dark);
}

.header__hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.header__hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--cream);
    transition: all 0.3s var(--ease);
    border-radius: 2px;
}

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

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

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

/* ---------- HERO ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    filter: saturate(0.8);
    will-change: auto;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(12, 10, 14, 0.5) 0%,
        rgba(12, 10, 14, 0.7) 50%,
        rgba(12, 10, 14, 1) 100%
    );
    z-index: 1;
}

.hero__particles {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.hero__particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--rose);
    border-radius: 50%;
    opacity: 0;
    animation: float-particle 8s ease-in-out infinite;
}

@keyframes float-particle {
    0% {
        opacity: 0;
        transform: translateY(100vh) rotate(0deg);
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        opacity: 0;
        transform: translateY(-100px) rotate(360deg);
    }
}

.hero__content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 120px 0 80px;
}

.hero__badge {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--rose);
    border: 1px solid var(--border-hover);
    padding: 10px 28px;
    border-radius: 50px;
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
    background: rgba(212, 160, 176, 0.08);
}

.hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    font-weight: 700;
    line-height: 1.08;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.hero__subtitle {
    font-size: clamp(1rem, 2vw, 1.15rem);
    font-weight: 300;
    color: var(--cream-dim);
    max-width: 560px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.hero__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 64px;
}

.hero__stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    padding-top: 48px;
    border-top: 1px solid var(--border);
}

.hero__stat {
    text-align: center;
}

.hero__stat-value {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 6px;
}

.hero__stat-label {
    font-size: 0.82rem;
    color: var(--cream-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
}

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

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

.about__image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.about__image::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid var(--border);
    border-radius: 20px;
    pointer-events: none;
}

.about__image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.6s var(--ease);
}

.about__image:hover img {
    transform: scale(1.04);
}

.about__image-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: var(--gradient-accent);
    color: var(--bg-dark);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 10px 24px;
    border-radius: 50px;
    z-index: 1;
    letter-spacing: 1px;
}

.about__text {
    font-size: 1rem;
    color: var(--cream-dim);
    margin-bottom: 16px;
    line-height: 1.8;
}

.about__features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.about__feature {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px 16px;
    text-align: center;
    transition: all 0.35s var(--ease);
}

.about__feature:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.about__feature-icon {
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.about__feature h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 4px;
}

.about__feature p {
    font-size: 0.82rem;
    color: var(--cream-muted);
}

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

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

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s var(--ease);
    contain: layout style;
}

.service-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.service-card__image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 2;
}

.service-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.service-card:hover .service-card__image img {
    transform: scale(1.08);
}

.service-card__content {
    padding: 24px;
}

.service-card__content h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 8px;
}

.service-card__content p {
    font-size: 0.9rem;
    color: var(--cream-muted);
    line-height: 1.6;
}

/* ---------- PRODUCT MODAL ---------- */
.service-card { cursor: pointer; }

.product-modal {
    position: fixed;
    inset: 0;
    z-index: 1500;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s var(--ease);
}

.product-modal.active {
    opacity: 1;
    visibility: visible;
}

.product-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(12, 10, 14, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.product-modal__content {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
    padding: 80px 24px 40px;
    max-height: 100vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.product-modal__close {
    position: fixed;
    top: 20px;
    right: 24px;
    z-index: 2;
    width: 48px;
    height: 48px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--cream);
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--ease);
}

.product-modal__close:hover {
    border-color: var(--rose);
    background: var(--bg-card-hover);
}

.product-modal__title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 32px;
    text-align: center;
}

.product-modal__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.product-modal__item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    contain: layout style;
}

.product-modal__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.product-modal__item:hover img {
    transform: scale(1.08);
}

.product-modal__empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 24px;
    color: var(--cream-muted);
    font-size: 1rem;
}

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

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 36px 28px;
    transition: all 0.35s var(--ease);
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 16px;
    right: 24px;
    font-family: var(--font-heading);
    font-size: 4rem;
    line-height: 1;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.2;
}

.testimonial-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
}

.testimonial-card__stars {
    color: var(--gold);
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.testimonial-card__text {
    font-size: 1rem;
    font-style: italic;
    color: var(--cream-dim);
    line-height: 1.7;
    margin-bottom: 24px;
}

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

.testimonial-card__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gradient-accent);
    color: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.testimonial-card__author strong {
    display: block;
    color: var(--cream);
    font-weight: 500;
    font-size: 0.95rem;
}

.testimonial-card__author span {
    font-size: 0.8rem;
    color: var(--cream-muted);
}

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

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

.contact__detail {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
}

.contact__icon {
    font-size: 1.3rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    flex-shrink: 0;
    color: var(--rose);
}

.contact__icon svg {
    fill: var(--rose);
}

.contact__detail strong {
    display: block;
    color: var(--cream);
    font-weight: 500;
    margin-bottom: 4px;
}

.contact__detail p {
    font-size: 0.9rem;
    color: var(--cream-dim);
    line-height: 1.6;
}

.contact__detail a {
    color: var(--cream-dim);
}

.contact__detail a:hover {
    color: var(--rose);
}

.contact__buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 32px;
}

.contact__map-wrapper {
    position: sticky;
    top: 100px;
}

.contact__map {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

/* ---------- FOOTER ---------- */
.footer {
    background: var(--bg-dark);
    border-top: 1px solid var(--border);
    padding-top: 60px;
}

.footer__inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 48px;
}

.footer__logo {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--cream);
    display: inline-block;
    margin-bottom: 16px;
}

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

.footer__logo:hover {
    color: var(--cream);
}

.footer__desc {
    font-size: 0.9rem;
    color: var(--cream-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer__social {
    display: flex;
    gap: 12px;
}

.footer__social-link {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--cream-dim);
    transition: all 0.3s var(--ease);
}

.footer__social-link:hover {
    border-color: var(--rose);
    color: var(--rose);
    transform: translateY(-2px);
}

.footer__social-link svg {
    fill: currentColor;
}

.footer__col h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 20px;
}

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

.footer__col ul li a,
.footer__col ul li {
    font-size: 0.88rem;
    color: var(--cream-muted);
}

.footer__col ul li a:hover {
    color: var(--rose);
}

.footer__highlight {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 500;
    margin-top: 4px;
}

.footer__bottom {
    border-top: 1px solid var(--border);
    padding: 20px 0;
    text-align: center;
}

.footer__bottom p {
    font-size: 0.82rem;
    color: var(--cream-muted);
}

/* ---------- WHATSAPP FAB ---------- */
.whatsapp-fab {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 62px;
    height: 62px;
    background: var(--whatsapp);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    box-shadow: 0 4px 24px rgba(37, 211, 102, 0.4);
    animation: pulse-wp 2s ease-in-out infinite;
    transition: transform 0.3s var(--ease);
    color: var(--white);
}

.whatsapp-fab:hover {
    transform: scale(1.1);
    color: var(--white);
}

.whatsapp-fab svg {
    fill: white;
}

@keyframes pulse-wp {
    0%, 100% { box-shadow: 0 4px 24px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 40px rgba(37, 211, 102, 0.7), 0 0 0 12px rgba(37, 211, 102, 0.1); }
}

/* ---------- SCROLL TOP ---------- */
.scroll-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 44px;
    height: 44px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--rose);
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s var(--ease);
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--rose);
    color: var(--bg-dark);
    border-color: var(--rose);
    transform: translateY(-2px);
}

/* ---------- REVEAL ANIMATION ---------- */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

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

/* ---------- LIGHTBOX ---------- */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s var(--ease);
    cursor: pointer;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 12px;
    object-fit: contain;
    transform: scale(0.9);
    transition: transform 0.3s var(--ease);
}

.lightbox.active img {
    transform: scale(1);
}

.lightbox__close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.lightbox__close:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* ---------- 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; }
    .reveal { opacity: 1; transform: none; }
    .hero__particle { display: none; }
}

/* ========================================
   RESPONSIVE
   ======================================== */

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

    .about__inner {
        gap: 48px;
    }

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

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

    .testimonials__grid .testimonial-card:last-child {
        grid-column: 1 / -1;
        max-width: 480px;
        margin: 0 auto;
    }

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

/* ---------- 768px ---------- */
@media (max-width: 768px) {
    .header__nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(12, 10, 14, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 100px 32px 40px;
        transition: right 0.4s var(--ease);
        border-left: 1px solid var(--border);
        z-index: 1000;
    }

    .header__nav.open {
        right: 0;
    }

    .header__menu {
        flex-direction: column;
        gap: 24px;
    }

    .header__link {
        font-size: 1.1rem;
    }

    .header__actions {
        gap: 6px;
    }

    .header__cta-phone {
        display: none;
    }

    .header__icon {
        width: 36px;
        height: 36px;
    }

    .header__hamburger {
        display: flex;
    }

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

    .about__image img {
        height: 400px;
    }

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

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

    .product-modal__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

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

    .testimonials__grid .testimonial-card:last-child {
        max-width: none;
    }

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

    .contact__map-wrapper {
        position: static;
    }

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

    .hero__stats {
        gap: 24px;
    }
}

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

    body {
        font-size: 15px;
    }

    .container {
        padding: 0 16px;
    }

    .hero__content {
        padding: 100px 0 60px;
    }

    .hero__badge {
        font-size: 0.7rem;
        padding: 6px 18px;
    }

    .hero__actions {
        flex-direction: column;
        align-items: stretch;
        margin-bottom: 48px;
    }

    .hero__stats {
        flex-direction: column;
        gap: 16px;
    }

    .about__image img {
        height: 300px;
    }

    .contact__buttons .btn {
        font-size: 16px;
    }

    .whatsapp-fab {
        width: 54px;
        height: 54px;
        bottom: 20px;
        right: 20px;
    }

    .scroll-top {
        bottom: 84px;
        right: 22px;
        width: 40px;
        height: 40px;
    }
}
