/* ========== BASE & RESET ========== */
*, *::before, *::after {
    margin: 0; padding: 0; box-sizing: border-box;
}
:root {
    --bg-primary: #0c0a09;
    --bg-secondary: #120e0c;
    --bg-card: #1c1614;
    --bg-card-hover: #241e1b;
    --bg-input: #1c1614;
    --text-primary: #faf5f3;
    --text-secondary: #b8a9a4;
    --text-muted: #7a6860;
    --border: #2e2420;
    --border-hover: #4a3830;
    --accent: #e8421a;
    --accent-hover: #c93610;
    --accent-light: rgba(232, 66, 26, 0.12);
    --accent-glow: rgba(232, 66, 26, 0.35);
    --accent-secondary: #f97316;
    --accent-warm: rgba(249, 115, 22, 0.12);
    --whatsapp: #25D366;
    --whatsapp-hover: #1da851;
    --danger: #ef4444;
    --warning: #f59e0b;
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 16px;
    --shadow: 0 4px 24px rgba(0,0,0,0.4);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.5);
    --transition: all 0.3s ease;
    /* Gradient for hero & accents */
    --grad: linear-gradient(135deg, #e8421a 0%, #f97316 100%);
    --grad-text: linear-gradient(135deg, #f97316, #e8421a);
}
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--accent-hover); }

/* ========== LAYOUT ========== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.container-sm { max-width: 800px; }
.section { padding: 80px 0; }
.section-dark { background: var(--bg-secondary); }
.section-header { text-align: center; margin-bottom: 48px; }
.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--accent-light);
    color: var(--accent);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
    border: 1px solid rgba(232, 66, 26, 0.2);
}
.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 12px;
}
.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    text-decoration: none;
    line-height: 1.4;
}
.btn-primary {
    background: var(--grad);
    color: #fff;
    border-color: var(--accent);
}
.btn-primary:hover {
    background: linear-gradient(135deg, #c93610 0%, #e8661a 100%);
    border-color: var(--accent-hover);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px var(--accent-glow);
}
.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border-color: var(--border-hover);
}
.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
}
.btn-whatsapp {
    background: var(--whatsapp);
    color: #fff;
    border-color: var(--whatsapp);
    font-size: 1.05rem;
    padding: 14px 28px;
}
.btn-whatsapp:hover {
    background: var(--whatsapp-hover);
    border-color: var(--whatsapp-hover);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}
.btn-sm { padding: 8px 16px; font-size: 0.85rem; }
.btn-lg { padding: 16px 32px; font-size: 1rem; }
.btn-block { width: 100%; }

/* ========== NAVBAR ========== */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}
.navbar.scrolled { background: rgba(10, 10, 10, 0.95); }
.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--text-primary);
}
.navbar-brand:hover { color: var(--accent); }
.brand-icon { font-size: 1.5rem; }
.brand-logo { height: 40px; width: 40px; object-fit: contain; }
.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}
.nav-links a {
    color: var(--text-secondary);
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
}
.nav-links a:hover { color: var(--text-primary); background: rgba(255,255,255,0.05); }
.nav-links .btn-primary { color: #fff !important; background: var(--accent); border-color: var(--accent); }
.nav-links .btn-primary:hover { color: #fff !important; background: var(--accent-hover); border-color: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 4px 20px var(--accent-glow); }
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.nav-toggle span {
    width: 24px; height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}

/* ========== HERO ========== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(160deg, #0c0a09 0%, #1f0d06 50%, #0c0a09 100%);
    background-size: cover;
    background-position: center;
    overflow: hidden;
    padding-top: 72px;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 60%, rgba(232,66,26,0.2) 0%, transparent 55%),
        radial-gradient(ellipse at 80% 30%, rgba(249,115,22,0.14) 0%, transparent 50%);
    pointer-events: none;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px 0;
    max-width: 800px;
    margin: 0 auto;
}
.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(245, 158, 11, 0.15);
    color: #fbbf24;
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.2); }
    50% { box-shadow: 0 0 0 10px rgba(245, 158, 11, 0); }
}
.brand-highlight {
    background: var(--grad-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
}
.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--text-secondary);
    margin-bottom: 32px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}
.hero-cta-hint {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.45);
    font-size: 0.82rem;
    margin-bottom: 40px;
    animation: bounceHint 2.5s ease-in-out infinite;
}
.hero-cta-hint svg { opacity: 0.6; }
@keyframes bounceHint {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(4px); }
}
.hero-stats {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
}
.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ========== ABOUT ========== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}
.about-description {
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.8;
}
.about-image img, .about-image .placeholder-image {
    border-radius: var(--radius-lg);
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

/* ========== PLACEHOLDER IMAGE ========== */
.placeholder-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 2px dashed var(--border);
    border-radius: var(--radius);
    min-height: 200px;
    color: var(--text-muted);
}
.placeholder-image span { font-size: 3rem; margin-bottom: 8px; }
.placeholder-image p { font-size: 0.85rem; }

/* ========== MENU ========== */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.menu-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
}
.menu-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
    box-shadow: 0 8px 30px rgba(232, 66, 26, 0.1);
}
.menu-image { aspect-ratio: 16/10; overflow: hidden; }
.menu-image img { width: 100%; height: 100%; object-fit: cover; }
.menu-image .placeholder-image { min-height: unset; height: 100%; border: none; border-radius: 0; }
.menu-info { padding: 20px; }
.menu-info h3 { font-size: 1.15rem; margin-bottom: 8px; }
.menu-info p { color: var(--text-secondary); font-size: 0.9rem; }

