:root {
    --gold: #d4a843;
    --gold-light: #f5d98a;
    --gold-dim: rgba(212, 168, 67, 0.15);
    --deep: #050210;
    --mid: #0d0825;
    --violet: #2a0a4a;
    --violet-bright: #6b2fa0;
    --rose: #c2185b;
    --teal: #00bcd4;
    --white: #f5f0ff;
    --text-muted: rgba(245, 240, 255, 0.65);
}

a{
    text-decoration: none;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--deep);
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    overflow-x: hidden;
}

/* ── STARS BACKGROUND ── */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(107, 47, 160, 0.25) 0%, transparent 55%),
        radial-gradient(ellipse at 80% 70%, rgba(194, 24, 91, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 10%, rgba(0, 188, 212, 0.08) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
}

/* ── URGENCY BAR ── */
.urgency-bar {
    background: linear-gradient(90deg, var(--violet), #3d0f72, var(--violet));
    border-bottom: 1px solid var(--gold);
    text-align: center;
    padding: 10px 20px;
    font-family: 'Cinzel', serif;
    font-size: 0.78rem;
    letter-spacing: 0.15em;
    color: var(--gold-light);
    position: relative;
    z-index: 100;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: 0.85
    }
}

.urgency-bar span {
    color: #fb82ab;
    font-weight: 600;
    display:inline-block;
    animation: bounceText 5s infinite;
}

@keyframes bounceText{
    0%,20%,50%,80%,100%{
        transform: translateY(0);
    }
    40%{
        transform: translateY(-6px);
    }
    60%{
        transform: translateY(-5px);
    }
}


.header {
    position: sticky;
    top: 0;
    z-index: 99;
    padding: 14px 0px;
    background: rgba(5, 2, 16, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(212, 168, 67, 0.2);
}

.header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: 'Cinzel Decorative', serif;
    font-size: 1.1rem;
    color: var(--gold);
    letter-spacing: 0.05em;
}

.nav-cta {
    background: linear-gradient(135deg, var(--gold), #b8860b);
    color: #0a0510;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
    transition: transform 0.2s, box-shadow 0.2s;
    animation: moveLeftRight 1.8s ease-in-out infinite
}

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(212, 168, 67, 0.5);
}

/* ── HERO ── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px 80px;
    overflow: hidden;
    z-index: 1;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 40%, rgba(107, 47, 160, 0.35) 0%, transparent 70%),
        radial-gradient(ellipse 50% 40% at 50% 60%, rgba(212, 168, 67, 0.08) 0%, transparent 60%);
    background-image: url(../images/hero-akashic.webp);
    background-size: cover;
    background-position: center top;
    opacity: 0.15;
    background-position: fixed;
}

/* Orbiting rings */
.ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(212, 168, 67, 0.12);
    animation: rotate linear infinite;
}

.hero .d-flex {
    gap: 30px;
    align-items: center;
}

.ring-1 {
    width: 600px;
    height: 600px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-duration: 60s;
}

.ring-2 {
    width: 800px;
    height: 800px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(30deg);
    animation-duration: 90s;
    border-color: rgba(194, 24, 91, 0.08);
}

.ring-3 {
    width: 1000px;
    height: 1000px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(60deg);
    animation-duration: 120s;
    border-color: rgba(0, 188, 212, 0.06);
}

