@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@200;300;400;600;700;900&display=swap');

:root {
    --gold: #C5A059;
    --gold-light: #E8C97A;
    --gold-dark: #8B6B2E;
    --dark: #080808;
    --dark-2: #111111;
    --dark-3: #1a1a1a;
    --glass: rgba(20, 20, 20, 0.6);
    --glass-border: rgba(197, 160, 89, 0.18);
    --text-muted: rgba(255, 255, 255, 0.5);
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

img {
    -webkit-user-drag: none;
    user-select: none;
}

button,
a {
    user-select: none;
}

body {
    font-family: 'Cairo', sans-serif;
    background: var(--dark);
    color: #fff;
    overflow-x: hidden;
}

/* ── BACKGROUND ── */
#bg-slideshow {
    position: fixed;
    inset: 0;
    z-index: -2;
    background-image: url('AUROwebsitebg.png');
    background-size: cover;
    background-position: center;
    filter: blur(0px) brightness(0.8) saturate(1.2);
    transform: scale(1.1);
    opacity: 1;
}

#bg-overlay {
    position: fixed;
    inset: 0;
    z-index: -1;
    background: radial-gradient(ellipse at 50% 0%, rgba(197, 160, 89, 0.06) 0%, transparent 70%),
        linear-gradient(180deg, rgba(8, 8, 8, .4) 0%, rgba(8, 8, 8, .7) 60%, rgba(8, 8, 8, .95) 100%);
}

/* floating gold orbs */
.orb {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
    filter: blur(80px);
    animation: orbFloat 12s ease-in-out infinite;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: rgba(197, 160, 89, .06);
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: rgba(197, 160, 89, .04);
    bottom: 10%;
    left: -80px;
    animation-delay: -5s;
}

@keyframes orbFloat {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-30px) scale(1.05);
    }
}

/* ── PARTICLES ── */
.particle {
    position: fixed;
    width: 3px;
    height: 3px;
    background: var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 5;
}

/* ── NAV ── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 20px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all .4s ease;
}

nav.scrolled {
    background: rgba(8, 8, 8, .92);
    backdrop-filter: blur(30px);
    border-bottom: 1px solid var(--glass-border);
    padding: 14px 40px;
    box-shadow: 0 4px 30px rgba(197, 160, 89, .08);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo img {
    width: 40px;
    border-radius: 10px;
    filter: drop-shadow(0 0 8px rgba(197, 160, 89, .4));
}

.nav-logo span {
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--gold);
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: rgba(255, 255, 255, .7);
    font-size: .82rem;
    letter-spacing: .5px;
    position: relative;
    transition: color .3s;
    text-decoration: none;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    right: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width .4s ease;
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a.active {
    color: var(--gold);
}

.nav-links a.active::after {
    width: 100%;
}

/* hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 26px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all .3s;
    display: block;
}

.hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-nav {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99;
    background: rgba(8, 8, 8, .97);
    backdrop-filter: blur(40px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .4s;
}

.mobile-nav.open {
    opacity: 1;
    pointer-events: all;
}

.mobile-nav a {
    font-size: 1.6rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .7);
    text-decoration: none;
    transition: color .3s;
    letter-spacing: 2px;
}

.mobile-nav a:hover {
    color: var(--gold);
}

/* ── SECTIONS ── */
section {
    min-height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 100px 20px 60px;
    position: relative;
}

/* reveal animation */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .9s ease, transform .9s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: .1s;
}

.reveal-delay-2 {
    transition-delay: .2s;
}

.reveal-delay-3 {
    transition-delay: .3s;
}

/* ── HERO ── */
#hero {
    min-height: 100vh;
    text-align: center;
    gap: 0;
}

.hero-eyebrow {
    font-size: .7rem;
    letter-spacing: 6px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold));
    max-width: 60px;
}

.hero-logo {
    width: 180px;
    border-radius: 36px;
    margin-bottom: 40px;
    box-shadow: 0 0 60px rgba(197, 160, 89, .25);
    animation: heroLogoIn 1.2s cubic-bezier(.4, 0, .2, 1) forwards;
}

