:root {
    --gold: #FFD700;
    --orange: #ff7a00;
    --black: #0b0b0b;
    --navy: #081120;
    --navy-soft: #101b2e;
    --white: #ffffff;
    --muted: #aeb8ca;
    --border: rgba(255, 215, 0, 0.22);
    --glass: rgba(255, 255, 255, 0.075);
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    background: radial-gradient(circle at top left, rgba(255, 122, 0, 0.18), transparent 32%), linear-gradient(135deg, var(--black), var(--navy) 50%, #05070b);
    overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
main { min-height: 70vh; }

.preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    background: #05070b;
    transition: opacity .45s ease, visibility .45s ease;
}
.preloader.is-hidden { opacity: 0; visibility: hidden; }
.preloader-mark {
    width: 140px;
    height: 140px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: grid;
    place-items: center;
    box-shadow: 0 0 40px rgba(255, 215, 0, .45);
    animation: pulseGlow 1.6s infinite alternate;
}
.preloader-mark span { font-weight: 800; color: var(--gold); }
.preloader-mark small { color: var(--muted); letter-spacing: 3px; margin-top: -40px; }

.cursor-glow {
    position: fixed;
    width: 320px;
    height: 320px;
    pointer-events: none;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 215, 0, .12), transparent 70%);
    z-index: 1;
    transition: transform .08s linear;
}

.premium-navbar {
    padding: 16px 0;
    transition: all .3s ease;
    background: linear-gradient(180deg, rgba(8, 17, 32, .88), rgba(8, 17, 32, .08));
    backdrop-filter: blur(14px);
    z-index: 1000;
}
.premium-navbar.is-scrolled {
    padding: 10px 0;
    background: rgba(5, 7, 11, .92);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 16px 40px rgba(0,0,0,.3);
}
.navbar-toggler { border-color: var(--border); }
.navbar-toggler-icon { filter: invert(1); }
.brand-lockup { display: inline-flex; align-items: center; gap: 10px; }
.brand-icon {
    width: 44px;
    height: 44px;
    border-radius: 13px;
    display: grid;
    place-items: center;
    color: #07101d;
    background: linear-gradient(135deg, var(--gold), var(--orange));
    box-shadow: 0 0 28px rgba(255, 122, 0, .36);
}
.brand-lockup strong { display: block; color: var(--white); text-transform: uppercase; letter-spacing: .6px; line-height: 1; }
.brand-lockup small { display: block; color: var(--gold); text-transform: uppercase; letter-spacing: 3.2px; font-size: .65rem; }
.navbar-nav .nav-link {
    color: rgba(255,255,255,.82);
    font-size: .82rem;
    font-weight: 600;
    padding: 10px 6px !important;
    position: relative;
    white-space: nowrap;
}
.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 4px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--orange));
    transform: scaleX(0);
    transition: transform .25s ease;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active { color: var(--gold); }
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after { transform: scaleX(1); }
.premium-dropdown {
    background: rgba(8, 17, 32, .98);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}
.premium-dropdown .dropdown-item { color: var(--white); }
.premium-dropdown .dropdown-item:hover { color: var(--black); background: var(--gold); }
.nav-actions { display: flex; gap: 8px; flex-wrap: nowrap; }

