/* ============================================================
   DQ VISA & EVENTS — PREMIUM EDITORIAL STYLESHEET
   ============================================================ */

/* ─── CUSTOM PROPERTIES ─────────────────────────────────────── */

:root {
    --c-primary: #2A0A0B;
    --c-primary-light: #4A1516;
    --c-primary-mid: #5C1A1B;
    --c-primary-dark: #1A0506;
    --c-gold: #C9A227;
    --c-gold-light: #E8C84C;
    --c-gold-dark: #8B6F14;
    --c-gold-muted: rgba(201, 162, 39, 0.08);
    --c-cream: #FAF7F2;
    --c-champagne: #F0E6D6;
    --c-warm-gray: #E8E0D4;
    --c-charcoal: #0F0F0F;
    --c-dark: #1A1A1A;
    --c-white: #FFFFFF;
    --c-text: #2D2420;
    --c-muted: #7A6B5E;
    --c-border: rgba(201, 162, 39, 0.12);
    --c-border-subtle: rgba(0, 0, 0, 0.06);
    --c-shadow: rgba(42, 10, 11, 0.08);

    --f-display: 'Playfair Display', Georgia, serif;
    --f-body: 'Inter', system-ui, sans-serif;

    --t-xs: 0.7rem;
    --t-sm: 0.82rem;
    --t-base: 0.95rem;
    --t-lg: 1.1rem;
    --t-xl: 1.25rem;
    --t-2xl: 1.6rem;
    --t-3xl: 2.2rem;
    --t-4xl: 3rem;
    --t-5xl: 4rem;
    --t-6xl: 5.5rem;
    --t-7xl: 7rem;

    --s-section: clamp(100px, 12vh, 160px);
    --s-section-sm: clamp(60px, 8vh, 100px);

    --r-sm: 4px;
    --r-md: 8px;
    --r-lg: 16px;
    --r-xl: 24px;
    --r-2xl: 32px;
    --r-full: 9999px;

    --sh-sm: 0 2px 8px rgba(0,0,0,0.04);
    --sh-md: 0 8px 30px rgba(0,0,0,0.06);
    --sh-lg: 0 20px 60px rgba(0,0,0,0.08);
    --sh-xl: 0 40px 80px rgba(0,0,0,0.12);
    --sh-gold: 0 8px 40px rgba(201, 162, 39, 0.15);

    --tr-fast: 200ms cubic-bezier(0.25, 0.1, 0.25, 1);
    --tr-base: 400ms cubic-bezier(0.25, 0.1, 0.25, 1);
    --tr-slow: 600ms cubic-bezier(0.25, 0.1, 0.25, 1);
    --tr-spring: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);

    --z-base: 1;
    --z-card: 10;
    --z-drop: 20;
    --z-sticky: 100;
    --z-overlay: 200;
    --z-modal: 300;

    --grid-gap: clamp(16px, 2vw, 32px);
    --container-max: 1320px;
    --container-narrow: 960px;
}

/* ─── RESET & BASE ────────────────────────────────────────── */

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

html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

html.lenis, html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

body {
    font-family: var(--f-body);
    background: var(--c-cream);
    color: var(--c-text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    text-decoration: none;
    color: inherit;
}

button {
    cursor: pointer;
    font-family: inherit;
    border: none;
    background: none;
}

input, textarea, select {
    font-family: inherit;
}

ul, ol {
    list-style: none;
}

:focus-visible {
    outline: 2px solid var(--c-gold);
    outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ─── NOISE TEXTURE OVERLAY ──────────────────────────────────── */

body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 9000;
    pointer-events: none;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 200px;
}

/* ─── TYPOGRAPHY ──────────────────────────────────────────── */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--f-display);
    color: var(--c-primary);
    line-height: 1.05;
    font-weight: 600;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.8rem, 7vw, var(--t-7xl));
    line-height: 0.95;
}

h2 {
    font-size: clamp(2.2rem, 5vw, var(--t-5xl));
    line-height: 1.0;
}

h3 {
    font-size: clamp(1.5rem, 3vw, var(--t-3xl));
}

h4 {
    font-size: var(--t-xl);
    font-weight: 700;
}

h5 {
    font-size: var(--t-lg);
}

p {
    line-height: 1.75;
    color: var(--c-muted);
    font-size: var(--t-base);
}