@keyframes heroLogoIn {
    from {
        opacity: 0;
        transform: scale(.7) translateY(20px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.hero-title {
    font-size: clamp(1.4rem, 4vw, 2.8rem);
    font-weight: 300;
    line-height: 1.7;
    color: rgba(255, 255, 255, .85);
    letter-spacing: 3px;
    margin-bottom: 16px;
}

.hero-title strong {
    font-weight: 700;
    color: #fff;
    display: block;
    font-size: clamp(1.8rem, 5vw, 3.8rem);
    letter-spacing: 6px;
}

.hero-subtitle {
    font-size: .9rem;
    color: var(--text-muted);
    margin-bottom: 52px;
    letter-spacing: 2px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: #000;
    font-weight: 700;
    font-size: .9rem;
    letter-spacing: 2px;
    padding: 18px 44px;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    transition: all .4s ease;
    position: relative;
    overflow: hidden;
    font-family: 'Cairo', sans-serif;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #fff3, transparent);
    opacity: 0;
    transition: opacity .3s;
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(197, 160, 89, .4);
}

.btn-outline {
    background: transparent;
    color: var(--gold);
    font-weight: 600;
    font-size: .9rem;
    letter-spacing: 2px;
    padding: 16px 44px;
    border-radius: 100px;
    border: 1.5px solid rgba(197, 160, 89, .4);
    cursor: pointer;
    transition: all .4s ease;
    font-family: 'Cairo', sans-serif;
}

.btn-outline:hover {
    border-color: var(--gold);
    background: rgba(197, 160, 89, .08);
    transform: translateY(-4px);
}

/* scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: .5;
    animation: bounce 2s ease infinite;
}

.scroll-indicator span {
    font-size: .65rem;
    letter-spacing: 3px;
    color: var(--gold);
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 1.5px solid var(--gold);
    border-bottom: 1.5px solid var(--gold);
    transform: rotate(45deg);
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(8px);
    }
}

/* ── GOLD DIVIDER ── */
.gold-divider {
    width: 60px;
    height: 1.5px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 0 auto 60px;
}

/* ── STATS ── */
#stats {
    min-height: auto;
    padding: 60px 20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 24px;
    width: 100%;
    max-width: 900px;
}

.stat-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 36px 24px;
    text-align: center;
    transition: all .4s;
}

.stat-card:hover {
    border-color: var(--gold);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(197, 160, 89, .15);
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.stat-label {
    font-size: .75rem;
    color: var(--text-muted);
    letter-spacing: 2px;
    margin-top: 8px;
}

/* ── SECTION HEADER ── */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    font-size: .65rem;
    letter-spacing: 5px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 16px;
    display: block;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
}

.section-subtitle {
    font-size: .9rem;
    color: var(--text-muted);
    margin-top: 12px;
    letter-spacing: 1px;
}

/* ── PACKAGES ── */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    width: 100%;
    max-width: 1100px;
}

.pkg-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(25px);
    border-radius: 32px;
    padding: 44px 36px;
    text-align: center;
    cursor: pointer;
    position: relative;
    transition: all .5s cubic-bezier(.25, .46, .45, .94);
    overflow: hidden;
}

.pkg-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(197, 160, 89, .12) 0%, transparent 65%);
    opacity: 0;
    transition: opacity .5s;
}

.pkg-card:hover::before,
.pkg-card.selected::before {
    opacity: 1;
}

.pkg-card:hover {
    border-color: var(--gold);
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(197, 160, 89, .2);
}

.pkg-card.selected {
    border-color: var(--gold);
    background: rgba(197, 160, 89, .08);
    box-shadow: 0 0 0 2px var(--gold), 0 30px 60px rgba(197, 160, 89, .25);
}

.pkg-card.featured {
    border-color: rgba(197, 160, 89, .5);
}

.pkg-badge {
    display: inline-block;
    background: var(--gold);
    color: #000;
    font-size: .6rem;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 5px 14px;
    border-radius: 100px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.pkg-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 12px rgba(197, 160, 89, .4));
}

.pkg-name {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.pkg-cups {
    font-size: 3.5rem;
    font-weight: 200;
    color: var(--gold);
    line-height: 1;
    margin: 16px 0 4px;
}

.pkg-cups span {
    font-size: 1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, .6);
}

.pkg-desc {
    font-size: .78rem;
    color: var(--text-muted);
    letter-spacing: 1.5px;
    margin-top: 16px;
}

.pkg-features {
    margin-top: 28px;
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pkg-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .82rem;
    color: rgba(255, 255, 255, .7);
}

.pkg-feature::before {
    content: '✦';
    color: var(--gold);
    font-size: .6rem;
    flex-shrink: 0;
}

/* ── DRINKS ── */
#drinks-section {
    background: rgba(197, 160, 89, .02);
}

.drinks-info {
    font-size: .85rem;
    color: var(--text-muted);
    margin-bottom: 32px;
    letter-spacing: 1px;
}