.btn {
    border-radius: 999px;
    font-weight: 700;
    padding: 9px 14px;
    transition: all .25s ease;
    white-space: nowrap;
}
.btn-gold {
    color: #121212;
    background: linear-gradient(135deg, var(--gold), var(--orange));
    border: 0;
    box-shadow: 0 0 28px rgba(255, 122, 0, .28);
}
.btn-gold:hover { color: #000; transform: translateY(-2px); box-shadow: 0 0 40px rgba(255, 215, 0, .42); }
.btn-ghost {
    color: var(--gold);
    border: 1px solid var(--border);
    background: rgba(255,255,255,.04);
}
.btn-ghost:hover { color: var(--white); border-color: var(--gold); background: rgba(255, 215, 0, .1); }

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 130px 0 90px;
    overflow: hidden;
}
.hero::before,
.hero::after,
.section-dark::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 215, 0, .16) 1px, transparent 1px);
    background-size: 34px 34px;
    opacity: .22;
    pointer-events: none;
}
.hero::after {
    background: linear-gradient(90deg, rgba(5,7,11,.95), rgba(5,7,11,.62), rgba(5,7,11,.88));
    opacity: 1;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg .swiper, .hero-bg .swiper-wrapper, .hero-bg .swiper-slide { height: 100%; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; filter: saturate(1.12) contrast(1.04); }
.hero-content { position: relative; z-index: 2; }
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: .82rem;
}
.hero h1,
.page-hero h1,
.section-title h2 {
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    letter-spacing: 0;
}
.hero h1 {
    font-size: clamp(2.8rem, 6vw, 6rem);
    line-height: .98;
    margin: 20px 0;
}
.gradient-text {
    background: linear-gradient(135deg, var(--white), var(--gold) 45%, var(--orange));
    -webkit-background-clip: text;
    color: transparent;
}
.hero p { color: #e7ecf5; font-size: clamp(1.05rem, 2vw, 1.35rem); max-width: 680px; }
.hero-actions { display: flex; gap: 15px; flex-wrap: wrap; margin-top: 28px; }
.hero-card {
    position: relative;
    z-index: 2;
    border: 1px solid var(--border);
    border-radius: 28px;
    background: linear-gradient(145deg, rgba(255,255,255,.12), rgba(255,255,255,.04));
    padding: 16px;
    box-shadow: var(--shadow);
    animation: floatY 4s ease-in-out infinite;
}
.hero-card img { border-radius: 22px; width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.hero-badge {
    position: absolute;
    right: -12px;
    bottom: 26px;
    padding: 16px 18px;
    border-radius: 18px;
    color: #111;
    background: linear-gradient(135deg, var(--gold), var(--orange));
    box-shadow: 0 0 32px rgba(255, 122, 0, .45);
    font-weight: 800;
}
.stat-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 36px;
    max-width: 720px;
}
.stat-strip div, .glass-card, .package-card, .reward-card, .service-card, .testimonial-card, .contact-card {
    border: 1px solid var(--border);
    background: linear-gradient(145deg, rgba(255,255,255,.105), rgba(255,255,255,.035));
    backdrop-filter: blur(16px);
    box-shadow: 0 18px 55px rgba(0,0,0,.26);
}
.stat-strip div { padding: 18px; border-radius: 18px; }
.stat-strip strong { display: block; color: var(--gold); font-size: 1.8rem; }
.stat-strip span { color: var(--muted); font-size: .88rem; }

.section-pad { padding: 96px 0; position: relative; }
.section-dark { background: linear-gradient(135deg, #05070b, #081120 58%, #0f1118); overflow: hidden; }
.section-title { max-width: 800px; margin-bottom: 44px; }
.section-title.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-title h2 { font-size: clamp(2rem, 4vw, 3.4rem); margin: 10px 0 14px; }
.section-title p, .lead-muted { color: var(--muted); line-height: 1.8; }
.gold-line {
    width: 76px;
    height: 3px;
    border-radius: 99px;
    background: linear-gradient(90deg, var(--gold), var(--orange));
    margin: 16px 0;
}
.center .gold-line { margin-left: auto; margin-right: auto; }
.glass-card { border-radius: 22px; padding: 28px; height: 100%; transition: transform .25s ease, border-color .25s ease; }
.glass-card:hover, .package-card:hover, .reward-card:hover, .service-card:hover { transform: translateY(-8px); border-color: rgba(255, 215, 0, .6); }
.icon-box {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    color: #101010;
    background: linear-gradient(135deg, var(--gold), var(--orange));
    font-size: 1.45rem;
    margin-bottom: 18px;
}
.glass-card h3, .package-card h3, .reward-card h3, .service-card h3 { font-size: 1.18rem; font-weight: 800; }
.glass-card p, .package-card p, .reward-card p, .service-card p { color: var(--muted); margin-bottom: 0; }

.image-frame {
    position: relative;
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 12px;
    background: rgba(255,255,255,.06);
    box-shadow: var(--shadow);
}
.image-frame img { width: 100%; border-radius: 22px; aspect-ratio: 4/3; object-fit: cover; }
.image-frame.tall img { aspect-ratio: 3/4; }

.package-card {
    border-radius: 22px;
    overflow: hidden;
    height: 100%;
    transition: transform .25s ease, border-color .25s ease;
}
.package-card .media { overflow: hidden; position: relative; }
.package-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform .45s ease; }
.package-card:hover img { transform: scale(1.08); }
.price-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    color: #111;
    background: var(--gold);
    border-radius: 999px;
    padding: 8px 14px;
    font-weight: 800;
}
.package-body { padding: 22px; }
.meta-row { display: flex; flex-wrap: wrap; gap: 10px; color: var(--muted); font-size: .9rem; margin: 12px 0 18px; }
.meta-row span { border: 1px solid rgba(255,255,255,.12); border-radius: 999px; padding: 7px 10px; }

.business-panel {
    border: 1px solid rgba(255, 215, 0, .34);
    border-radius: 30px;
    padding: clamp(24px, 5vw, 54px);
    background: radial-gradient(circle at top right, rgba(255,122,0,.22), transparent 38%), linear-gradient(135deg, rgba(255,255,255,.1), rgba(255,255,255,.04));
    box-shadow: 0 0 70px rgba(255, 122, 0, .13);
}
.income-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.income-card {
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 18px;
    background: rgba(0,0,0,.26);
}
.income-card strong { display: block; color: var(--gold); font-size: 1.5rem; }
.income-card span { color: var(--muted); }

.reward-card, .service-card, .testimonial-card, .contact-card {
    border-radius: 22px;
    padding: 26px;
    height: 100%;
}
.reward-card .rank { color: var(--gold); font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px; }
.testimonial-card i { color: var(--gold); font-size: 2rem; }
.testimonial-person { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.testimonial-person img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold); }
.swiper-pagination-bullet { background: var(--gold); }