.text-gold { color: var(--c-gold); }
.text-maroon { color: var(--c-primary); }
.text-muted { color: var(--c-muted); }
.text-center { text-align: center; }

.label-text {
    font-family: var(--f-body);
    font-size: var(--t-xs);
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--c-gold);
    display: inline-block;
}

/* ─── LAYOUT ──────────────────────────────────────────────── */

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 48px);
}

.container-sm {
    max-width: var(--container-narrow);
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 48px);
}

.section {
    padding: var(--s-section) 0;
    position: relative;
}

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

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hidden { display: none; }

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

/* ─── BACKGROUNDS ─────────────────────────────────────────── */

.bg-cream { background-color: var(--c-cream); }
.bg-champagne { background-color: var(--c-champagne); }
.bg-maroon { background-color: var(--c-primary); color: var(--c-white); }
.bg-charcoal { background-color: var(--c-charcoal); color: var(--c-white); }
.bg-white { background-color: var(--c-white); }
.bg-dark { background-color: var(--c-dark); color: var(--c-white); }

/* ─── NAVBAR ──────────────────────────────────────────────── */

#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-sticky);
    background: transparent;
    transition: background 0.5s ease, box-shadow 0.5s ease, backdrop-filter 0.5s ease;
}

#navbar.scrolled {
    background: rgba(15, 15, 15, 0.85);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    box-shadow: 0 1px 0 rgba(255,255,255,0.05);
}

.navbar-container {
    padding-top: 20px;
    padding-bottom: 20px;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.navbar-brand-text {
    font-family: var(--f-display);
    font-size: var(--t-lg);
    font-weight: 600;
    color: var(--c-gold);
    letter-spacing: -0.01em;
}

.navbar-logo {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 4px;
}

.navbar-links {
    display: none;
    align-items: center;
    gap: 36px;
}

.navbar-links li a {
    position: relative;
    font-size: var(--t-sm);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    padding: 4px 0;
    transition: color 0.3s ease;
    letter-spacing: 0.02em;
}

.navbar-links li a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--c-gold);
    transition: width 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.navbar-links li a:hover::after,
.navbar-links li a:focus-visible::after {
    width: 100%;
}

.navbar-links li a:hover,
.navbar-links li a:focus-visible {
    color: var(--c-white);
}

.navbar-actions {
    display: none;
    align-items: center;
    gap: 16px;
}

.navbar-wa {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: var(--r-full);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--c-gold);
    transition: all 0.3s ease;
}

.navbar-wa:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(201, 162, 39, 0.3);
}

.navbar-wa i, .navbar-wa svg {
    width: 18px;
    height: 18px;
}

.navbar-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 10px;
}

.navbar-toggle span {
    display: block;
    width: 100%;
    height: 1.5px;
    background: var(--c-gold);
    border-radius: 2px;
    transition: transform 0.4s cubic-bezier(0.25, 0.1, 0.25, 1), opacity 0.3s ease;
}

.navbar-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}

.navbar-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.navbar-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

.navbar-mobile {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--c-charcoal);
    display: none;
    flex-direction: column;
    padding: 32px 24px;
    gap: 4px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.navbar-mobile.active {
    display: flex;
}

.navbar-mobile a {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--t-base);
    font-weight: 500;
    padding: 14px 20px;
    border-radius: var(--r-md);
    transition: all 0.2s ease;
}

.navbar-mobile a:hover {
    background: rgba(255, 255, 255, 0.04);
    color: var(--c-gold);
}

.navbar-mobile .btn {
    margin-top: 16px;
    text-align: center;
    justify-content: center;
}

@media (min-width: 1024px) {
    .navbar-links { display: flex; }
    .navbar-actions { display: flex; }
    .navbar-toggle { display: none; }
}

/* ─── HERO ────────────────────────────────────────────────── */

.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--c-charcoal);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transform: scale(1.05);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(15,15,15,0.4) 0%, rgba(15,15,15,0.1) 40%, rgba(15,15,15,0.7) 100%),
        linear-gradient(90deg, rgba(42,10,11,0.6) 0%, transparent 60%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 140px;
    padding-bottom: 80px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    min-height: 100vh;
    min-height: 100dvh;
    justify-content: center;
}

.hero-text {
    width: 100%;
    max-width: 700px;
}