.drinks-progress {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 44px;
    flex-wrap: wrap;
}

.dp {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(197, 160, 89, .2);
    border: 1.5px solid rgba(197, 160, 89, .3);
    transition: all .4s;
}

.dp.filled {
    background: var(--gold);
    border-color: var(--gold);
    box-shadow: 0 0 12px rgba(197, 160, 89, .6);
    transform: scale(1.2);
}

.drinks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
    width: 100%;
    max-width: 800px;
}

.drink-card {
    background: rgba(0, 0, 0, .4);
    border: 1.5px solid rgba(197, 160, 89, .15);
    border-radius: 20px;
    padding: 28px 20px;
    text-align: center;
    cursor: pointer;
    transition: all .35s ease;
    position: relative;
    overflow: hidden;
}

.drink-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(197, 160, 89, .15), transparent);
    opacity: 0;
    transition: opacity .3s;
}

.drink-card:hover::after,
.drink-card.active::after {
    opacity: 1;
}

.drink-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
}

.drink-card.active {
    background: rgba(197, 160, 89, .12);
    border-color: var(--gold);
    box-shadow: 0 0 25px rgba(197, 160, 89, .2);
}

.drink-icon {
    font-size: 2rem;
    margin-bottom: 12px;
    display: block;
}

.drink-name {
    font-size: .85rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.drink-check {
    position: absolute;
    top: 12px;
    left: 12px;
    width: 22px;
    height: 22px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .75rem;
    color: #000;
    font-weight: 700;
    opacity: 0;
    transform: scale(0);
    transition: all .3s;
}

.drink-card.active .drink-check {
    opacity: 1;
    transform: scale(1);
}

/* ── FORM ── */
.booking-form-wrap {
    width: 100%;
    max-width: 750px;
}

.form-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(30px);
    border-radius: 36px;
    padding: 52px 48px;
}

.form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 4px;
}

.field label {
    font-size: .8rem;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: .5px;
}

.field label span {
    color: #f87171;
}

.glass-input {
    background: rgba(255, 255, 255, .07);
    border: 1.5px solid rgba(197, 160, 89, .25);
    border-radius: 14px;
    padding: 15px 18px;
    color: #fff;
    font-family: 'Cairo', sans-serif;
    font-size: 15px;
    outline: none;
    width: 100%;
    transition: all .3s;
    -webkit-appearance: none;
    appearance: none;
    color-scheme: dark;
}

.glass-input:focus {
    border-color: var(--gold);
    background: rgba(255, 255, 255, .1);
    box-shadow: 0 0 0 3px rgba(197, 160, 89, .15);
}

.glass-input.err {
    border-color: #f87171;
    animation: shake .3s;
}

.glass-input::placeholder {
    color: rgba(255, 255, 255, .4);
}

.err-msg {
    font-size: .73rem;
    color: #f87171;
    display: none;
}

.field.has-error .err-msg {
    display: block;
}

.field.has-error .glass-input {
    border-color: #f87171;
}

select.glass-input {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23C5A059' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: left 16px center;
    padding-right: 44px;
}

select.glass-input option {
    background: #1a1a1a;
}

input[type="date"].glass-input::-webkit-calendar-picker-indicator,
input[type="time"].glass-input::-webkit-calendar-picker-indicator {
    filter: invert(1) sepia(1) saturate(3);
    cursor: pointer;
    opacity: .8;
}

@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-8px);
    }

    75% {
        transform: translateX(8px);
    }
}

.order-summary {
    background: rgba(197, 160, 89, .06);
    border: 1px solid rgba(197, 160, 89, .3);
    border-radius: 20px;
    padding: 24px 28px;
    margin: 28px 0;
}

.summary-title {
    font-size: .8rem;
    color: var(--gold);
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .85rem;
    padding: 6px 0;
    border-bottom: 1px solid rgba(197, 160, 89, .1);
}

.summary-row:last-child {
    border-bottom: none;
}

.summary-row .label {
    color: var(--text-muted);
}

.summary-row .val {
    font-weight: 600;
    color: #fff;
    font-size: .8rem;
    max-width: 55%;
    text-align: left;
}

/* ── GALLERY ── */
.gallery-wrap {
    width: 100%;
    max-width: 1300px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 260px;
    gap: 20px;
}

.gallery-item {
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    border: 1px solid rgba(197, 160, 89, 0.15);
    transition: all 0.4s;
}