/* ========== CATEGORY CARDS ========== */
.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.category-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    position: relative;
    transition: var(--transition);
}
.category-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-hover);
}
.category-card.featured {
    border-color: var(--accent);
    box-shadow: 0 0 40px var(--accent-light);
}
.card-ribbon {
    position: absolute;
    top: 16px; right: -8px;
    background: var(--accent);
    color: #fff;
    padding: 4px 16px;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 4px 0 0 4px;
}
.card-ribbon::after {
    content: '';
    position: absolute;
    right: 0; bottom: -8px;
    border: 4px solid var(--accent-hover);
    border-right-color: transparent;
    border-bottom-color: transparent;
}
.category-icon { font-size: 2.5rem; margin-bottom: 16px; }
.category-name { font-size: 1.3rem; font-weight: 700; margin-bottom: 4px; }
.category-menu-count {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 12px;
}
.category-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 20px;
}
.category-price {
    margin-bottom: 20px;
    padding: 12px;
    background: var(--accent-light);
    border-radius: var(--radius-sm);
}
.price-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 4px;
}
.price-hidden {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent);
}
.category-features {
    list-style: none;
    text-align: left;
    margin-bottom: 24px;
}
.category-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
}
.category-features li svg { color: var(--accent); flex-shrink: 0; }

/* ========== PACKAGES ========== */
.discount-banner {
    background: linear-gradient(135deg, rgba(232,66,26,0.12), rgba(249,115,22,0.1));
    border: 1px solid rgba(232,66,26,0.3);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    margin-bottom: 40px;
}
.discount-badge {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(245, 158, 11, 0.2);
    color: #fbbf24;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 12px;
}
.discount-content h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}
.slot-counter {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}
.slot-label { color: var(--text-secondary); font-size: 0.9rem; }
.slot-dots { display: flex; gap: 6px; }
.slot-dot {
    width: 12px; height: 12px;
    border-radius: 50%;
    transition: var(--transition);
}
.slot-dot.taken { background: var(--text-muted); opacity: 0.4; }
.slot-dot.available {
    background: var(--accent);
    animation: dotPulse 2s ease-in-out infinite;
}
@keyframes dotPulse {
    0%, 100% { box-shadow: 0 0 0 0 var(--accent-glow); }
    50% { box-shadow: 0 0 0 4px rgba(232, 66, 26, 0); }
}
.slot-remaining { color: var(--text-secondary); font-size: 0.9rem; }
.slot-remaining strong { color: var(--accent); }