@keyframes rotate {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.ring-2 {
    animation: rotate2 90s linear infinite;
}

.ring-3 {
    animation: rotate3 120s linear infinite;
}

@keyframes rotate2 {
    from {
        transform: translate(-50%, -50%) rotate(30deg)
    }

    to {
        transform: translate(-50%, -50%) rotate(390deg)
    }
}

@keyframes rotate3 {
    from {
        transform: translate(-50%, -50%) rotate(60deg)
    }

    to {
        transform: translate(-50%, -50%) rotate(420deg)
    }
}

.event-badge {
    font-family: 'Cinzel', serif;
    font-size: 0.72rem;
    letter-spacing: 0.3em;
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 6px 20px;
    margin-bottom: 28px;
    display: inline-block;
    position: relative;
    z-index: 2;
    animation: fadeUp 0.8s ease both;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-family: 'Cinzel Decorative', serif;
    font-size: 55px;
    line-height: 72px;
    color: var(--gold-light);
    text-shadow: 0 0 60px rgba(212, 168, 67, 0.5), 0 0 120px rgba(107, 47, 160, 0.4);
    position: relative;
    z-index: 2;
    animation: fadeUp 0.9s ease 0.2s both;
    max-width: 1200px;
    letter-spacing: 0.5px;
    font-weight: 700;
}

.hero h1 em {
    font-style: normal;
    color: #fff;
}

.hero-sub {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: #fff;
    margin-top: 10px;
    max-width: 800px;
    line-height: 35px;
    position: relative;
    z-index: 2;
    animation: fadeUp 1s ease 0.4s both;
    font-style: italic;
    letter-spacing: 0.5px;
}

/* Date pill */
.date-pill {
    display: flex;
    gap: 28px;
    margin-top: 28px;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
    animation: fadeUp 1s ease 0.6s both;
    flex-wrap: wrap;
    justify-content: center;
}

.date-item {
    text-align: center;
}

.date-item .label {
    font-size: 12px;
    letter-spacing: 0.25em;
    color: var(--gold);
    display: block;
    margin-bottom: 4px;
    font-weight: 500;
}

.date-item .value {
    font-family: 'Cinzel', serif;
    font-size: 1.05rem;
    color: var(--white);
    font-weight: 600;
    letter-spacing: 0.7px;
}

.date-divider {
    width: 1px;
    background: rgba(212, 168, 67, 0.3);
    align-self: stretch;
}

.price-badge {
    background: linear-gradient(135deg, #6b2fa0, #3d0f72);
    border: 1px solid var(--gold);
    padding: 15px 32px;
    font-family: 'Cinzel', serif;
    font-size: 18px;
    color: var(--gold-light);
    letter-spacing: 0.1em;
    position: relative;
    z-index: 2;
    animation: fadeUp 1s ease 0.7s both;
}

.price-badge strike {
    color: var(--text-muted);
    font-size: 0.85em;
    margin-right: 8px;
}

.hero-cta {
    position: relative;
    z-index: 2;
    animation: fadeUp 1s ease 0.9s both;
}

.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, #d4a843, #b8860b, #d4a843);
    background-size: 200% 100%;
    color: #05020a;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.15em;
    padding: 18px 52px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    clip-path: polygon(16px 0%, 100% 0%, calc(100% - 16px) 100%, 0% 100%);
    transition: background-position 0.4s, box-shadow 0.3s, transform 0.2s;
    animation: moveLeftRight 1.8s ease-in-out infinite
}

@keyframes goldPulse {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(212, 168, 67, 0.4);
    }

    50% {
        box-shadow: 0 0 40px rgba(212, 168, 67, 0.8), 0 0 80px rgba(212, 168, 67, 0.3);
    }
}

.btn-primary:hover {
    transform: translateY(-2px);
    background-position: 100% 0;
}

.hero-trust {
    margin-top: 20px;
    font-size: 14px;
    color: #fff;
    letter-spacing: 0.1em;
    font-weight: 500;
    position: relative;
    z-index: 2;
    animation: fadeUp 1s ease 1.1s both;
}

/* ── SECTION BASE ── */
section {
    position: relative;
    z-index: 1;
    padding: 60px 0;
}

.section-label {
    font-family: 'Cinzel', serif;
    font-size: 0.68rem;
    letter-spacing: 0.35em;
    color: #f5d98a;
    text-align: center;
    display: block;
    margin-bottom: 14px;
}

.section-title {
    font-family: 'Cinzel Decorative', serif;
    font-size: 42px;
    text-align: center;
    color: var(--gold-light);
    line-height: 58px;
    margin-bottom: 16px;
}

.section-desc {
    text-align: center;
    color: #fff;
    font-size: 19px;
    line-height: 1.9;
    margin: 0 auto 56px;
    letter-spacing: 0.6px;
}

.divider {
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 16px auto 0;
}

/* ── WHAT IS ── */
.what-is {
    padding: 70px 0;
    background: linear-gradient(180deg, transparent, rgba(42, 10, 74, 0.3), transparent);
}

.what-grid {}

.what-card {
    background: rgba(42, 10, 74, 0.25);
    border: 1px solid rgba(212, 168, 67, 0.15);
    padding: 20px 25px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s, background 0.3s;
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 15px;
}