.gallery-item:hover {
    border-color: rgba(197, 160, 89, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: block;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(8, 8, 8, 0.8) 0%, transparent 60%);
    opacity: 0;
    transition: opacity .4s;
    pointer-events: none;
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item.wide {
    grid-column: span 2;
    grid-row: span 1;
}

@media (max-width: 900px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
    }

    .gallery-item.large {
        grid-column: span 2;
        grid-row: span 2;
    }

    .gallery-item.wide {
        grid-column: span 2;
        grid-row: span 1;
    }
}

@media (max-width: 600px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 240px;
    }

    .gallery-item.large,
    .gallery-item.wide {
        grid-column: span 1;
        grid-row: span 1;
    }
}

/* lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .96);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.lightbox.open {
    display: flex;
}

.lightbox img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 16px;
    box-shadow: 0 0 80px rgba(197, 160, 89, .2);
    animation: lbIn .4s ease;
}

@keyframes lbIn {
    from {
        opacity: 0;
        transform: scale(.85);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.lb-close {
    position: fixed;
    top: 24px;
    right: 24px;
    background: var(--gold);
    color: #000;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 22px;
    font-weight: 700;
    transition: all .3s;
}

.lb-close:hover {
    transform: rotate(90deg) scale(1.1);
}

.lb-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(197, 160, 89, .2);
    border: 1px solid rgba(197, 160, 89, .4);
    border-radius: 50%;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 28px;
    color: #fff;
    transition: all .3s;
    backdrop-filter: blur(10px);
}

.lb-nav:hover {
    background: var(--gold);
    color: #000;
}

.lb-prev {
    right: 20px;
}

.lb-next {
    left: 20px;
}

/* ── FAQ ── */
.faq-wrap {
    width: 100%;
    max-width: 820px;
}

.faq-item {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: all .35s;
}

.faq-item:hover,
.faq-item.open {
    border-color: rgba(197, 160, 89, .4);
}

.faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 28px;
    cursor: pointer;
    gap: 16px;
}

.faq-q h3 {
    font-size: 1rem;
    font-weight: 600;
    flex: 1;
}

.faq-icon-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(197, 160, 89, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 22px;
    line-height: 1;
    transition: all .35s;
    flex-shrink: 0;
}

.faq-item.open .faq-icon-btn {
    transform: rotate(45deg);
    background: var(--gold);
    color: #000;
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .45s ease;
}

.faq-a-inner {
    padding: 0 28px 20px;
    color: rgba(255, 255, 255, .72);
    font-size: .9rem;
    line-height: 1.9;
}

/* ── POLICIES ── */
.policy-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    border-radius: 28px;
    padding: 40px 44px;
    width: 100%;
    max-width: 900px;
    margin-bottom: 24px;
}

.policy-item {
    border-right: 2px solid var(--gold);
    padding-right: 20px;
    padding-top: 6px;
    padding-bottom: 6px;
    margin-bottom: 24px;
}

.policy-item:last-child {
    margin-bottom: 0;
}

.policy-item h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.policy-item p,
.policy-item ul {
    font-size: .88rem;
    color: rgba(255, 255, 255, .72);
    line-height: 1.85;
}

.policy-item ul {
    list-style: none;
    padding: 0;
}

.policy-item ul li {
    padding: 4px 0;
}

.policy-item ul li::before {
    content: '• ';
    color: var(--gold);
}

/* ── CONTACT ── */
/* ── CONTACT ── */
.social-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 32px 12px 20px;
    background: rgba(20, 20, 20, 0.4);
    border: 1px solid rgba(197, 160, 89, 0.2);
    border-radius: 100px;
    backdrop-filter: blur(20px);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.5s;
}

.contact-card:hover {
    transform: translateY(-4px);
    border-color: var(--gold);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(197, 160, 89, 0.1);
    background: rgba(30, 30, 30, 0.6);
}

.contact-card:hover::before {
    opacity: 1;
}

.card-icon {
    width: 48px;
    height: 48px;
    background: rgba(197, 160, 89, 0.08);
    border: 1px solid transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.contact-card:hover .card-icon {
    background: var(--gold);
    color: #000;
    transform: rotate(10deg) scale(1.1);
    box-shadow: 0 0 15px rgba(197, 160, 89, 0.4);
}

.card-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
    z-index: 1;
}

.card-title {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    transition: color 0.3s;
    letter-spacing: 1px;
}

.card-desc {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s;
}

.contact-card:hover .card-title {
    color: var(--gold);
}

.contact-card:hover .card-desc {
    color: rgba(255, 255, 255, 0.8);
}

/* Specific Card Accents */
.contact-card.whatsapp:hover {
    border-color: #25D366;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(37, 211, 102, 0.15);
}