.package-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.package-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.package-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-hover);
}
.package-card.featured {
    border-color: var(--accent);
    box-shadow: 0 0 40px var(--accent-light);
}
.package-header { margin-bottom: 24px; }
.package-header h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 8px; }
.package-header p { color: var(--text-secondary); font-size: 0.95rem; }
.package-features {
    list-style: none;
    margin-bottom: 24px;
    flex: 1;
}
.package-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.95rem;
    color: var(--text-secondary);
}
.package-features li svg { flex-shrink: 0; margin-top: 3px; }

/* ========== ADVANTAGES ========== */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.advantage-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: var(--transition);
}
.advantage-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
}
.advantage-icon {
    width: 56px; height: 56px;
    background: var(--accent-light);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.advantage-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.advantage-card p { color: var(--text-secondary); font-size: 0.9rem; }

/* ========== GALLERY ========== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border);
}
.gallery-item img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    transition: var(--transition);
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-video { grid-column: span 2; }
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}
.video-wrapper iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
}
.gallery-caption {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 12px 16px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    font-size: 0.85rem;
    color: #fff;
}

/* ========== DOCS SECTION ========== */
.docs-block { margin-bottom: 48px; }
.docs-block:last-child { margin-bottom: 0; }

.docs-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    background: var(--accent-light);
    border: 1px solid rgba(232, 66, 26, 0.2);
    padding: 5px 12px;
    border-radius: 100px;
    margin-bottom: 16px;
}
.docs-label-count {
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--text-muted);
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 2px 8px;
    border-radius: 100px;
    text-transform: none;
    letter-spacing: 0;
    margin-left: 4px;
}
.docs-label-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 16px;
}

/* — Featured brand photos — */
.docs-featured-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.docs-featured-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: zoom-in;
    background: var(--bg-card);
    border: 1px solid var(--border);
    aspect-ratio: 16/10;
}
.docs-featured-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.docs-featured-item:hover img { transform: scale(1.04); }
.docs-featured-caption {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 20px 18px 16px;
    background: linear-gradient(transparent, rgba(0,0,0,0.82));
}
.docs-featured-caption span {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}
.docs-featured-caption small {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.65);
    margin-top: 2px;
    display: block;
}
.docs-featured-item .photo-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 14px;
    background: rgba(232, 66, 26, 0.12);
    opacity: 0;
    transition: opacity 0.3s;
}
.docs-featured-item:hover .photo-overlay { opacity: 1; }

/* — Instagram Reels — */
.ig-reels-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 840px; /* cap width — reels don't need full container */
}
.ig-reel-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 200px;
    background: #111;
    border: 1px solid var(--border);
}
/* prevent IG embeds from overflowing */
.ig-reel-wrapper .instagram-media { width: 100% !important; max-width: 100% !important; }

/* — Local Videos — */
.docs-videos-wrap {
    display: flex;
    justify-content: center;
}
.docs-videos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 100%;
    max-width: 640px; /* portrait videos don't need full width */
}
.docs-video-card {
    background: #000;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.docs-video-card video {
    width: 100%;
    display: block;
    aspect-ratio: 9/16;
    object-fit: cover;
    max-height: 420px;
    background: #000;
}
.docs-video-caption {
    padding: 10px 14px;
    font-size: 0.82rem;
    color: var(--text-secondary);
    text-align: center;
    background: var(--bg-card);
    margin: 0;
}