.what-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.what-card:hover {
    border-color: rgba(212, 168, 67, 0.4);
    background: rgba(42, 10, 74, 0.45);
}

.what-card:hover::before {
    opacity: 1;
}

.what-num {
    font-family: 'Cinzel Decorative', serif;
    font-size: 35px;
    color: rgb(212 168 67 / 32%);
    line-height: 1;
}

.what-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 16px;
    color: var(--gold-light);
    letter-spacing: 0.08em;
    line-height: 30px;
    margin-bottom: 0 !important;
}

h3 {}

.what-card p {
    font-size: 16px;
    color: #fff;
    line-height: 1.8;
    letter-spacing: 0.4px;
}

/* ── BENEFITS ── */
.benefits {
    padding: 60px 0;
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 20px;
}

.benefit-item {
    display: flex;
    gap: 20px;
    align-items: center;
    padding: 18px 25px;
    transition: border-color 0.3s, transform 0.3s;
    background: linear-gradient(135deg,
            rgb(13 8 37 / 75%),
            rgb(30 20 70 / 55%));
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgb(255 255 255 / 12%);
    box-shadow: 0 8px 32px rgb(0 0 0 / 30%);
    border-radius: 20px;
}

.benefit-item:hover {
    border-color: rgba(212, 168, 67, 0.35);
    transform: translateY(-3px);
}

.benefit-icon {
    font-size: 1.6rem;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    padding:8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-dim);
    border: 1px solid rgba(212, 168, 67, 0.3);
}

.benefit-item h3 {
    font-size: 16px;
    line-height: 28px;
    color: var(--gold-light);
    letter-spacing: 0.06em;
    font-weight: 500;
}

.benefit-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.75;
}

/* ── FACILITATORS ── */
.facilitators {
    padding: 80px 0;
    background: linear-gradient(180deg, transparent, rgba(42, 10, 74, 0.2), transparent);
}

.fac-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 20px;
}

.fac-card {
    text-align: center;
    padding: 40px 24px;
    border: 1px solid rgba(212, 168, 67, 0.15);
    background: rgba(5, 2, 16, 0.6);
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s;
}

.fac-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transform: scaleX(0);
    transition: transform 0.4s;
}

.fac-card:hover {
    border-color: rgba(212, 168, 67, 0.35);
}

.fac-card:hover::after {
    transform: scaleX(1);
}

.fac-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 20px;
    border: 2px solid rgba(212, 168, 67, 0.4);
    background: linear-gradient(135deg, var(--violet), #1a0535);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    box-shadow: 0 0 30px rgba(212, 168, 67, 0.2);
    overflow: hidden;
    object-fit: cover;
}

.fac-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.fac-role {
    font-family: 'Cinzel', serif;
    font-size: 0.62rem;
    letter-spacing: 0.25em;
    color: var(--gold);
    display: block;
    margin-bottom: 6px;
}

.fac-name {
    font-family: 'Cinzel', serif;
    font-size: 22px;
    color: #fff;
    margin-bottom: 14px;
    letter-spacing: 1px;
}

.fac-bio {
    font-size: 14px;
    color: #fff;
    line-height: 28px;
    letter-spacing: 0.7px;
    margin: 0 !important;
}

/* ── TESTIMONIALS ── */
.testimonials {
    padding: 50px 0 80px;
}


/* ── COUNTDOWN ── */
.countdown-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(42, 10, 74, 0.4), rgba(13, 8, 37, 0.8), rgba(42, 10, 74, 0.4));
    border-top: 1px solid rgba(212, 168, 67, 0.15);
    border-bottom: 1px solid rgba(212, 168, 67, 0.15);
    text-align: center;
}

.countdown-title {
    font-family: 'Cinzel', serif;
    font-size: 14px;
    letter-spacing: 0.3em;
    color: var(--gold);
    text-align: left;
    margin-bottom: 12px;
}

.countdown {
    display: flex;
    gap: 32px;
    margin-bottom: 0;
    flex-wrap: wrap;
    align-items: center;
}

.count-box {
    text-align: center;
}

.count-num {
    font-family: 'Cinzel Decorative', serif;
    font-size: 25px;
    color: var(--gold-light);
    display: block;
    text-shadow: 0 0 30px rgba(212, 168, 67, 0.5);
    line-height: 1;
}