.gallery-grid {
    columns: 3 260px;
    column-gap: 18px;
}
.gallery-item {
    display: block;
    break-inside: avoid;
    margin-bottom: 18px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
    cursor: pointer;
    position: relative;
}
.gallery-item img { width: 100%; transition: transform .45s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item::after {
    content: 'View';
    position: absolute;
    inset: auto 16px 16px auto;
    color: #111;
    background: var(--gold);
    border-radius: 99px;
    padding: 7px 14px;
    font-weight: 800;
    opacity: 0;
    transition: opacity .25s ease;
}
.gallery-item:hover::after { opacity: 1; }
.lightbox-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.86);
    z-index: 9998;
    display: grid;
    place-items: center;
    padding: 24px;
}
.lightbox-modal img { max-height: 86vh; border-radius: 22px; border: 1px solid var(--border); }
.lightbox-modal button {
    position: fixed;
    top: 24px;
    right: 24px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid var(--border);
    color: var(--gold);
    background: rgba(8,17,32,.95);
}

.accordion-item {
    color: var(--white);
    background: rgba(255,255,255,.045);
    border: 1px solid var(--border) !important;
    border-radius: 18px !important;
    overflow: hidden;
    margin-bottom: 14px;
}
.accordion-button {
    color: var(--white);
    background: rgba(255,255,255,.04);
    font-weight: 700;
    box-shadow: none !important;
}
.accordion-button:not(.collapsed) { color: var(--gold); background: rgba(255,215,0,.08); }
.accordion-button::after { filter: invert(1) sepia(1) saturate(4); }
.accordion-body { color: var(--muted); line-height: 1.8; }

.cta-band {
    padding: 72px 0;
    background: radial-gradient(circle at 15% 20%, rgba(255,255,255,.24), transparent 20%), linear-gradient(135deg, var(--gold), var(--orange));
    color: #101010;
}
.cta-band h2 { font-family: 'Playfair Display', serif; font-weight: 800; }
.cta-form {
    display: flex;
    gap: 10px;
    max-width: 520px;
    margin-left: auto;
}
.cta-form input, .newsletter-form input, .form-control, .form-select {
    min-height: 50px;
    color: var(--white);
    background: rgba(255,255,255,.08);
    border: 1px solid var(--border);
    border-radius: 999px;
}
.cta-form input { color: #111; background: rgba(255,255,255,.86); border: 0; padding: 0 18px; flex: 1; }
.cta-form button { border: 0; border-radius: 999px; padding: 0 22px; color: var(--white); background: #081120; font-weight: 800; }
.form-control:focus, .form-select:focus { background: rgba(255,255,255,.12); border-color: var(--gold); color: var(--white); box-shadow: 0 0 0 .25rem rgba(255,215,0,.12); }
textarea.form-control { border-radius: 22px; padding: 16px; }

.page-hero {
    min-height: 52vh;
    display: flex;
    align-items: center;
    padding: 135px 0 70px;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}
.page-hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5,7,11,.92), rgba(5,7,11,.58)); }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { font-size: clamp(2.4rem, 5vw, 4.7rem); }
.breadcrumb-premium { color: var(--muted); }
.breadcrumb-premium a { color: var(--gold); }