.hero-text .label-text {
    margin-bottom: 20px;
    opacity: 0.9;
}

.hero-text h1 {
    color: var(--c-white);
    margin-bottom: 0;
    font-weight: 600;
    letter-spacing: -0.03em;
}

.hero-text h1 .text-gold {
    color: var(--c-gold);
    font-style: italic;
}

.hero-text p {
    color: rgba(255, 255, 255, 0.6);
    font-size: clamp(0.92rem, 1.2vw, 1.05rem);
    max-width: 480px;
    margin-top: 24px;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 36px;
}

.hero-visual {
    display: none;
}

.hero-stats {
    border: 1px solid rgba(201, 162, 39, 0.2);
    border-radius: var(--r-xl);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: rgba(15, 15, 15, 0.4);
    backdrop-filter: blur(20px);
}

.hero-stat-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--r-lg);
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hero-stat-number {
    font-family: var(--f-display);
    font-size: var(--t-2xl);
    font-weight: 600;
    color: var(--c-gold);
    letter-spacing: -0.02em;
}

.hero-stat-label {
    font-size: var(--t-xs);
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 3;
}

@media (min-width: 768px) {
    .hero-scroll { display: flex; }
}

.hero-scroll span {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.68rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.hero-scroll-indicator {
    width: 22px;
    height: 36px;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    border-radius: 11px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 8px;
}

.hero-scroll-dot {
    width: 3px;
    height: 8px;
    background: var(--c-gold);
    border-radius: 3px;
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(14px); opacity: 0.2; }
}

.hero-dots {
    position: absolute;
    bottom: 40px;
    right: 48px;
    display: flex;
    z-index: 3;
    gap: 8px;
    flex-direction: column;
}

.hero-dots button {
    width: 3px;
    height: 20px;
    border-radius: 3px;
    border: none;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.4s ease;
    padding: 0;
}

.hero-dots button.active {
    background: var(--c-gold);
    height: 40px;
}

.hero-dots button:hover {
    background: rgba(255, 255, 255, 0.5);
}

@media (min-width: 640px) {
    .hero-cta { flex-direction: row; }
}

@media (min-width: 1024px) {
    .hero-content {
        flex-direction: row;
        align-items: center;
        gap: 60px;
    }
    .hero-text { width: 55%; }
    .hero-visual {
        display: block;
        width: 40%;
        margin-left: auto;
    }
}

/* ─── TRUST BAR ───────────────────────────────────────────── */

.trust-bar {
    background: var(--c-charcoal);
    padding: 28px 0;
    border-top: 1px solid rgba(255,255,255,0.04);
}

.trust-bar-inner {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.trust-item i, .trust-item svg {
    width: 20px;
    height: 20px;
    color: var(--c-gold);
    opacity: 0.8;
}

.trust-item span {
    color: rgba(255, 255, 255, 0.5);
    font-size: var(--t-xs);
    font-weight: 500;
    letter-spacing: 0.03em;
}

/* ─── ABOUT ───────────────────────────────────────────────── */

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

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 80px;
    }
}

.about-quote {
    border-left: 3px solid var(--c-gold);
    background: var(--c-white);
    border-radius: var(--r-lg);
    padding: 32px 36px;
    margin-bottom: 32px;
    color: var(--c-primary);
    font-style: italic;
    font-family: var(--f-display);
    font-size: 1.15rem;
    line-height: 1.8;
    box-shadow: var(--sh-sm);
}

.about-desc {
    font-size: var(--t-base);
    color: var(--c-muted);
    line-height: 1.9;
    margin-bottom: 28px;
}

.about-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.about-stat-card {
    background: var(--c-white);
    text-align: center;
    padding: 36px 24px;
    border-radius: var(--r-xl);
    transition: transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1), box-shadow 0.5s ease;
    border: 1px solid var(--c-border-subtle);
}

.about-stat-card .label-text {
    display: block;
    margin-bottom: 10px;
    font-size: 0.65rem;
}

.about-stat-card h3 {
    font-size: var(--t-3xl);
    letter-spacing: -0.03em;
}

.about-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--sh-lg);
}

/* ─── SERVICES ────────────────────────────────────────────── */

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 640px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .services-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1280px) {
    .services-grid { grid-template-columns: repeat(4, 1fr); }
}

