/* =====================================================
   ISHA GRAND EVENTS
   BOOK TICKETS PAGE
   ROYAL BLUE + ROSE GOLD THEME
===================================================== */

/* =========================
   ROOT VARIABLES
========================= */

:root {

    --royal-blue: #081C4B;
    --royal-blue-dark: #050E25;

    --rose-gold: #B76E79;
    --rose-gold-light: #D9A5AE;

    --cream: #F5E6CC;
    --white: #FFFFFF;

    --text-light: rgba(255,255,255,0.85);
    --text-muted: rgba(255,255,255,0.65);

    --shadow:
        0 20px 50px rgba(0,0,0,0.25);

    --transition: all 0.4s ease;
}

/* =========================
   RESET
========================= */

* {

    margin: 0;
    padding: 0;

    box-sizing: border-box;
}

html {

    scroll-behavior: smooth;
}

body {

    font-family: 'Poppins', sans-serif;

    background:
        linear-gradient(
            180deg,
            #030A1D,
            #081C4B
        );

    color: white;

    overflow-x: hidden;
}

/* =========================
   SCROLLBAR
========================= */

::-webkit-scrollbar {

    width: 10px;
}

::-webkit-scrollbar-track {

    background: #050E25;
}

::-webkit-scrollbar-thumb {

    background: var(--rose-gold);

    border-radius: 20px;
}

/* =========================
   COMMON
========================= */

.container {

    width: 90%;

    max-width: 1400px;

    margin: auto;
}

.section-padding {

    padding: 120px 0;
}

.section-title {

    text-align: center;

    margin-bottom: 70px;
}

.section-title span {

    color: var(--rose-gold-light);

    text-transform: uppercase;

    letter-spacing: 3px;

    font-size: 0.9rem;
}

.section-title h2 {

    font-family: 'Cinzel', serif;

    font-size: clamp(2rem,4vw,4rem);

    margin-top: 15px;

    color: var(--cream);
}

/* =========================
   BUTTONS
========================= */

.btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    padding: 15px 35px;

    text-decoration: none;

    border-radius: 50px;

    font-weight: 600;

    transition: var(--transition);
}

.btn-primary {

    background: var(--rose-gold);

    color: white;
}

.btn-primary:hover {

    transform: translateY(-5px);

    box-shadow:
        0 10px 30px rgba(183,110,121,0.5);
}

.btn-secondary {

    border: 1px solid var(--rose-gold);

    color: white;
}

.btn-secondary:hover {

    background: var(--rose-gold);
}

/* =========================
   LOADER
========================= */

.loader-wrapper {

    position: fixed;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            #030A1D,
            #081C4B
        );

    z-index: 9999;

    display: flex;

    justify-content: center;

    align-items: center;
}

.loader-content {

    text-align: center;
}

.loader-logo {

    width: 120px;

    margin-bottom: 20px;
}

.loader-content h2 {

    color: var(--cream);

    font-family: 'Cinzel', serif;

    margin-bottom: 10px;
}

.loader-content p {

    color: var(--text-muted);

    margin-bottom: 20px;
}

.loader {

    width: 60px;
    height: 60px;

    border: 4px solid rgba(255,255,255,0.15);

    border-top:
        4px solid var(--rose-gold);

    border-radius: 50%;

    margin: auto;

    animation: spin 1s linear infinite;
}

@keyframes spin {

    100% {

        transform: rotate(360deg);
    }
}

/* =========================
   HEADER
========================= */

.header {

    position: fixed;

    width: 100%;

    top: 0;

    z-index: 1000;

    transition: var(--transition);
}

.header.scrolled {

    background:
        rgba(5,14,37,0.95);

    backdrop-filter: blur(20px);
}

.navbar {

    width: 90%;

    max-width: 1400px;

    margin: auto;

    height: 90px;

    display: flex;

    align-items: center;

    justify-content: space-between;
}

.logo img {

    height: 75px;

    width: auto;
}

.nav-links {

    list-style: none;

    display: flex;

    gap: 35px;
}

.nav-links a {

    text-decoration: none;

    color: white;

    transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {

    color: var(--rose-gold);
}

.menu-btn {

    display: none;

    font-size: 1.8rem;

    cursor: pointer;
}

/* =========================
   HERO SECTION
========================= */

.ticket-hero {

    height: 100vh;

    position: relative;

    overflow: hidden;

    display: flex;

    justify-content: center;

    align-items: center;

    text-align: center;
}

.hero-video {

    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
}

.hero-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            rgba(3,10,29,0.7),
            rgba(8,28,75,0.8)
        );
}