/* — Photo Grid (3-col uniform squares) — */
.docs-photos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.docs-photo-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: zoom-in;
    background: var(--bg-card);
    border: 1px solid var(--border);
    aspect-ratio: 1 / 1;         /* uniform square */
}
.docs-photo-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.45s ease;
}
.docs-photo-item:hover img { transform: scale(1.07); }
.docs-photo-caption {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 28px 10px 10px;
    background: linear-gradient(transparent, rgba(0,0,0,0.78));
    font-size: 0.78rem;
    color: #fff;
    font-weight: 500;
    opacity: 0;
    transition: opacity 0.3s;
}
.docs-photo-item:hover .docs-photo-caption { opacity: 1; }
.photo-overlay {
    position: absolute;
    top: 10px; right: 10px;
    width: 32px; height: 32px;
    background: rgba(0,0,0,0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
    backdrop-filter: blur(4px);
}
.docs-photo-item:hover .photo-overlay,
.docs-featured-item:hover .photo-overlay { opacity: 1; }

/* — Lightbox — */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.93);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 16px;
    cursor: zoom-out;
}
.lightbox.active { display: flex; }
.lightbox-close {
    position: absolute;
    top: 16px; right: 20px;
    background: rgba(255,255,255,0.1);
    border: none;
    color: #fff;
    font-size: 1.6rem;
    cursor: pointer;
    line-height: 1;
    width: 40px; height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    z-index: 1;
}
.lightbox-close:hover { background: rgba(255,255,255,0.2); }
.lightbox-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: default;
    max-width: 92vw;
}
.lightbox-inner img {
    max-width: 88vw;
    max-height: 82vh;
    object-fit: contain;
    border-radius: var(--radius);
    box-shadow: 0 8px 60px rgba(0,0,0,0.8);
    opacity: 0;
    transition: opacity 0.25s ease;
}
.lightbox-inner img.loaded { opacity: 1; }
.lightbox-inner p {
    margin-top: 14px;
    color: rgba(255,255,255,0.65);
    font-size: 0.88rem;
    text-align: center;
}

/* ========== TESTIMONIALS ========== */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: var(--transition);
}
.testimonial-card:hover { border-color: var(--border-hover); }
.testimonial-stars { display: flex; gap: 2px; margin-bottom: 16px; }
.testimonial-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    font-weight: 700;
    color: var(--accent);
}
.author-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-author strong { display: block; font-size: 0.9rem; }
.testimonial-author small { color: var(--text-muted); font-size: 0.8rem; }

/* ========== FAQ ========== */
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}
.faq-item.active { border-color: var(--accent); }
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 20px;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
}
.faq-question svg { flex-shrink: 0; transition: var(--transition); color: var(--text-muted); }
.faq-item.active .faq-question svg { transform: rotate(180deg); color: var(--accent); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.faq-answer p {
    padding: 0 20px 18px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ========== WA FORM ========== */
.wa-form-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
}
.wa-form-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}
.wa-icon {
    width: 48px; height: 48px;
    background: rgba(37, 211, 102, 0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.wa-form-header h2 { font-size: 1.3rem; margin-bottom: 4px; }
.wa-form-header p { color: var(--text-secondary); font-size: 0.85rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-input);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 0.95rem;
    font-family: inherit;
    transition: var(--transition);
    appearance: none;
    -webkit-appearance: none;
}
.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23737373' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-light);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-note {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-top: 12px;
}

/* ========== FOOTER ========== */
.footer {
    padding: 32px 0;
    border-top: 1px solid var(--border);
}
.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}
.footer-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
}
.footer-content p { color: var(--text-muted); font-size: 0.85rem; }

/* ========== PHOTO TABS ========== */
.photo-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}
.photo-tab {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 999px;
    color: var(--text-secondary);
    font-size: 0.88rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}