.services-grid .card {
    border-radius: var(--r-xl);
    overflow: hidden;
    border: 1px solid var(--c-border-subtle);
    background: var(--c-white);
    transition: all 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.services-grid .card:hover {
    transform: translateY(-6px);
    box-shadow: var(--sh-lg);
    border-color: rgba(201, 162, 39, 0.2);
}

.service-icon {
    background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-light) 100%);
    padding: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.service-icon::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(201,162,39,0.15), transparent 60%);
}

.service-icon i, .service-icon svg {
    width: 28px;
    height: 28px;
    color: var(--c-gold);
    position: relative;
    z-index: 1;
}

.services-grid .card-body {
    padding: 28px;
}

.services-grid .card-body h4 {
    color: var(--c-primary);
    font-size: 1rem;
    margin-bottom: 10px;
    font-family: var(--f-body);
    font-weight: 700;
}

.services-grid .card-body p {
    color: var(--c-muted);
    font-size: var(--t-sm);
    line-height: 1.7;
    margin-bottom: 0;
}

.services-grid .card-body .btn {
    margin-top: 16px;
}

/* ─── VISA HIGHLIGHT ──────────────────────────────────────── */

.visa-highlight {
    background: var(--c-primary) !important;
    position: relative;
    overflow: hidden;
}

.visa-highlight::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 30%, rgba(201,162,39,0.06), transparent 70%);
}

.visa-highlight h2 { color: var(--c-white); }

.visa-highlight-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
}

@media (min-width: 768px) {
    .visa-highlight-grid {
        grid-template-columns: 1fr 1fr;
        gap: 80px;
    }
}

.visa-highlight-text .label-text {
    margin-bottom: 20px;
}

.visa-highlight-text h2 {
    margin-bottom: 28px;
}

.visa-features {
    margin-bottom: 36px;
}

.visa-features li {
    position: relative;
    color: rgba(255, 255, 255, 0.8);
    font-size: var(--t-base);
    padding: 10px 0 10px 28px;
    line-height: 1.6;
}

.visa-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: var(--r-full);
    background: var(--c-gold);
    opacity: 0.8;
}

.visa-process-card {
    background: var(--c-white);
    padding: 40px;
    border-radius: var(--r-2xl);
    box-shadow: var(--sh-xl);
}

.visa-process-card h3 {
    font-family: var(--f-display);
    color: var(--c-primary);
    margin-bottom: 32px;
    font-size: var(--t-xl);
}

.steps-flow {
    position: relative;
    padding-left: 32px;
    border-left: 1.5px solid rgba(201, 162, 39, 0.3);
}

.step-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 0;
}

.step-number {
    position: absolute;
    left: -44px;
    width: 24px;
    height: 24px;
    background: var(--c-gold);
    border-radius: var(--r-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--c-primary);
}

.step-text {
    color: var(--c-text);
    font-size: var(--t-sm);
    font-weight: 500;
}

/* ─── GALLERY ─────────────────────────────────────────────── */

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