.hero-content {

    position: relative;

    z-index: 5;

    max-width: 900px;

    padding: 20px;
}

.hero-content span {

    color: var(--rose-gold-light);

    letter-spacing: 4px;

    text-transform: uppercase;
}

.hero-content h1 {

    font-family: 'Cinzel', serif;

    font-size: clamp(4rem,8vw,7rem);

    color: var(--cream);

    margin-top: 15px;
}

.hero-content h3 {

    font-size: 1.8rem;

    color: white;

    margin-bottom: 20px;
}

.hero-content p {

    font-size: 1.1rem;

    color: var(--text-light);

    margin-bottom: 35px;
}






/* =====================================================
   COUNTDOWN TIMER
===================================================== */

#countdown {

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 25px;

    margin-top: 40px;

    margin-bottom: 40px;

    flex-wrap: wrap;
}

#countdown div {

    width: 120px;

    height: 120px;

    background:
        rgba(255,255,255,0.08);

    border: 1px solid rgba(255,255,255,0.15);

    backdrop-filter: blur(15px);

    border-radius: 20px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    transition: all 0.4s ease;
}

#countdown div:hover {

    transform: translateY(-10px);

    border-color: var(--rose-gold);

    box-shadow:
        0 15px 35px rgba(183,110,121,0.25);
}

#countdown span {

    font-size: 2.3rem;

    font-weight: 700;

    color: var(--cream);
}

#countdown small {

    color: var(--rose-gold-light);

    margin-top: 5px;

    letter-spacing: 1px;
}

/* =====================================================
   EVENT INFORMATION
===================================================== */

.event-info {

    position: relative;
}

.event-grid {

    display: grid;

    grid-template-columns:
        repeat(auto-fit,minmax(250px,1fr));

    gap: 30px;
}

.info-card {

    background:
        rgba(255,255,255,0.05);

    border: 1px solid rgba(255,255,255,0.08);

    backdrop-filter: blur(15px);

    border-radius: 25px;

    padding: 40px 25px;

    text-align: center;

    transition: all 0.4s ease;
}

.info-card:hover {

    transform: translateY(-10px);

    border-color: var(--rose-gold);

    box-shadow:
        0 20px 40px rgba(183,110,121,0.25);
}

.info-card i {

    font-size: 2.5rem;

    color: var(--rose-gold);

    margin-bottom: 20px;
}

.info-card h3 {

    color: var(--cream);

    margin-bottom: 10px;

    font-family: 'Cinzel', serif;
}

.info-card p {

    color: var(--text-light);
}

/* =====================================================
   TICKET SECTION
===================================================== */

.ticket-section {

    position: relative;
}

.ticket-grid {

    display: grid;

    grid-template-columns:
        repeat(auto-fit,minmax(340px,1fr));

    gap: 40px;

    align-items: stretch;
}

.ticket-card {

    position: relative;

    background:
        rgba(255,255,255,0.05);

    backdrop-filter: blur(15px);

    border: 1px solid rgba(255,255,255,0.08);

    border-radius: 30px;

    overflow: hidden;

    transition: all 0.5s ease;
}

.ticket-card:hover {

    transform:
        translateY(-12px);

    border-color: var(--rose-gold);

    box-shadow:
        0 20px 50px rgba(183,110,121,0.25);
}

.ticket-header {

    padding: 40px 30px;

    text-align: center;

    border-bottom:
        1px solid rgba(255,255,255,0.08);
}

.ticket-header h3 {

    font-family: 'Cinzel', serif;

    color: var(--cream);

    letter-spacing: 2px;

    margin-bottom: 15px;
}

.ticket-header h1 {

    font-size: 3rem;

    color: var(--rose-gold);
}

.ticket-card ul {

    list-style: none;

    padding: 35px;
}

.ticket-card ul li {

    margin-bottom: 18px;

    color: var(--text-light);

    display: flex;

    align-items: center;

    gap: 12px;
}

.ticket-card ul li i {

    color: var(--rose-gold);
}

.book-btn {

    display: block;

    margin: 0 35px 35px;

    text-align: center;

    padding: 16px;

    border-radius: 50px;

    background: var(--rose-gold);

    color: white;

    text-decoration: none;

    font-weight: 600;

    transition: all 0.4s ease;
}