.count-label {
    font-family: 'Cinzel', serif;
    font-size: 0.6rem;
    letter-spacing: 0.25em;
    color: var(--text-muted);
    margin-top: 6px;
    display: block;
}

.count-colon {
    font-family: 'Cinzel Decorative', serif;
    font-size: 32px;
    color: rgba(212, 168, 67, 0.3);
    align-self: flex-start;
    animation: blink 1s step-end infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: 0
    }
}

/* ── CTA SECTION ── */
.cta-section {
    padding: 100px 0;
    text-align: center;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(107, 47, 160, 0.25) 0%, transparent 70%);
    pointer-events: none;
}

.price-display {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 15px 66px;
    border: 1px solid rgba(212, 168, 67, 0.3);
    background: rgba(42, 10, 74, 0.3);
    text-decoration: none;
}

.price-old i {
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.price-new {
    font-size: 22px;
    color: var(--gold-light);
    text-shadow: 0 0 30px rgba(212, 168, 67, 0.5);
    text-decoration: none;
    font-weight: 500;
}

.price-label i{
    font-size: 25px;
    letter-spacing: 0.2em;
    color: var(--gold-light);
    align-self: flex-end;
}

.btn-hero {
    display: inline-block;
    background: linear-gradient(135deg, #d4a843, #b8860b);
    color: #05020a;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.12em;
    padding: 22px 64px;
    border: none;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
    clip-path: polygon(20px 0%, 100% 0%, calc(100% - 20px) 100%, 0% 100%);
    transition: transform 0.2s, box-shadow 0.3s;
    animation: moveLeftRight 1.8s ease-in-out infinite;
}

@keyframes moveLeftRight {
    0% {
        transform: translateX(0px);
    }

    50% {
        transform: translateX(15px);
    }

    100% {
        transform: translateX(0px);
    }
}

@keyframes shine {
    0% {
        left: -100px;
    }

    50% {
        left: 100%;
    }

    100% {
        left: 100%;
    }
}



.btn-hero::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100%;
    background-image: linear-gradient(120deg, #fff0 30%, rgb(255 255 255 / .5), #fff0 70%);
    top: 0;
    left: -100px;
    animation: shine 3s infinite linear;
    transition: left 4s;
}

.btn-hero:hover {
    transform: translateY(-3px);
}

.guarantee {
    margin-top: 20px;
    font-size: 0.78rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    letter-spacing: 0.05em;
}

/* ── FOOTER ── */
footer {
    border-top: 1px solid rgba(212, 168, 67, 0.1);
    padding: 32px 20px;
    text-align: center;
    font-size: 0.75rem;
    color: rgba(245, 240, 255, 0.35);
    letter-spacing: 0.1em;
    font-family: 'Cinzel', serif;
    position: relative;
    z-index: 1;
}

footer .footer-logo {
    font-family: 'Cinzel Decorative', serif;
    font-size: 1rem;
    color: rgba(212, 168, 67, 0.5);
    margin-bottom: 10px;
}

/* ── FAQ ── */
.faq {
    padding: 70px 0;
    background: linear-gradient(180deg, transparent, rgba(42, 10, 74, 0.15), transparent);
}

.faq-list {
    max-width: 1000px;
    margin: 20px auto 0;
}

.faq-item {
    border-bottom: 1px solid rgba(212, 168, 67, 0.1);
}

.faq-q {
    font-family: 'Cinzel', serif;
    font-size: 18px;
    color: var(--gold-light);
    padding: 22px 0;
    cursor: pointer;
    letter-spacing: 0.7px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    user-select: none;
}

.faq-arrow {
    color: var(--gold);
    transition: transform 0.3s;
    flex-shrink: 0;
    font-size: 1.1rem;
}

.faq-item.open .faq-arrow {
    transform: rotate(180deg);
}

.faq-a {
    font-size: 16px;
    color: #fff;
    line-height: 28px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s;
    letter-spacing: 0.5px;
}

.faq-item.open .faq-a {
    max-height: 200px;
    padding-bottom: 20px;
    padding-right: 35px;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {

    .what-grid {
        grid-template-columns: 1fr;
    }

    .fac-grid {
        grid-template-columns: 1fr;
    }

    .testi-grid {
        grid-template-columns: 1fr;
    }

    .ring {
        display: none;
    }

    .date-pill {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .date-divider {
        display: none;
    }

    .price-display {
        gap: 15px;
        padding: 16px 24px;
        justify-content: center;
    }

    .count-num {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .nav-cta {
        padding: 8px 16px;
        font-size: 10px;
    }

  
}

.what-is .content p {
    font-size: 18px;
    line-height: 32px;
    letter-spacing: 0.8px;
    color: #fff;
    margin-bottom: 12px;
}

.sec-cta {
    padding: 0;
    position: relative;
    overflow: hidden;
    height: 580px;
    z-index: 1;
}

.sec-cta img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.sec-cta .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, var(--deep) 0%, transparent 25%, transparent 75%, var(--deep) 100%);
    pointer-events: none;
}

.sec-cta .ova2 {
    position: absolute;
    inset: 0;
    background: rgba(5, 2, 16, 0.45);
    pointer-events: none;
}

.sec-cta .head-div {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.sec-cta .head-box {
    font-family: 'Cinzel', serif;
    font-size: 0.72rem;
    letter-spacing: 0.35em;
    color: var(--gold);
    margin-bottom: 16px;
}

.sec-cta .head-div h2 {
    font-family: 'Cinzel Decorative', serif;
    font-size: 36px;
    color: #ffe6a1;
    text-shadow: 0 0 40px rgba(212, 168, 67, 0.6);
    max-width: 700px;
    line-height: 52px;
    letter-spacing: 0.8px;
}

.sec-cta .head-div .border {
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 20px auto;
    border: unset !important;
}

.sec-cta p {
    color: #fff;
    font-size: 18px;
    font-style: italic;
    font-weight: 600;
    max-width: 800px;
    line-height: 1.8;
    letter-spacing: 1.1px;
}

.fac-card span {
    color: var(--gold);
    display: block;
    margin: 10px;
    font-size: 15px;
    letter-spacing: 0.4px;
    font-weight: 500;
    line-height: 24px;
}

.gift-sec .gift-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 28px;
}

.gift-box {
    text-align: center;
    padding: 28px 20px;
    background: rgba(42, 10, 74, 0.25);
    border: 1px solid rgba(212, 168, 67, 0.12);
}

.gift-box .icon {
    margin-bottom: 15px;
}

.gift-box .icon img {
    width: 42px;
}

.gift-box .head {
    font-family: 'Cinzel', serif;
    font-size: 18px;
    color: var(--gold-light);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.gift-box p {
    font-size: 15px;
    color: #fff;
    line-height: 26px;
    letter-spacing: 0.5px;
}

.countdown-section {
    position: relative;
    overflow: hidden;
}

.countdown-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.18;
}

.cta-section .d-flex {
    gap: 30px;
    align-items: center;
    justify-content: center;
}

.event-details {
    margin-top: 48px;
    padding: 28px 32px;
    border: 1px solid rgba(212, 168, 67, 0.2);
    background: rgba(42, 10, 74, 0.2);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 48px;
}

.event-details h2 {
    font-family: 'Cinzel', serif;
    font-size: 24px;
    letter-spacing: 1px;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 14px;
}

.event-details ul {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 2;
    list-style: none;
    padding: 0;
}

.event-details ul li {
    display: flex;
    font-size: 18px;
    justify-content: space-between;
    letter-spacing: 0.5px;
    color: #fff;
    border-bottom: 1px solid #ffffff59;
    padding: 15px 0;
}

.event-details ul li strong {
    color: var(--gold);
}

.event-details ul li:last-child {
    border: 0 !important;
    padding-bottom: 0 !important;
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 40px;
}

.card {
    background: #141418;
    border: 1px solid #2a2a32;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.card.playing {
    box-shadow: 0 0 0 2px #e8c97d, 0 8px 40px rgba(232, 201, 125, 0.18);
    border-color: #e8c97d;
}

/* Video wrapper with custom play overlay */
.video-wrap {
    position: relative;
    background: #000;
}

.video-wrap video {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
}

/* Play button overlay */
.play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.35);
    transition: opacity 0.3s;
}

.play-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.play-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #e8c97d;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 24px rgba(232, 201, 125, 0.4);
    transition: transform 0.2s;
}

