/* ==========================================================================
   CSS Variables & Global Styles
   ========================================================================== */
:root {
    --bg-dark: #050505;
    --bg-card: #111111;
    --bg-card-hover: #1a1a1a;

    --text-main: #ffffff;
    --text-muted: #a0a0a0;

    --gold: #DCB040;
    --gold-hover: #e8c25e;

    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    /* For sub-headings */

    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.2;
}

.main-heading {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.sub-heading {
    font-family: var(--font-secondary);
    font-weight: 900;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 1rem;
    display: inline-block;
    padding: 4px 12px;
    border: 1px solid rgba(220, 176, 64, 0.3);
    border-radius: 4px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

p {
    color: var(--text-muted);
}

/* ==========================================================================
   Buttons & Links
   ========================================================================== */
a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-normal);
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid transparent;
}

.btn-large {
    padding: 16px 36px;
    font-size: 1.1rem;
}

.btn-block {
    display: flex;
    width: 100%;
}

.btn-gold {
    background-color: var(--gold);
    color: #000;
}

.btn-gold:hover {
    background-color: var(--gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(220, 176, 64, 0.2);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--text-main);
    color: var(--text-main);
}

.btn-outline:hover {
    background-color: var(--text-main);
    color: var(--bg-dark);
}

.whatsapp-btn {
    border-color: #25D366 !important;
    color: #25D366 !important;
}

.whatsapp-btn:hover {
    background-color: #25D366 !important;
    color: #fff !important;
}

/* Animations */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(220, 176, 64, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(220, 176, 64, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(220, 176, 64, 0);
    }
}

.pulse-animation {
    animation: pulse 2s infinite;
}

/* ==========================================================================
   Navigation
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(5, 5, 5, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 15px 0;
    transition: var(--transition-normal);
}

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

.logo img {
    height: 65px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--gold);
    transition: var(--transition-normal);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-phone {
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-phone i {
    color: var(--gold);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
    background-color: var(--bg-dark);
}

.hero-centered-layout {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
}

.hero-badge {
    font-family: var(--font-secondary);
    font-weight: 900;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 1.5rem;
    display: inline-block;
    padding: 6px 16px;
    border: 1px solid rgba(220, 176, 64, 0.3);
    border-radius: 50px;
    background: rgba(220, 176, 64, 0.1);
}

.hero-content {
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.highlight {
    color: var(--gold);
}

.hero-subtext {
    font-size: 1.25rem;
    margin: 0 auto 2.5rem;
    color: #fff;
    max-width: 600px;
    font-weight: 400;
    line-height: 1.6;
    text-align: center;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-white {
    background-color: #fff;
    color: #000;
}

.btn-white:hover {
    background-color: #e0e0e0;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
}

.hero-media-showcase {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 40px;
    padding-bottom: 40px;
}

.hero-video-wrapper {
    position: relative;
    width: 90%;
    max-width: 1000px;
    z-index: 2;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.9), 0 0 40px rgba(220, 176, 64, 0.2);
    border: 1px solid rgba(220, 176, 64, 0.4);
    transition: transform 0.5s ease;
}

.hero-video-wrapper:hover {
    transform: scale(1.02);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    background: #000;
}

.video-container iframe {
    position: absolute;
    top: -15%;
    left: -15%;
    width: 130%;
    height: 130%;
}

@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
        padding-top: 40px;
    }

    .hero-content {
        margin: 0 auto;
    }

    .hero-subtext {
        margin: 0 auto 2rem auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-overlay {
        background: linear-gradient(180deg, rgba(5, 5, 5, 0.9) 0%, rgba(5, 5, 5, 0.7) 100%);
    }

    .hero-video-wrapper {
        transform: none;
    }

    .hero-video-wrapper:hover {
        transform: none;
    }
}

@media (max-width: 768px) {
    .hero {
        padding-top: 120px;
        padding-bottom: 60px;
        min-height: auto;
    }

    .main-heading {
        font-size: 2.2rem;
    }

    .hero-subtext {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }

    .hero-buttons .btn {
        width: 100%;
    }
}

/* ==========================================================================
   Trust Bar
   ========================================================================== */
.trust-bar {
    background-color: var(--bg-card);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px 0;
    position: relative;
    z-index: 10;
}

.trust-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    color: #e0e0e0;
}

.trust-item i {
    color: var(--gold);
    font-size: 1.2rem;
}

/* ==========================================================================
   Sections General
   ========================================================================== */
.section {
    padding: 100px 0;
}

/* ==========================================================================
   Benefits (Why PPF?)
   ========================================================================== */
/* Sticky Scroll Layout */
.sticky-scroll-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 40px;
}

.sticky-media-container {
    flex: 1;
    position: sticky;
    top: 120px;
    height: 70vh;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.sticky-media {
    width: 100%;
    height: 100%;
    position: relative;
    background: #111;
}

.sticky-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.6s ease-in-out, transform 1s ease-in-out;
    transform: scale(1.05);
}