.book-btn:hover {

    transform: translateY(-4px);

    box-shadow:
        0 12px 30px rgba(183,110,121,0.4);
}

/* =====================================================
   FEATURED VIP CARD
===================================================== */

.featured-ticket {

    border: 2px solid var(--rose-gold);

    transform: scale(1.04);

    background:

        linear-gradient(
            180deg,
            rgba(183,110,121,0.12),
            rgba(255,255,255,0.04)
        );
}

.featured-ticket:hover {

    transform:
        scale(1.06)
        translateY(-10px);
}

.ticket-badge {

    position: absolute;

    top: 20px;

    right: -35px;

    background: var(--rose-gold);

    color: white;

    padding: 10px 50px;

    font-size: 0.8rem;

    font-weight: 600;

    transform: rotate(45deg);

    letter-spacing: 1px;
}

/* =====================================================
   WHY ATTEND SECTION
===================================================== */

.features-grid {

    display: grid;

    grid-template-columns:
        repeat(auto-fit,minmax(280px,1fr));

    gap: 30px;
}

.feature-card {

    background:
        rgba(255,255,255,0.05);

    border: 1px solid rgba(255,255,255,0.08);

    backdrop-filter: blur(15px);

    border-radius: 25px;

    padding: 35px;

    text-align: center;

    transition: all 0.4s ease;
}

.feature-card:hover {

    transform: translateY(-10px);

    border-color: var(--rose-gold);

    box-shadow:
        0 15px 35px rgba(183,110,121,0.25);
}

.feature-card i {

    font-size: 2.8rem;

    color: var(--rose-gold);

    margin-bottom: 20px;
}

.feature-card h3 {

    color: var(--cream);

    margin-bottom: 12px;

    font-family: 'Cinzel', serif;
}

.feature-card p {

    color: var(--text-light);

    line-height: 1.8;
}






/* =====================================================
   BOOKING PROCESS
===================================================== */

.booking-process {

    position: relative;
}

.process-grid {

    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(250px, 1fr));

    gap: 30px;
}

.process-card {

    position: relative;

    background:
        rgba(255,255,255,0.05);

    border: 1px solid rgba(255,255,255,0.08);

    backdrop-filter: blur(15px);

    border-radius: 25px;

    padding: 40px 30px;

    text-align: center;

    transition: all 0.4s ease;
}

.process-card:hover {

    transform: translateY(-10px);

    border-color: var(--rose-gold);

    box-shadow:
        0 20px 40px rgba(183,110,121,0.25);
}

.process-card span {

    display: inline-flex;

    width: 70px;
    height: 70px;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--rose-gold);

    color: white;

    font-size: 1.8rem;
    font-weight: 700;

    margin-bottom: 20px;
}

.process-card h3 {

    font-family: 'Cinzel', serif;

    color: var(--cream);

    margin-bottom: 15px;
}

.process-card p {

    color: var(--text-light);

    line-height: 1.8;
}

/* =====================================================
   FAQ SECTION
===================================================== */

.faq-container {

    max-width: 900px;

    margin: auto;
}

.faq-item {

    background:
        rgba(255,255,255,0.05);

    border: 1px solid rgba(255,255,255,0.08);

    border-radius: 20px;

    overflow: hidden;

    margin-bottom: 20px;
}

.faq-question {

    width: 100%;

    background: transparent;

    border: none;

    color: white;

    padding: 25px;

    cursor: pointer;

    font-size: 1rem;

    font-weight: 600;

    display: flex;

    justify-content: space-between;

    align-items: center;
}

.faq-question i {

    color: var(--rose-gold);

    transition: 0.3s;
}

.faq-answer {

    max-height: 0;

    overflow: hidden;

    transition: max-height 0.4s ease;
}

.faq-answer p {

    padding: 0 25px 25px;

    color: var(--text-light);

    line-height: 1.8;
}

.faq-item.active .faq-answer {

    max-height: 200px;
}

.faq-item.active .faq-question i {

    transform: rotate(45deg);
}

/* =====================================================
   CTA SECTION
===================================================== */

.ticket-cta {

    position: relative;

    padding: 140px 0;

    text-align: center;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            rgba(183,110,121,0.15),
            rgba(8,28,75,0.85)
        );
}

.cta-overlay {

    position: absolute;

    inset: 0;

    background:
        radial-gradient(
            circle at center,
            rgba(183,110,121,0.15),
            transparent 70%
        );
}