.contact-card.whatsapp:hover .card-icon {
    background: #25D366;
    color: #fff;
}

.contact-card.whatsapp:hover .card-title {
    color: #25D366;
}

.contact-card.instagram:hover {
    border-color: #E4405F;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(228, 64, 95, 0.15);
}

.contact-card.instagram:hover .card-icon {
    background: #E4405F;
    color: #fff;
}

.contact-card.instagram:hover .card-title {
    color: #E4405F;
}

.contact-card.tiktok:hover {
    border-color: #fff;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 255, 255, 0.15);
}

.contact-card.tiktok:hover .card-icon {
    background: #fff;
    color: #000;
}

.contact-card.tiktok:hover .card-title {
    color: #fff;
}

.contact-card.twitter:hover {
    border-color: #1DA1F2;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(29, 161, 242, 0.15);
}

.contact-card.twitter:hover .card-icon {
    background: #1DA1F2;
    color: #fff;
}

.contact-card.twitter:hover .card-title {
    color: #1DA1F2;
}

.contact-card.email:hover {
    border-color: var(--gold);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(197, 160, 89, 0.15);
}

.contact-card.email:hover .card-icon {
    background: var(--gold);
    color: #000;
}

.contact-card.email:hover .card-title {
    color: var(--gold);
}

@media (max-width: 768px) {
    .social-grid {
        flex-direction: column;
    }

    .contact-card {
        width: 100%;
        padding: 14px 24px;
    }
}


/* ── FOOTER ── */
footer {
    padding: 60px 40px 40px;
    text-align: center;
    border-top: 1px solid var(--glass-border);
}

.footer-logo {
    width: 50px;
    border-radius: 12px;
    margin-bottom: 20px;
    opacity: .7;
}

.footer-text {
    font-size: .7rem;
    color: rgba(255, 255, 255, .25);
    letter-spacing: 4px;
    text-transform: uppercase;
}

/* ── TOAST ── */
.toast {
    position: fixed;
    top: 90px;
    right: 20px;
    z-index: 2000;
    background: var(--dark-3);
    border: 1px solid var(--gold);
    border-radius: 16px;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    transform: translateX(calc(100% + 40px));
    transition: transform .5s cubic-bezier(.34, 1.56, .64, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, .5);
    max-width: 340px;
}

.toast.visible {
    transform: translateX(0);
}

.toast.success {
    border-color: #4ade80;
}

.toast.error {
    border-color: #f87171;
}

.toast-icon {
    font-size: 1.3rem;
}

.toast-msg {
    font-size: .85rem;
}

/* ── SCROLL TOP ── */
#scrollTop {
    position: fixed;
    bottom: 32px;
    left: 32px;
    z-index: 50;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px) scale(.8);
    transition: all .4s ease;
    box-shadow: 0 8px 24px rgba(197, 160, 89, .3);
}

#wa-float svg {
    transition: transform .3s ease;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.3));
    color: var(--gold);
}

#scrollTop.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

#scrollTop:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 16px 40px rgba(197, 160, 89, .4);
}

#scrollTop svg {
    width: 20px;
    height: 20px;
    fill: #000;
}

/* ── RESPONSIVE ── */
@media(max-width:900px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item.large {
        grid-column: span 1;
        grid-row: span 1;
    }

    .gallery-item {
        height: 220px;
    }
}

@media(max-width:767px) {
    nav {
        padding: 16px 20px;
    }

    nav.scrolled {
        padding: 12px 20px;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-nav {
        display: flex;
    }

    .form-card {
        padding: 36px 24px;
    }

    .form-grid-2 {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .gallery-item {
        height: 160px;
    }

    .gallery-item.large {
        grid-column: span 1;
        grid-row: span 1;
    }

    section {
        padding: 80px 16px 48px;
    }

    .step-actions {
        flex-direction: column;
        gap: 12px !important;
    }

    .step-actions button {
        width: 100% !important;
        max-width: none !important;
    }

    .auro-calendar {
        width: 100%;
        max-width: 320px;
        left: 50%;
        transform: translateX(-50%) scale(.9);
    }

    .auro-calendar.visible {
        transform: translateX(-50%) scale(1);
    }

    .packages-grid {
        grid-template-columns: 1fr;
        max-width: 440px;
    }

    .drinks-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .policy-card {
        padding: 28px 20px;
    }

    .lb-prev {
        right: 8px;
    }

    .lb-next {
        left: 8px;
    }

    .lb-nav {
        width: 40px;
        height: 40px;
        font-size: 22px;
    }
}

/* ── PRELOADER ── */
#preloader {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: #080808;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity .6s ease, visibility .6s;
}

#preloader.hide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-logo {
    width: 120px;
    border-radius: 28px;
    animation: preloaderPulse 1.8s ease-in-out infinite;
}