.sticky-img.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

.sticky-content-container {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.sticky-step {
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 20px 0;
}

.step-card {
    background: linear-gradient(135deg, var(--bg-card) 0%, #0a0a0a 100%);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
    opacity: 0.3;
    transform: translateY(20px);
}

.sticky-step.is-active .step-card {
    opacity: 1;
    transform: translateY(0);
    box-shadow: 0 10px 30px rgba(220, 176, 64, 0.1);
    border-color: rgba(220, 176, 64, 0.3);
}

.step-card h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #fff;
}

.step-card p {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(220, 176, 64, 0.2) 0%, rgba(220, 176, 64, 0.05) 100%);
    border: 1px solid rgba(220, 176, 64, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: inset 0 0 10px rgba(220, 176, 64, 0.1);
}

.benefit-icon i {
    font-size: 24px;
    color: var(--gold);
}

@media (max-width: 992px) {
    .sticky-scroll-wrapper {
        flex-direction: column;
    }

    .sticky-media-container {
        position: relative;
        top: 0;
        width: 100%;
        height: 50vh;
        margin-bottom: 40px;
        flex: none;
    }

    .sticky-step {
        min-height: auto;
        margin-bottom: 40px;
    }

    .step-card {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   The Foilers Advantage
   ========================================================================== */
.advantage-section {
    background: linear-gradient(180deg, var(--bg-dark) 0%, #0a0a0a 100%);
}

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

.advantage-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.advantage-list {
    list-style: none;
    margin-top: 30px;
}

.advantage-list li {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.advantage-list i {
    font-size: 1.5rem;
    color: var(--gold);
    margin-top: 5px;
}

.advantage-list strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--text-main);
}

/* ==========================================================================
   Packages
   ========================================================================== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.pricing-card {
    background: var(--bg-card);
    border-radius: 8px;
    padding: 50px 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    border-color: rgba(220, 176, 64, 0.3);
}

.pricing-card.popular {
    background: #0a0a0a;
    border-color: var(--gold);
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.popular-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--gold);
    color: #000;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.pricing-card h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.pricing-desc {
    font-size: 0.95rem;
    margin-bottom: 30px;
    height: 45px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 40px;
    flex-grow: 1;
}

.pricing-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.pricing-features i {
    color: var(--gold);
}

.pricing-features .disabled {
    color: #555;
}

.pricing-features .disabled i {
    color: #555;
}

/* ==========================================================================
   Final CTA & Footer
   ========================================================================== */
.cta-section {
    background: url('https://images.unsplash.com/photo-1543343468-b7835848bb2e?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover;
    position: relative;
    text-align: center;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
}

.cta-container {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.cta-container p {
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-actions i {
    margin-right: 10px;
}

footer {
    background: #000;
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    width: 150px;
    height: auto;
    margin-bottom: 20px;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gold);
}

.footer-col p {
    margin-bottom: 15px;
}

.icon-gold {
    color: var(--gold);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: var(--text-main);
}

.social-links a:hover {
    background: var(--gold);
    color: #000;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #666;
    font-size: 0.9rem;
}

/* ==========================================================================
   Floating WhatsApp Button
   ========================================================================== */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    transition: var(--transition-normal);
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 25px rgba(37, 211, 102, 0.4);
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media (max-width: 992px) {

    .advantage-container,
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .pricing-card.popular {
        transform: none;
    }
}

@media (max-width: 768px) {

    .nav-links,
    .nav-phone {
        display: none;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .cta-actions {
        flex-direction: column;
    }

    .main-heading {
        font-size: 2.2rem;
    }

    .trust-container {
        justify-content: center;
    }
}

/* ==========================================================================
   Brands We Work On (Logo Marquee)
   ========================================================================== */
.foilers-logo-section {
    background: #000;
    overflow: hidden;
    padding: 60px 0;
}

.foilers-logo-slider {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    padding: 20px 0;
}

/* Gradient masks for smooth fade in/out effect at the edges */
.foilers-logo-slider::before,
.foilers-logo-slider::after {
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    content: "";
    z-index: 2;
}

.foilers-logo-slider::before {
    left: 0;
    background: linear-gradient(to right, #000 0%, transparent 100%);
}

.foilers-logo-slider::after {
    right: 0;
    background: linear-gradient(to left, #000 0%, transparent 100%);
}

.foilers-logo-track {
    display: inline-flex;
    animation: scroll-logos 40s linear infinite;
    gap: 30px;
    padding-left: 30px;
}

.foilers-logo-item {
    background: #fff;
    border-radius: 12px;
    height: 100px;
    width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    flex-shrink: 0;
}

.foilers-logo-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition-normal);
}

.foilers-logo-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

@keyframes scroll-logos {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 15px));
    }
}

/* ==========================================================================
   Why Choose Us Section
   ========================================================================== */
.foilers-why-section {
    background: #0a0a0a;
}

.foilers-header {
    text-align: center;
    margin-bottom: 50px;
}

.foilers-header h2 {
    font-family: var(--font-primary);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    font-weight: 700;
}

.foilers-header p {
    max-width: 700px;
    margin: 0 auto;
}

.foilers-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
}

.showcase-image img {
    width: 100%;
    border-radius: 12px;
    border: 1px solid rgba(220, 176, 64, 0.3);
}

.showcase-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature-item {
    display: flex;
    gap: 20px;
}

.feature-item .number {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--gold);
    background: rgba(220, 176, 64, 0.1);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
    border: 1px solid rgba(220, 176, 64, 0.3);
}

.feature-item h3 {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: #fff;
}

.feature-item p {
    font-family: var(--font-primary);
    color: var(--text-muted);
}

.foilers-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 50px;
}