.gallery-filter {
    padding: 10px 24px;
    border-radius: var(--r-full);
    font-size: var(--t-sm);
    font-weight: 500;
    border: 1px solid var(--c-border);
    background: var(--c-white);
    color: var(--c-muted);
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-filter.active,
.gallery-filter:hover {
    background: var(--c-primary);
    color: var(--c-gold);
    border-color: var(--c-primary);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

@media (min-width: 768px) {
    .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
}

@media (min-width: 1280px) {
    .gallery-grid { grid-template-columns: repeat(4, 1fr); gap: 12px; }
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--r-lg);
    cursor: pointer;
}

.gallery-thumb {
    aspect-ratio: 1/1;
    overflow: hidden;
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.gallery-item:hover .gallery-thumb img {
    transform: scale(1.12);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(42,10,11,0.9) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 24px;
    gap: 8px;
}

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

.gallery-overlay i, .gallery-overlay svg {
    width: 20px;
    height: 20px;
    color: var(--c-white);
}

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

/* ─── PACKAGES ────────────────────────────────────────────── */

.pkg-toggle {
    display: flex;
    justify-content: center;
    gap: 2px;
    margin-bottom: 48px;
    background: var(--c-white);
    border-radius: var(--r-full);
    padding: 4px;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid var(--c-border-subtle);
}

.pkg-toggle-btn {
    flex: 1;
    padding: 10px 20px;
    border-radius: var(--r-full);
    font-size: var(--t-sm);
    font-weight: 600;
    background: transparent;
    color: var(--c-muted);
    cursor: pointer;
    transition: all 0.3s ease;
}

.pkg-toggle-btn.active {
    background: var(--c-primary);
    color: var(--c-gold);
}

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

@media (min-width: 768px) {
    .packages-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .packages-grid { grid-template-columns: repeat(4, 1fr); }
}

.pkg-card {
    text-align: center;
    border-radius: var(--r-2xl);
    overflow: hidden;
    border: 1px solid var(--c-border-subtle);
    background: var(--c-white);
    transition: all 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.pkg-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--sh-lg);
}

.pkg-header {
    padding: 32px 24px;
    text-align: center;
}

.pkg-header .badge { margin-bottom: 14px; }

.pkg-header h3 {
    font-size: var(--t-2xl);
    margin-bottom: 8px;
}

.pkg-price {
    font-family: var(--f-display);
    font-size: var(--t-3xl);
    font-weight: 600;
    color: var(--c-primary);
    letter-spacing: -0.02em;
}

.pkg-period {
    font-size: var(--t-xs);
    color: var(--c-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.pkg-header--bronze { background: var(--c-champagne); }

.pkg-header--silver { background: var(--c-primary); }
.pkg-header--silver h3 { color: var(--c-gold); }
.pkg-header--silver .pkg-price { color: var(--c-white); }
.pkg-header--silver .pkg-period { color: rgba(255,255,255,0.5); }

.pkg-header--gold { background: var(--c-champagne); }

.pkg-header--platinum { background: var(--c-charcoal); }
.pkg-header--platinum h3 { color: var(--c-gold); }
.pkg-header--platinum .pkg-price { color: var(--c-white); }
.pkg-header--platinum .pkg-period { color: rgba(255,255,255,0.5); }

.pkg-featured {
    border: 1.5px solid var(--c-gold);
    box-shadow: var(--sh-gold);
    transform: scale(1.02);
}

.pkg-features {
    list-style: none;
    text-align: left;
    padding: 0;
}

.pkg-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 0;
    font-size: var(--t-sm);
    color: var(--c-text);
    border-bottom: 1px solid var(--c-border-subtle);
}

.pkg-features li:last-child { border-bottom: none; }
.pkg-features li svg { flex-shrink: 0; }

.pkg-card .card-footer {
    display: flex;
    justify-content: center;
}

.pkg-card .card-footer .btn {
    width: 100%;
    justify-content: center;
}

.packages-note {
    text-align: center;
    font-size: var(--t-xs);
    color: var(--c-muted);
    margin-top: 40px;
    letter-spacing: 0.02em;
}

/* ─── TESTIMONIALS ────────────────────────────────────────── */

.testimonials-wrap {
    position: relative;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
}

.testimonial-card {
    flex-shrink: 0;
    width: 100%;
    padding: 0 10px;
}

@media (min-width: 768px) { .testimonial-card { width: 50%; } }
@media (min-width: 1024px) { .testimonial-card { width: 33.333%; } }

.testimonial-card .card {
    padding: 36px;
    height: 100%;
    position: relative;
    border-radius: var(--r-2xl);
    border: 1px solid var(--c-border-subtle);
    background: var(--c-white);
}

.testimonial-card .card::before {
    content: '\201C';
    position: absolute;
    top: 20px;
    right: 28px;
    font-size: 4rem;
    font-family: var(--f-display);
    color: rgba(201, 162, 39, 0.1);
    line-height: 1;
}

.testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 20px;
}

.testimonial-text {
    font-style: italic;
    color: var(--c-text);
    line-height: 1.8;
    font-size: var(--t-base);
    margin: 0 0 28px;
}

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

.testimonial-author strong {
    display: block;
    color: var(--c-primary);
    font-size: var(--t-sm);
}

.testimonial-author span:not(.badge) {
    font-size: var(--t-xs);
    color: var(--c-muted);
}

.slider-prev, .slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: var(--r-full);
    background: var(--c-white);
    border: 1px solid var(--c-border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: var(--z-card);
    transition: all 0.3s ease;
    box-shadow: var(--sh-md);
}

.slider-prev { left: 0; }
.slider-next { right: 0; }

.slider-prev:hover, .slider-next:hover {
    background: var(--c-primary);
    border-color: var(--c-primary);
    transform: translateY(-50%) scale(1.05);
}

.slider-prev:hover i, .slider-prev:hover svg,
.slider-next:hover i, .slider-next:hover svg {
    color: var(--c-gold);
}

.slider-prev i, .slider-prev svg,
.slider-next i, .slider-next svg {
    width: 18px;
    height: 18px;
    color: var(--c-primary);
    transition: color 0.3s ease;
}

.testimonials-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 36px;
}