.photo-tab:hover {
    border-color: var(--accent);
    color: var(--text-primary);
    background: var(--accent-light);
}
.photo-tab.active {
    background: var(--grad);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 4px 16px var(--accent-glow);
}
.photo-tab .tab-count {
    background: rgba(255,255,255,0.2);
    padding: 1px 7px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
}
.photo-tab:not(.active) .tab-count {
    background: var(--border);
    color: var(--text-muted);
}
/* hide/show animation for filtered items */
.docs-photo-item {
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.docs-photo-item.hidden {
    display: none;
}

/* ========== FILMSTRIP (video carousel) ========== */
.filmstrip-outer {
    position: relative;
}
.filmstrip-wrap {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0;
}
.filmstrip {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;       /* Firefox */
    -ms-overflow-style: none;    /* IE */
    scroll-behavior: smooth;
    padding: 8px 4px;
    flex: 1;
}
.filmstrip::-webkit-scrollbar { display: none; }
.filmstrip-item {
    flex: 0 0 260px;
    scroll-snap-align: start;
    background: #000;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    overflow: hidden;
    position: relative;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.filmstrip-item:hover {
    border-color: var(--accent);
    box-shadow: 0 4px 24px var(--accent-glow);
}
.filmstrip-item video {
    width: 100%;
    display: block;
    aspect-ratio: 9 / 16;
    max-height: 340px;
    object-fit: cover;
    background: #000;
}
.filmstrip-caption {
    padding: 8px 12px;
    font-size: 0.78rem;
    color: var(--text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.filmstrip-btn {
    flex: 0 0 auto;
    width: 40px; height: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 2;
    flex-shrink: 0;
}
.filmstrip-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
    box-shadow: 0 4px 16px var(--accent-glow);
}
.filmstrip-btn:disabled {
    opacity: 0.3;
    cursor: default;
    pointer-events: none;
}
.filmstrip-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 12px;
}
.filmstrip-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--border);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: var(--transition);
}
.filmstrip-dot.active {
    background: var(--accent);
    width: 18px;
    border-radius: 3px;
}

/* ========== WA FLOAT — hidden (CTA via form only) ========== */
.wa-float { display: none; }

/* ========== BACK TO TOP ========== */
.back-to-top {
    position: fixed;
    bottom: 28px; right: 28px;
    width: 48px; height: 48px;
    background: var(--grad);
    border: none;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 20px var(--accent-glow);
}
.back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 28px var(--accent-glow);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .category-grid,
    .menu-grid,
    .advantages-grid,
    .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-video { grid-column: span 2; }
}

@media (max-width: 768px) {
    .section { padding: 60px 0; }
    .nav-toggle { display: flex; }
    .nav-links {
        position: fixed;
        top: 72px; left: 0; right: 0;
        background: rgba(10, 10, 10, 0.98);
        flex-direction: column;
        padding: 16px;
        transform: translateY(-120%);
        transition: var(--transition);
        border-bottom: 1px solid var(--border);
    }
    .nav-links.active { transform: translateY(0); }
    .nav-links a { width: 100%; padding: 12px 16px; }
    .about-grid { grid-template-columns: 1fr; }
    .category-grid,
    .menu-grid,
    .advantages-grid,
    .testimonial-grid,
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-video { grid-column: span 1; }
    .package-grid { grid-template-columns: 1fr; }
    /* Docs mobile */
    .docs-featured-grid { grid-template-columns: 1fr; }
    .docs-featured-item { aspect-ratio: 4/3; }
    .ig-reels-grid { grid-template-columns: 1fr; max-width: 100%; }
    .docs-videos-grid { grid-template-columns: repeat(2, 1fr); max-width: 100%; }
    .docs-video-card video { max-height: 280px; }
    .docs-photos-grid { grid-template-columns: repeat(3, 1fr); gap: 6px; }
    /* Filmstrip mobile */
    .filmstrip-item { flex: 0 0 200px; }
    .filmstrip-item video { max-height: 280px; }
    .filmstrip-btn { width: 34px; height: 34px; }
    /* Photo tabs mobile */
    .photo-tabs { gap: 8px; }
    .form-row { grid-template-columns: 1fr; }
    .hero-stats { gap: 24px; }
    .wa-form-card { padding: 24px; }
    .wa-form-header { flex-direction: column; text-align: center; }
    .footer-content { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .docs-photos-grid { grid-template-columns: repeat(2, 1fr); gap: 6px; }
    .docs-videos-grid { grid-template-columns: 1fr; }
    .docs-video-card video { max-height: 360px; aspect-ratio: 9/16; }
    .docs-featured-item { aspect-ratio: 4/3; }
    .docs-featured-grid { gap: 10px; }
    /* Filmstrip tiny */
    .filmstrip-item { flex: 0 0 160px; }
    .filmstrip-item video { max-height: 240px; }
    .filmstrip-btn { display: none; }   /* swipe only on small screens */
    .photo-tab { padding: 7px 12px; font-size: 0.82rem; }
}

/* ========== ANIMATIONS ========== */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