.cta-content {

    position: relative;

    z-index: 2;

    max-width: 900px;

    margin: auto;
}

.cta-content span {

    color: var(--rose-gold-light);

    letter-spacing: 3px;

    text-transform: uppercase;
}

.cta-content h2 {

    font-family: 'Cinzel', serif;

    font-size: clamp(2rem,4vw,4.5rem);

    color: var(--cream);

    margin: 20px 0;
}

.cta-content p {

    color: var(--text-light);

    max-width: 700px;

    margin: auto;

    line-height: 1.9;
}

.cta-buttons {

    margin-top: 40px;

    display: flex;

    justify-content: center;

    gap: 20px;

    flex-wrap: wrap;
}

/* =====================================================
   FOOTER
===================================================== */

.footer {

    background: #040B1C;

    padding-top: 80px;
}

.footer-grid {

    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(250px, 1fr));

    gap: 50px;
}

.footer-logo {

    width: 120px;

    margin-bottom: 20px;
}

.footer-column p {

    color: var(--text-muted);

    line-height: 1.9;
}

.footer-column h3 {

    color: var(--cream);

    margin-bottom: 25px;

    font-family: 'Cinzel', serif;
}

.footer-column ul {

    list-style: none;
}

.footer-column ul li {

    margin-bottom: 15px;

    color: var(--text-light);
}

.footer-column ul li a {

    color: var(--text-light);

    text-decoration: none;

    transition: 0.3s;
}

.footer-column ul li a:hover {

    color: var(--rose-gold);
}

.footer-socials {

    margin-top: 25px;

    display: flex;

    gap: 15px;
}

.footer-socials a {

    width: 45px;
    height: 45px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        rgba(255,255,255,0.08);

    color: white;

    text-decoration: none;

    transition: 0.3s;
}

.footer-socials a:hover {

    background: var(--rose-gold);

    transform: translateY(-5px);
}

.footer-bottom {

    margin-top: 60px;

    border-top:
        1px solid rgba(255,255,255,0.08);

    padding: 25px 0;

    text-align: center;
}

.footer-bottom p {

    color: var(--text-muted);
}

/* =====================================================
   WHATSAPP FLOAT
===================================================== */

.whatsapp-float {

    position: fixed;

    right: 25px;

    bottom: 25px;

    width: 65px;
    height: 65px;

    border-radius: 50%;

    background: #25D366;

    color: white;

    display: flex;

    align-items: center;
    justify-content: center;

    text-decoration: none;

    font-size: 1.8rem;

    z-index: 999;

    box-shadow:
        0 10px 30px rgba(37,211,102,0.4);
}

/* =====================================================
   BACK TO TOP
===================================================== */

.back-to-top {

    position: fixed;

    right: 25px;

    bottom: 105px;

    width: 55px;
    height: 55px;

    border: none;

    border-radius: 50%;

    background: var(--rose-gold);

    color: white;

    cursor: pointer;

    display: none;

    z-index: 999;

    transition: 0.3s;
}

.back-to-top:hover {

    transform: translateY(-5px);
}

/* =====================================================
   MOBILE RESPONSIVE
===================================================== */

@media (max-width: 992px) {

    .nav-links {

        position: fixed;

        top: 90px;
        left: -100%;

        width: 100%;

        background: #050E25;

        flex-direction: column;

        text-align: center;

        padding: 30px 0;

        transition: 0.4s;
    }

    .nav-links.active {

        left: 0;
    }

    .menu-btn {

        display: block;
    }
}

@media (max-width: 768px) {

    .section-padding {

        padding: 80px 0;
    }

    .hero-content h1 {

        font-size: 3rem;
    }

    .hero-content h3 {

        font-size: 1.3rem;
    }

    #countdown {

        gap: 15px;
    }

    #countdown div {

        width: 90px;
        height: 90px;
    }

    #countdown span {

        font-size: 1.5rem;
    }

    .featured-ticket {

        transform: none;
    }

    .featured-ticket:hover {

        transform: translateY(-10px);
    }

    .cta-buttons {

        flex-direction: column;
    }

    .btn {

        width: 100%;
    }
}

@media (max-width: 480px) {

    .hero-content h1 {

        font-size: 2.5rem;
    }

    .ticket-grid,
    .features-grid,
    .process-grid {

        grid-template-columns: 1fr;
    }

    .footer-grid {

        grid-template-columns: 1fr;
    }
}