/* =========================================
   1. VARIABLES & RESET
   ========================================= */
:root {
    --gold: #D4AF37;
    --gold-light: #F2D06B;
    --gold-highlight: #FFD700;
    --black: #000000;
    --white: #ffffff;
    --gap-size: 12px;
    --btn-radius: 50px;
    --backdrop: rgba(0, 0, 0, 0.8);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    -webkit-tap-highlight-color: transparent;
}

/* =========================================
   2. MAIN LAYOUT
   ========================================= */
body {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    position: relative;
    overflow-x: hidden;
    color: var(--gold);
}

/* Background Effect */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: url('assets/background.webp');
    background-size: cover;
    background-position: center;
    background-color: var(--black);
    filter: brightness(0.3) blur(8px);
    transform: scale(1.05);
}

.container {
    width: 100%;
    max-width: 420px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: var(--gap-size);
    position: relative;
    z-index: 1;
}

/* =========================================
   3. COMPONENTS
   ========================================= */

/* --- Profile Picture --- */
.profile-pic {
    width: 135px;
    height: 135px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    margin: 0 auto 15px auto;
    border: 1px solid var(--black);
    outline: 4px solid var(--gold);
    outline-offset: 4px;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

/* --- Infinite Marquee (Trust Bar) --- */
.trust-bar {
    opacity: 0.9;
    margin-bottom: 10px;
    width: 100%;
    overflow: hidden;
}

.trust-label {
    font-size: 0.7rem;
    color: var(--white);
    letter-spacing: 2px;
    display: block;
    margin-bottom: 8px;
}

.marquee-container {
    width: 100%;
    position: relative;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: 0;
    width: max-content;
    will-change: transform;
    animation: scroll-infinite 20s linear infinite;
}

.marquee-group {
    display: flex;
    align-items: center;
}

.partner {
    font-size: 0.75rem;
    color: var(--gold);
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    white-space: nowrap;
    padding: 0 10px;
}

.dot {
    color: var(--white);
    font-size: 0.6rem;
    opacity: 0.4;
}

@keyframes scroll-infinite {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-25%);
    }
}

/* --- Section Headers --- */
.section-header {
    margin-top: 6px;
    margin-bottom: 5px;
}

.section-header span {
    background: var(--backdrop);
    padding: 8px 20px;
    border: 1px solid var(--gold);
    border-radius: 20px;
    color: var(--gold);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: bold;
    backdrop-filter: blur(5px);
    display: inline-block;
}

/* =========================================
   4. TYPOGRAPHY
   ========================================= */
h1 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 1);
    line-height: 1.2;
}

.subtitle {
    font-size: 0.9rem;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 1);
    line-height: 1.4;
    margin-bottom: 10px;
}

/* =========================================
   5. BUTTONS
   ========================================= */
.btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    width: 100%;
    background: linear-gradient(45deg, var(--gold), var(--gold-light));
    color: var(--black);
    text-decoration: none;
    padding: 18px;
    border-radius: var(--btn-radius);
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.2s ease;
    border: 2px solid transparent;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    user-select: none;
}

.btn-sm {
    display: inline-flex;
    width: auto;
    padding: 10px 20px;
    font-size: 0.9rem;
}

.primary-btn {
    background: linear-gradient(45deg, var(--gold-highlight), #FDB931);
    font-size: 1.1rem;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}

.btn:active {
    transform: scale(0.98);
    background: var(--gold);
}

@media (hover: hover) {
    .btn:hover {
        transform: scale(1.02);
        box-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
        background: var(--black);
        color: var(--gold);
        border: 2px solid var(--gold);
    }
}

/* =========================================
   6. INTERACTIVE ELEMENTS
   ========================================= */
details.topic-dropdown {
    width: 100%;
    display: block;
}

summary {
    list-style: none;
    margin: 0;
    cursor: pointer;
}

summary::-webkit-details-marker {
    display: none;
}

.topic-content {
    background: var(--backdrop);
    color: var(--white);
    padding: 15px;
    border-radius: 20px;
    margin-top: 10px;
    border: 1px solid var(--gold);
    text-align: left;
    font-size: 0.95rem;
    line-height: 1.5;
    animation: fadeIn 0.3s ease-in-out;
}

.topic-content strong {
    color: var(--gold);
    display: block;
    margin-bottom: 5px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.socials {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding-top: 10px;
}

.socials a {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--gold);
    font-size: 1.8rem;
    text-decoration: none;
    transition: transform 0.2s, color 0.2s;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 1));
}

.socials a:hover {
    color: var(--white);
    transform: translateY(-3px);
}

.legal-footer {
    margin-top: 25px;
    padding-bottom: 10px;
    opacity: 0.6;
    font-size: 0.75rem;
    line-height: 1.6;
}

.legal-footer p {
    color: var(--white);
    letter-spacing: 0.5px;
}

.legal-footer a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
}

/* =========================================
   7. BOOKING PAGE ASSETS
   ========================================= */
.video-wrapper {
    position: relative;
    width: 100%;
    /* FIXED: Switched to aspect-ratio for perfect 16:9 fit */
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 20px;
    border: 2px solid var(--gold);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    background: black;
}

.video-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.form-wrapper {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    /* FIXED: Removed margin-top for consistent spacing */
    border: 2px solid var(--gold);
}

.form-wrapper iframe {
    width: 100% !important;
    min-height: 800px;
    border: none;
}

/* =========================================
   8. DESKTOP OPTIMIZATION
   ========================================= */
@media (min-width: 768px) {
    body {
        align-items: flex-start;
        padding-top: 60px;
    }

    .container {
        transform: scale(1.3);
        transform-origin: top center;
        margin-top: 0;
        margin-bottom: 100px;
    }
}