.testimonials-dots button {
    width: 6px;
    height: 6px;
    border-radius: var(--r-full);
    border: none;
    background: rgba(42, 10, 11, 0.15);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.testimonials-dots button.active {
    background: var(--c-gold);
    width: 24px;
    border-radius: 3px;
}

/* ─── CTA BAND ────────────────────────────────────────────── */

.cta-band {
    position: relative;
    overflow: hidden;
}

.cta-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(201,162,39,0.1), transparent 60%);
}

.cta-band h2 {
    color: var(--c-white);
    margin-bottom: 16px;
    position: relative;
}

.cta-band p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 36px;
    font-size: var(--t-lg);
    position: relative;
}

.cta-band-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    position: relative;
}

/* ─── CONTACT ─────────────────────────────────────────────── */

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

@media (min-width: 1024px) {
    .contact-grid { grid-template-columns: 1fr 1.1fr; gap: 80px; }
}

.contact-intro {
    color: var(--c-muted);
    margin-bottom: 36px;
    line-height: 1.8;
}

.contact-blocks {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 36px;
}

.contact-block {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-block-icon {
    background: var(--c-primary);
    border-radius: var(--r-md);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-block-icon i, .contact-block-icon svg {
    width: 20px;
    height: 20px;
    color: var(--c-gold);
}

.contact-block strong {
    display: block;
    color: var(--c-primary);
    margin-bottom: 4px;
    font-size: var(--t-sm);
}

.contact-block span, .contact-block a {
    color: var(--c-muted);
    font-size: var(--t-sm);
    line-height: 1.6;
}

.contact-block a:hover { color: var(--c-gold); }

.contact-social p {
    color: var(--c-muted);
    font-size: var(--t-xs);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.social-row {
    display: flex;
    gap: 8px;
}

.social-btn {
    background: var(--c-white);
    border: 1px solid var(--c-border-subtle);
    border-radius: var(--r-md);
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-btn i, .social-btn svg {
    width: 18px;
    height: 18px;
    color: var(--c-muted);
    transition: color 0.3s ease;
}

.social-btn:hover {
    background: var(--c-primary);
    border-color: var(--c-primary);
}

.social-btn:hover i, .social-btn:hover svg { color: var(--c-gold); }

.social-btn--dark {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.08);
    width: 36px;
    height: 36px;
}

.social-btn--dark i, .social-btn--dark svg { color: rgba(255,255,255,0.5); }

.social-btn--dark:hover {
    background: var(--c-gold);
    border-color: var(--c-gold);
}

.social-btn--dark:hover i, .social-btn--dark:hover svg { color: var(--c-primary); }

.map-embed {
    border-radius: var(--r-xl);
    height: 200px;
    margin-top: 24px;
    overflow: hidden;
    border: 1px solid var(--c-border-subtle);
}

.map-embed iframe {
    width: 100%;
    height: 100%;
    display: block;
}

.contact-form-card {
    padding: 44px;
    border-radius: var(--r-2xl);
    box-shadow: var(--sh-lg);
    border: 1px solid var(--c-border-subtle);
    background: var(--c-white);
}

.contact-form-card h3 {
    color: var(--c-primary);
    margin-bottom: 28px;
}

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

@media (min-width: 640px) {
    .form-row { grid-template-columns: 1fr 1fr; }
    .form-row .form-group { margin-bottom: 0; }
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-checkbox input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--c-gold);
    cursor: pointer;
}

.form-checkbox label {
    font-size: var(--t-sm);
    color: var(--c-muted);
    cursor: pointer;
}

.btn-submit {
    width: 100%;
    justify-content: center;
    margin-top: 8px;
}

.btn-submit.loading { opacity: 0.6; pointer-events: none; }

.btn-submit.sent {
    background: #25D366;
    border-color: #25D366;
    color: var(--c-white);
}

.form-note {
    text-align: center;
    font-size: var(--t-xs);
    color: var(--c-muted);
    margin-top: 16px;
}

/* ─── FOOTER ──────────────────────────────────────────────── */

.site-footer {
    background: var(--c-charcoal);
}

.footer-top {
    padding: 80px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

@media (min-width: 640px) {
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 56px; }
}

.footer-logo-link { display: inline-block; }

.footer-logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.45);
    font-size: var(--t-sm);
    margin-top: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-col h5 {
    color: var(--c-gold);
    font-size: var(--t-xs);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 24px;
    font-family: var(--f-body);
    font-weight: 600;
}

.footer-col ul li { line-height: 2.6; }

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.45);
    font-size: var(--t-sm);
    transition: color 0.3s ease;
}