@keyframes preloaderPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: .7;
    }

    50% {
        transform: scale(1.08);
        opacity: 1;
    }
}

.preloader-bar {
    width: 160px;
    height: 3px;
    background: rgba(197, 160, 89, .2);
    border-radius: 4px;
    margin-top: 32px;
    overflow: hidden;
}

.preloader-fill {
    width: 0;
    height: 100%;
    background: var(--gold);
    border-radius: 4px;
    animation: preloaderFill 1.5s ease forwards;
}

@keyframes preloaderFill {
    to {
        width: 100%;
    }
}

/* ── BOOKING STEPPER ── */
#booking-stepper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 95;
    background: rgba(8, 8, 8, .95);
    backdrop-filter: blur(30px);
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 14px 20px;
    transition: transform .4s ease, opacity .4s;
}

.stepper-hidden {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

.stepper-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    opacity: .4;
    transition: all .3s;
    padding: 0 16px;
}

.stepper-step.active {
    opacity: 1;
}

.stepper-step.completed {
    opacity: .8;
}

.stepper-dot {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid rgba(197, 160, 89, .3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
    font-weight: 700;
    color: rgba(255, 255, 255, .5);
    transition: all .4s;
}

.stepper-step.active .stepper-dot {
    border-color: var(--gold);
    background: var(--gold);
    color: #000;
    box-shadow: 0 0 20px rgba(197, 160, 89, .5);
}

.stepper-step.completed .stepper-dot {
    border-color: var(--gold);
    color: var(--gold);
}

.stepper-step span {
    font-size: .65rem;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, .5);
    transition: color .3s;
}

.stepper-step.active span {
    color: var(--gold);
    font-weight: 600;
}

.stepper-step.completed span {
    color: rgba(197, 160, 89, .7);
}

.stepper-line {
    width: 48px;
    height: 2px;
    background: rgba(197, 160, 89, .15);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
    align-self: center;
    margin-bottom: 20px;
}

.stepper-line::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .5s ease;
}

.stepper-line.filled::after {
    transform: scaleX(1);
}

@media(max-width:767px) {
    .stepper-step {
        padding: 0 10px;
    }

    .stepper-dot {
        width: 30px;
        height: 30px;
        font-size: .75rem;
    }

    .stepper-line {
        width: 28px;
    }

    .stepper-step span {
        font-size: .55rem;
    }
}

/* ── BACK BUTTON ── */
.back-btn {
    background: transparent;
    border: 1.5px solid rgba(197, 160, 89, .3);
    color: var(--gold);
    font-family: 'Cairo', sans-serif;
    font-size: .82rem;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 100px;
    cursor: pointer;
    transition: all .3s;
    margin-bottom: 20px;
    align-self: flex-end;
    letter-spacing: 1px;
}

.back-btn:hover {
    border-color: var(--gold);
    background: rgba(197, 160, 89, .1);
}

@media(max-width: 767px) {
    .back-btn {
        padding: 8px 18px;
        font-size: .75rem;
        margin-bottom: 15px;
    }
}


/* ── PKG PRICE ── */
.pkg-price {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold);
    margin: 16px 0 4px;
    line-height: 1;
}

.pkg-price span {
    font-size: .9rem;
    font-weight: 400;
    color: rgba(255, 255, 255, .6);
}

.pkg-deposit {
    display: block;
    font-size: .7rem;
    font-style: normal;
    font-weight: 600;
    color: rgba(255, 255, 255, .45);
    margin-top: 6px;
    letter-spacing: .5px;
    background: rgba(197, 160, 89, .1);
    border-radius: 100px;
    padding: 4px 14px;
    display: inline-block;
}

/* ── HOW IT WORKS ── */
#how-it-works {
    min-height: auto;
    padding: 80px 20px;
}

.hiw-timeline {
    position: relative;
    width: 100%;
    max-width: 700px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.hiw-line {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 32px;
    width: 3px;
    background: rgba(197, 160, 89, .1);
    border-radius: 3px;
    z-index: 0;
}

.hiw-line::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(180deg, var(--gold), var(--gold-dark));
    border-radius: 3px;
    transition: height 1.2s cubic-bezier(.4, 0, .2, 1);
}