.card:hover .play-btn {
    transform: scale(1.1);
}

.play-btn svg {
    fill: #0d0d0f;
    margin-left: 4px;
}

/* Card info */
.card-info {
    padding: 18px 20px 20px;
}

.card-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 600;
    color: #0d0d0f;
    flex-shrink: 0;
    background: linear-gradient(135deg, #e8c97d, #c47f5b);
}

.author-name {
    font-size: 14px;
    font-weight: 500;
    color: #f0ede8;
}

.author-role {
    font-size: 12px;
    color: #7a7880;
    margin-top: 2px;
}

.stars {
    margin-left: auto;
    color: #e8c97d;
    font-size: 13px;
    letter-spacing: 2px;
}

/* Playing badge */
.badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #e8c97d;
    color: #0d0d0f;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.1em;
    padding: 3px 9px;
    border-radius: 20px;
    text-transform: uppercase;
    display: none;
}


.social-side {
    position: fixed;
    left: 10px;
    bottom: 50px;
    z-index: 999999;
    display: flex;
    mix-blend-mode: exclusion;
    color: #fff;
}

.socials {
    text-align: center;
    font-size: 15px;
    list-style: none;
    gap: 15px;
    padding: 0;
}

.social-side .icon {
    text-align: center;
    width: 30px;
    line-height: 30px;
    cursor: pointer;
    writing-mode: vertical-rl;
    -webkit-text-orientation: mixed;
    text-orientation: mixed;
    white-space: nowrap;
    letter-spacing: 2px;
    font-weight: 600;
    font-size: 12px;
    margin-top: 20px;
    font-family: 'Cinzel';
}