.footer-col ul li a:hover { color: var(--c-white); }

.footer-contact {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.footer-contact span {
    color: rgba(255, 255, 255, 0.45);
    font-size: var(--t-sm);
    line-height: 2.2;
}

.footer-bottom {
    padding: 24px 0;
}

.footer-bottom-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom-inner {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.footer-bottom-inner p {
    color: rgba(255, 255, 255, 0.3);
    font-size: var(--t-xs);
}

.footer-legal-name {
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.65rem;
    letter-spacing: 0.05em;
}

.footer-links {
    display: flex;
    gap: 8px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.3);
    font-size: var(--t-xs);
    transition: color 0.3s ease;
}

.footer-links a:hover { color: var(--c-white); }

.footer-links a + a::before {
    content: '\00B7';
    margin-right: 8px;
    color: rgba(255, 255, 255, 0.15);
}

/* ─── SECTION HEADER ──────────────────────────────────────── */

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}

.section-header .label-text {
    margin-bottom: 16px;
}

.section-header h2 {
    margin-bottom: 16px;
}

.section-header p {
    font-size: var(--t-base);
    color: var(--c-muted);
    line-height: 1.8;
}

/* ─── RESPONSIVE MOBILE ──────────────────────────────────── */

@media (max-width: 639px) {
    .hero-content {
        padding-top: 100px;
        padding-bottom: 60px;
    }

    .hero-text h1 {
        font-size: clamp(2.2rem, 10vw, 3rem);
    }

    .hero-text p {
        font-size: var(--t-sm);
        margin-top: 16px;
    }

    .hero-cta { margin-top: 24px; }

    .hero-cta .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-dots {
        right: 16px;
        bottom: 24px;
    }

    .section { padding: 64px 0; }

    .section-header { margin-bottom: 40px; }

    .trust-bar-inner { gap: 16px 28px; }

    .about-quote { padding: 24px; font-size: 1rem; }

    .about-stats-grid { gap: 10px; }
    .about-stat-card { padding: 24px 16px; }
    .about-stat-card h3 { font-size: var(--t-2xl); }

    .gallery-grid { gap: 6px; }

    .gallery-filters { gap: 6px; margin-bottom: 24px; }
    .gallery-filter { padding: 8px 16px; font-size: var(--t-xs); }

    .packages-grid { gap: 16px; }

    .pkg-header { padding: 24px 20px; }
    .pkg-price { font-size: var(--t-2xl); }

    .testimonial-card .card { padding: 28px 24px; }

    .slider-prev, .slider-next { width: 36px; height: 36px; }

    .contact-form-card { padding: 28px 24px; }

    .navbar-container { padding-top: 14px; padding-bottom: 14px; }
    .navbar-brand-text { font-size: 0.95rem; }
    .navbar-logo { width: 34px; height: 34px; }

    .wa-float { width: 50px; height: 50px; bottom: 20px; left: 20px; }

    .footer-top { padding: 48px 0; }
}

@media (min-width: 640px) and (max-width: 1023px) {
    .hero-text h1 { font-size: clamp(2.4rem, 6vw, 3.5rem); }
    .section { padding: 80px 0; }
}

@media (hover: none) and (pointer: coarse) {
    .card:hover { transform: none; box-shadow: var(--sh-sm); }
    .btn:hover { transform: none; }
    .gallery-item .gallery-overlay { opacity: 0; }
    .gallery-item:active .gallery-overlay { opacity: 1; }
}