.hiw-line.animate::after {
    height: 100%;
}

.hiw-step {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 32px 0;
    position: relative;
    z-index: 1;
}

.hiw-icon {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    background: var(--glass);
    border: 1.5px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    transition: all .5s;
    backdrop-filter: blur(20px);
}

.hiw-step.visible .hiw-icon {
    border-color: var(--gold);
    box-shadow: 0 0 24px rgba(197, 160, 89, .3);
    animation: hiwIconPop .6s ease forwards;
}

@keyframes hiwIconPop {
    0% {
        transform: scale(.5);
    }

    50% {
        transform: scale(1.15);
    }

    100% {
        transform: scale(1);
    }
}

.hiw-content {
    flex: 1;
}

.hiw-content h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.hiw-content p {
    font-size: .85rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.hiw-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: rgba(197, 160, 89, .08);
    line-height: 1;
    flex-shrink: 0;
    letter-spacing: -2px;
    transition: color .5s;
}

.hiw-step.visible .hiw-number {
    color: rgba(197, 160, 89, .15);
}

@media(max-width:767px) {
    .hiw-line {
        right: 18px;
    }

    .hiw-icon {
        width: 48px;
        height: 48px;
        font-size: 1.3rem;
    }

    .hiw-step {
        gap: 16px;
        padding: 24px 0;
    }

    .hiw-content h3 {
        font-size: 1rem;
    }

    .hiw-number {
        font-size: 2.5rem;
    }
}

/* ── FLOATING WHATSAPP ── */
#wa-float {
    position: fixed;
    bottom: 28px;
    left: 28px;
    z-index: 90;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, .4);
    transition: all .4s ease;
    opacity: 0;
    transform: scale(0) translateY(20px);
    text-decoration: none;
}

#wa-float.visible {
    opacity: 1;
    transform: scale(1) translateY(0);
}

#wa-float:hover {
    transform: scale(1.12) translateY(-4px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, .5);
}

@media(max-width:767px) {
    #wa-float {
        bottom: 20px;
        left: 20px;
        width: 54px;
        height: 54px;
    }
}

/* ── PKG BOOK BUTTON (main page) ── */
.pkg-book-btn {
    display: inline-block;
    margin-top: 24px;
    font-size: .82rem;
    padding: 12px 28px;
    text-decoration: none;
    letter-spacing: 1px;
}

/* ── BOOKING PAGE ── */
.booking-page {
    background: var(--dark);
}

.booking-page #mainNav {
    position: fixed;
    top: 0;
    z-index: 100;
}

.booking-nav-title {
    font-size: .85rem;
    color: var(--gold);
    letter-spacing: 2px;
    font-weight: 600;
}

.back-home-btn {
    color: var(--gold);
    text-decoration: none;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 8px 16px;
    border: 1px solid rgba(197, 160, 89, .3);
    border-radius: 100px;
    transition: all .3s;
}

.back-home-btn:hover {
    border-color: var(--gold);
    background: rgba(197, 160, 89, .1);
}

.booking-page #booking-stepper {
    position: fixed;
    top: 68px;
    transform: none;
    opacity: 1;
    pointer-events: all;
}

#booking-container {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 140px;
    min-height: 100vh;
}

.booking-step {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px 80px;
    min-height: calc(100vh - 140px);
    animation: stepIn .5s ease forwards;
}

.booking-step.active-step {
    display: flex;
}

@keyframes stepIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media(max-width:767px) {
    .booking-nav-title {
        font-size: .7rem;
        letter-spacing: 1px;
    }

    .back-home-btn {
        font-size: .7rem;
        padding: 6px 12px;
    }

    #booking-container {
        padding-top: 130px;
    }
}

/* ── THERMOS ANIMATION ── */
.thermos-wrapper {
    width: 100%;
    margin-bottom: 30px;
}

.thermos-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.thermos-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: transform .3s ease;
}

.thermos-item:hover {
    transform: translateY(-5px);
}

.thermos-item.active {
    filter: drop-shadow(0 0 15px rgba(197, 160, 89, .4));
}

.thermos-item.active .thermos-outline {
    stroke: var(--gold);
    stroke-width: 4px;
}

.thermos-svg {
    width: 100px;
    height: 150px;
    transition: all .4s ease;
}

#liquid-layer {
    transition: y .8s cubic-bezier(.4, 0, .2, 1), height .8s cubic-bezier(.4, 0, .2, 1), fill .5s ease;
}

.thermos-label {
    font-size: .75rem;
    color: var(--text-muted);
    font-weight: 600;
    transition: color .3s;
}