.timeline { position: relative; padding-left: 24px; }
.timeline::before { content: ''; position: absolute; left: 5px; top: 0; bottom: 0; width: 2px; background: linear-gradient(var(--gold), var(--orange)); }
.timeline-item { position: relative; padding: 0 0 26px 22px; }
.timeline-item::before { content: ''; position: absolute; left: -24px; top: 5px; width: 14px; height: 14px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 20px var(--gold); }
.timeline-item h4 { color: var(--gold); font-weight: 800; }
.policy-content h2, .policy-content h3 { color: var(--gold); margin-top: 28px; }
.policy-content p, .policy-content li { color: var(--muted); line-height: 1.85; }

.site-footer {
    border-top: 2px solid var(--gold);
    background: linear-gradient(135deg, #05070b, #081120);
    padding: 70px 0 24px;
}
.footer-brand { margin-bottom: 22px; }
.footer-text, .contact-list, .footer-links a { color: var(--muted); }
.site-footer h5 { color: var(--gold); font-weight: 800; margin-bottom: 18px; }
.footer-links, .contact-list { list-style: none; padding: 0; margin: 0; }
.footer-links li, .contact-list li { margin-bottom: 11px; }
.footer-links a:hover { color: var(--gold); text-shadow: 0 0 14px rgba(255,215,0,.4); }
.contact-list i { color: var(--gold); margin-right: 8px; }
.social-row { display: flex; gap: 10px; }
.social-row a {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--gold);
    background: rgba(255,255,255,.05);
}
.social-row a:hover { background: var(--gold); color: #111; }
.newsletter-form { display: flex; gap: 8px; margin-top: 18px; }
.newsletter-form input { flex: 1; padding: 0 16px; }
.newsletter-form button {
    width: 52px;
    border: 0;
    border-radius: 50%;
    color: #111;
    background: var(--gold);
}
.footer-disclaimer {
    margin-top: 36px;
    padding: 18px;
    color: var(--muted);
    border: 1px solid var(--border);
    border-radius: 18px;
    background: rgba(255,255,255,.04);
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
    color: var(--muted);
    padding-top: 24px;
    margin-top: 24px;
    border-top: 1px solid rgba(255,255,255,.08);
}
.footer-bottom a { color: var(--gold); }
.whatsapp-float, .back-to-top {
    position: fixed;
    right: 22px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 0;
    display: grid;
    place-items: center;
    color: #fff;
    z-index: 900;
    box-shadow: 0 10px 35px rgba(0,0,0,.35);
}
.whatsapp-float { bottom: 90px; background: #25D366; font-size: 1.5rem; }
.back-to-top { bottom: 24px; background: linear-gradient(135deg, var(--gold), var(--orange)); color: #111; opacity: 0; visibility: hidden; transition: .25s ease; }
.back-to-top.show { opacity: 1; visibility: visible; }

@keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
}
@keyframes pulseGlow {
    from { box-shadow: 0 0 20px rgba(255, 215, 0, .25); }
    to { box-shadow: 0 0 58px rgba(255, 122, 0, .58); }
}

@media (max-width: 1199px) {
    .navbar-collapse {
        margin-top: 16px;
        padding: 16px;
        border: 1px solid var(--border);
        border-radius: 20px;
        background: rgba(5,7,11,.96);
    }
    .nav-actions { margin-top: 12px; }
}
@media (max-width: 991px) {
    .hero { padding-top: 120px; }
    .hero-card { margin-top: 38px; }
    .stat-strip, .income-grid { grid-template-columns: 1fr; }
    .cta-form { margin: 24px 0 0; }
}
@media (max-width: 575px) {
    .hero h1 { font-size: 2.65rem; }
    .hero-actions, .cta-form { flex-direction: column; }
    .btn, .cta-form button { width: 100%; }
    .hero-badge { position: static; margin-top: 12px; display: inline-block; }
    .section-pad { padding: 70px 0; }
    .footer-bottom { display: block; }
    .cursor-glow { display: none; }
}