.social-side .icon:before {
    content: "";
    position: relative;
    display: inline-block;
    border-left: 1px solid #fff;
    height: 50px;
    margin-bottom: 10px;
}

.socials li a {
    position: relative;
    margin-bottom: 10px;
    margin-top: 5px;
    color: #fff;
}

.socials li a i {
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.socials li a span {
    position: absolute;
    top: 50%;
    left: 50%;
    color: #fff;
    font-size: 13px;
    opacity: 0;
    transform-origin: center bottom;
    cursor: pointer;
    transform: translateX(0px) translateY(-50%);
}

.socials li a:after,
.socials li a span,
.socials li a:hover i {
    transition: all 0.3s cubic-bezier(0.55, 0.02, 0.1, 0.9);
}

.socials li a:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--heading-color);
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.2);
}

.socials li a:hover i {
    transform: scale(0);
}

.socials li a:hover span {
    opacity: 1;
    transform: translateX(10px) translateY(-50%);
}

.sticky-amount {
    background: linear-gradient(135deg, rgb(13 8 37 / 75%), rgb(30 20 70 / 55%));
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 8px 32px rgb(0 0 0 / 30%);
    z-index: 99;
    border-top: 2px solid var(--gold);
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    transition: all 0.4s ease;
    opacity: 1;
    transform: translateY(0);
    border-radius: 20px 20px 0 0;
    padding: 20px 0;
}

.sticky-amount .sticky-grid {
    display: grid;
    grid-template-columns: 55% 45%;
    align-items: center;
}


.sticky-amount.hide {
    opacity: 0;
    transform: translateY(100%);
    pointer-events: none;
}

.sticky-amount .countdown-section {
    display: grid;
    grid-template-columns: 17% 78%;
    align-items: center;
    gap: 30px;
    padding: 0;
}

.sticky-amount .countdown-section .countdown-timer {
    display: flex;
    justify-content: start;
    gap: 15px;
    margin-bottom: 0;
    flex-wrap: wrap;
}

.sticky-amount .countdown-section h3 {
    font-size: 17px;
    margin-bottom: 0;
}

.sticky-amount .countdown-section .countdown-timer span {
    min-width: 50px !important;
    font-size: 18px;
    padding: 9px 14px !important;
    color: #fbb03b;
}

.sticky-amount .btn-hero{
padding: 12px 45px;
font-size: 16px;
}