.stat-box h3 {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 5px;
    font-weight: 700;
}

.stat-box p {
    font-family: var(--font-secondary);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

@media (max-width: 992px) {
    .foilers-showcase {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .foilers-stats {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq-section {
    background: #000;
    color: #fff;
    padding: 80px 20px;
}

.faq-container {
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
}

.faq-title {
    font-size: 2.4rem;
    margin-bottom: 10px;
    color: #fff;
    font-family: var(--font-primary);
    font-weight: 700;
}

.faq-title span {
    color: var(--gold);
}

.faq-intro {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 820px;
    margin: 0 auto 30px;
}

.faq-accordion {
    text-align: left;
}

.faq-item {
    background: #0a0a0a;
    border: 1px solid rgba(220, 176, 64, 0.2);
    border-radius: 10px;
    margin-bottom: 14px;
    overflow: hidden;
    transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.faq-question {
    width: 100%;
    background: #0a0a0a;
    color: #fff;
    border: none;
    padding: 18px 20px;
    font-size: 1.05rem;
    text-align: left;
    font-weight: 600;
    font-family: var(--font-primary);
    cursor: pointer;
    position: relative;
    transition: background-color 0.25s ease, color 0.25s ease;
    display: block;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.faq-question:hover,
.faq-item.active .faq-question {
    background-color: var(--gold);
    color: #000;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.4rem;
    color: var(--gold);
    transition: transform 0.25s ease, color 0.25s ease;
}

.faq-question:hover::after,
.faq-item.active .faq-question::after {
    color: #000;
    transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
    background: #0a0a0a;
    color: #d0d0d0;
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.active .faq-answer {
    max-height: 400px;
    padding: 15px 20px 22px;
    color: #fff;
}

.faq-question:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(220, 176, 64, 0.2);
}

@media (max-width: 768px) {
    .faq-title {
        font-size: 1.9rem;
    }

    .faq-intro {
        font-size: 1rem;
    }

    .faq-question {
        font-size: 1rem;
        padding: 16px 16px;
    }

    .faq-answer {
        padding: 0 16px;
    }
}

/* ==========================================================================
   Gallery Section
   ========================================================================== */
.gallery-section {
    background-color: var(--bg-card);
}

.video-scroller-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding-bottom: 40px;
    margin-top: 40px;
}

.video-scroller-track {
    display: flex;
    gap: 20px;
    width: max-content;
}

.video-scroller-group {
    display: flex;
    gap: 20px;
    animation: scroll-infinity 40s linear infinite;
}

.video-scroller-track:hover .video-scroller-group {
    animation-play-state: paused;
}

@keyframes scroll-infinity {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-100% - 20px)); }
}

.video-item {
    flex: 0 0 auto;
    width: 300px;
    scroll-snap-align: start;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(220, 176, 64, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    background: #000;
    transition: transform 0.3s ease;
}

.video-item:hover {
    transform: translateY(-5px);
}

.gallery-video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 16;
    overflow: hidden;
}

.gallery-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ==========================================================================
   Form / Contact Section
   ========================================================================== */
.form-section {
    background: var(--bg-main);
    border-top: 1px solid rgba(220, 176, 64, 0.1);
}

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

.form-copy p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.form-perks {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.form-perks li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-size: 1rem;
}

.form-perks li i {
    color: var(--gold);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.form-contact-links {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.form-embed-wrapper {
    background: #0a0a0a;
    border: 1px solid rgba(220, 176, 64, 0.2);
    border-radius: 16px;
    overflow: hidden;
}

/* Loading spinner */
.form-loading-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    gap: 20px;
    color: var(--text-muted);
}

.form-spinner {
    width: 48px;
    height: 48px;
    border: 3px solid rgba(220, 176, 64, 0.2);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 992px) {
    .form-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}