.thermos-item.active .thermos-label {
    color: var(--gold);
}

.thermos-item.filled .thermos-label {
    color: #fff;
}

@media(max-width: 767px) {
    .thermos-svg {
        width: 80px;
        height: 120px;
    }

    .thermos-container {
        gap: 15px;
    }
}

/* ── STEAM ANIMATION ── */
.steam-container {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 80px;
    pointer-events: none;
    z-index: 10;
    opacity: 0;
    transition: opacity .5s;
}

.thermos-item.filled .steam-container {
    opacity: 1;
}

.steam-particle {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 15px;
    height: 15px;
    background: rgba(255, 255, 255, 0.2);
    filter: blur(8px);
    border-radius: 50%;
    animation: steamFloat 3s infinite;
}

@keyframes steamFloat {
    0% {
        transform: translate(-50%, 0) scale(1);
        opacity: 0;
    }

    20% {
        opacity: 0.4;
    }

    100% {
        transform: translate(-50%, -60px) scale(3);
        opacity: 0;
    }
}

/* ── CUSTOM DATE PICKER STYLES ── */
.auro-calendar-container {
    position: relative;
    width: 100%;
}

.auro-calendar {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid var(--gold);
    border-radius: 12px;
    padding: 15px;
    width: 280px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .8);
    margin-top: 10px;
    display: none;
    animation: scaleIn .3s ease;
}

.auro-calendar.visible {
    display: block;
}

.cal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    color: var(--gold);
}

.cal-month-year {
    font-weight: 600;
    font-size: .9rem;
}

.cal-btn {
    background: none;
    border: 1px solid rgba(197, 160, 89, 0.3);
    color: var(--gold);
    cursor: pointer;
    padding: 4px 10px;
    font-size: 1rem;
    border-radius: 4px;
    transition: all .2s;
}

.cal-btn:hover {
    background: rgba(197, 160, 89, 0.2);
}

.cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    text-align: center;
}

.cal-day-name {
    font-size: .7rem;
    color: var(--text-muted);
    font-weight: bold;
    padding-bottom: 5px;
}

.cal-day {
    padding: 8px;
    font-size: .8rem;
    cursor: pointer;
    border-radius: 6px;
    transition: all .2s;
    border: 1px solid transparent;
}

.cal-day:hover:not(.disabled) {
    background: rgba(197, 160, 89, 0.2);
    border-color: rgba(197, 160, 89, 0.4);
}

.cal-day.active {
    background: var(--gold);
    color: #000;
    font-weight: bold;
}

.cal-day.disabled {
    color: #333;
    cursor: not-allowed;
    text-decoration: line-through;
    opacity: 0.3;
}

.cal-day.today {
    border-bottom: 2px solid var(--gold);
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(.9) translateY(-10px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* ── CINEMATIC TRANSITION ── */
#page-transition {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

#page-transition.active,
#page-transition.exit {
    display: flex;
    pointer-events: all;
}

.transition-bg {
    position: absolute;
    inset: 0;
    background: var(--dark);
    transform: translateY(100%);
    transition: transform 0.8s cubic-bezier(0.85, 0, 0.15, 1);
}

#page-transition.active .transition-bg {
    transform: translateY(0);
}

#page-transition.exit .transition-bg {
    transform: translateY(-100%);
}

.transition-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease 0.4s;
}

#page-transition.active .transition-content {
    opacity: 1;
    transform: translateY(0);
}

#page-transition.exit .transition-content {
    opacity: 0;
    transform: translateY(-20px);
}

.transition-logo {
    width: 120px;
    border-radius: 24px;
    filter: drop-shadow(0 0 30px rgba(197, 160, 89, 0.4));
}

.transition-line {
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.8s ease 0.6s;
}

#page-transition.active .transition-line {
    width: 150px;
}

/* ── AUDIO TOGGLE UI ── */
#audio-toggle {
    position: fixed;
    bottom: 100px;
    /* Moved up to avoid covering WhatsApp float */
    left: 30px;
    z-index: 1000;
    width: 50px;
    height: 50px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

#audio-toggle:hover {
    transform: scale(1.1);
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(197, 160, 89, 0.2);
}

@media (max-width: 768px) {
    #audio-toggle {
        bottom: 100px;
        left: 20px;
    }
}

/* ── CUSTOM SCROLLBAR & SELECTION ── */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--dark-2);
}

::-webkit-scrollbar-thumb {
    background: var(--gold-dark);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
}

::selection {
    background: var(--gold);
    color: #000;
}