.floating_btn {
    position: fixed;
    bottom: 16%;
    right: 30px;
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

@keyframes pulsing {
    to {
        box-shadow: 0 0 0 30px rgba(232, 76, 61, 0);
    }
}

.contact_icon {
    background-color: #42db87;
    color: #fff;
    width: 60px;
    height: 60px;
    font-size: 30px;
    border-radius: 50px;
    text-align: center;
    box-shadow: 2px 2px 3px #999;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translatey(0px);
    animation: pulse 1.5s infinite;
    box-shadow: 0 0 0 0 #42db87;
    -webkit-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -moz-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -ms-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    font-weight: normal;
    font-family: sans-serif;
    text-decoration: none !important;
    transition: all 300ms ease-in-out;
}

.floating_btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Akashic Modal */

#akashicModal .modal-dialog {
    max-width: 440px;
}

#akashicModal .modal-content {
    border-radius: 20px;
}

#akashicModal .modal-body {
    padding: 30px;
}

#akashicModal .modal-body .modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #F1E9FB;
    color: #1A1129;
    display: flex;
    align-items: center;
    justify-content: center;
    border: unset;
    font-size: 15px;
}

#akashicModal .modal-body .modal-close i {
    transform: translateY(1px);
}

#akashicModal form h2 {
    font-size: 20px;
    margin-bottom: 6px;
    color: #1F0E40;
    font-family: 'Cinzel Decorative', serif;
    font-weight: 700;
}

#akashicModal form .modal-sub {
    color: #6B5E85;
    font-size: 14px;
    margin-bottom: 16px;
    font-weight: 500;
}

#akashicModal form .form-group {
    margin-bottom: 16px;
}

#akashicModal form .form-group label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #1A1129;
    margin-bottom: 6px;
    font-family: 'Cinzel', serif;
}

#akashicModal form .form-group input {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid #EBE2F5 ;
    border-radius: 11px;
    font-size: 15px;
    font-family: inherit;
    color: #1A1129;
    background: #fff;
    transition: all .2s ease;
    font-weight: 500;
    box-shadow: unset;
}

#akashicModal form .form-group .phone-grp {
    display: flex;
}

#akashicModal form .form-group .phone-grp .prefix {
    display: inline-flex;
    align-items: center;
    width: 100px;
    padding: 0 14px;
    background: #FBFAFD;
    border: 1.5px solid #EBE2F5;
    border-right: none;
    border-radius: 11px 0 0 11px;
    font-size: 14px;
    font-weight: 600;
    color: #3D2F5C;
}

#akashicModal form .form-group .phone-grp input {
    border-radius: 0 11px 11px 0;
}

#akashicModal form .price-box {
    margin-top: 18px;
    padding: 16px;
    background: #FBFAFD;
    border-radius: 12px;
}

#akashicModal form .price-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 14px;
    color: #6B5E85;
    font-weight: 500;
}

#akashicModal form .price-row.total {
    border-top: 1px solid #EBE2F5;
    padding-top: 11px;
    margin-top: 6px;
    font-size: 16.5px;
    font-weight: 600;
    color: #1A1129;
}

#akashicModal form .btn-block {
    margin-top: 18px;
    background: linear-gradient(135deg,#5B2EA6 0%,#7B3FB8 100%);
    padding: 17px 36px;
    font-size: 16px;
    color: #ffffff;
    font-weight: 500;
    letter-spacing: 0.8px;
    z-index: 2;
    width: 100%;
    box-shadow: 0 12px 28px rgba(91, 46, 166, .4);
    position: relative;
    overflow: hidden;
    line-height: 1.1;
    border-radius: 14px;
}

#akashicModal form .modal-trust {
    text-align: center;
    font-size: 12px;
    color: #6B5E85;
    margin-top: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

#akashicModal form .btn-block::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -80%;
    width: 50%;
    height: 200%;
    background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, .5) 50%, transparent 100%);
    transform: skewX(-22deg);
    animation: shine 2.8s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
}

@keyframes shine {
    0% {
        left: -80%;
    }
    55% {
        left: 130%;
    }

    100% {
        left: 130%;
    }
}

label.error {
    margin-top: 6px;
    margin-bottom: unset !important;
    color: red !important;
    font-size: 12px !important;
    line-height: 18px;
    font-weight: 500 !important;
    letter-spacing: .4px;
    font-family: 'Poppins', sans-serif !important;
}

#akashicModal form .alert-success {
    text-transform: capitalize;
    letter-spacing: .6px;
    color: #5B2EA6;
    border: 2px solid #5B2EA6;
    padding: 8px 16px 6px;
    font-size: 12px;
    font-weight: 600;
    background: transparent;
}