
/* ==========================================================
   ISHA GRAND EVENTS - EVENTS.CSS (PART 1)
   Luxury Theme: Royal Blue • Rose Gold • Cream • White
   Sections:
   1. Events Hero Section
   2. Common Section Styling
   3. Event Services Section
   4. Service Cards
========================================================== */

/* ================= EVENTS HERO ================= */

.events-hero {

    position: relative;

    min-height: 80vh;

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;

    background:
        linear-gradient(
            rgba(6, 15, 45, 0.75),
            rgba(6, 15, 45, 0.85)
        ),
        url('../assets/images/events/events-banner.jpg');

    background-size: cover;

    background-position: center;

    background-attachment: fixed;

    padding: 140px 0 100px;
}

.events-overlay {

    position: absolute;

    inset: 0;

    background:
        radial-gradient(
            circle at top center,
            rgba(183, 110, 121, 0.18),
            transparent 60%
        );

    pointer-events: none;
}

.events-hero-content {

    position: relative;

    z-index: 2;

    text-align: center;

    max-width: 850px;

    margin: auto;
}

.events-hero-content span {

    display: inline-block;

    color: var(--rose-gold);

    font-size: 1rem;

    font-weight: 600;

    letter-spacing: 3px;

    text-transform: uppercase;

    margin-bottom: 20px;

    padding: 10px 22px;

    border: 1px solid rgba(183, 110, 121, 0.35);

    border-radius: 50px;

    background: rgba(255, 255, 255, 0.05);

    backdrop-filter: blur(10px);
}

.events-hero-content h1 {

    font-family: 'Cinzel', serif;

    font-size: clamp(3rem, 7vw, 5.5rem);

    color: var(--cream);

    margin-bottom: 25px;

    line-height: 1.15;

    text-shadow: 0 5px 25px rgba(0, 0, 0, 0.4);
}

.events-hero-content p {

    font-size: 1.15rem;

    color: rgba(255, 255, 255, 0.9);

    line-height: 1.9;

    max-width: 700px;

    margin: auto;
}


/* ================= COMMON SECTION ================= */

.event-services {

    position: relative;

    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.02),
            transparent
        );
}

.event-services::before {

    content: "";

    position: absolute;

    top: -100px;
    right: -100px;

    width: 250px;
    height: 250px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(183, 110, 121, 0.08),
            transparent 70%
        );

    pointer-events: none;
}


/* ================= SERVICES GRID ================= */

.event-services .services-grid {

    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(280px, 1fr));

    gap: 35px;

    margin-top: 60px;
}


/* ================= SERVICE CARDS ================= */

.event-services .service-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: 25px;

    padding: 45px 35px;

    text-align: center;

    overflow: hidden;

    transition: all 0.4s ease;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.15);
}

.event-services .service-card::before {

    content: "";

    position: absolute;

    top: 0;
    left: -100%;

    width: 100%;
    height: 100%;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(183, 110, 121, 0.12),
            transparent
        );

    transition: 0.8s;
}

.event-services .service-card:hover::before {

    left: 100%;
}

.event-services .service-card:hover {

    transform:
        translateY(-12px);

    border-color:
        rgba(183, 110, 121, 0.3);

    box-shadow:
        0 20px 45px rgba(0, 0, 0, 0.25);
}

.event-services .service-card i {

    font-size: 3.5rem;

    color: var(--rose-gold);

    margin-bottom: 25px;

    transition: all 0.4s ease;
}

.event-services .service-card:hover i {

    color: var(--champagne-gold);

    transform:
        scale(1.1)
        rotate(8deg);
}

.event-services .service-card h3 {

    font-family: 'Cinzel', serif;

    font-size: 1.8rem;

    color: var(--cream);

    margin-bottom: 18px;
}

.event-services .service-card p {

    color: rgba(255, 255, 255, 0.75);

    line-height: 1.9;

    font-size: 0.96rem;
}


/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {

    .events-hero {

        min-height: 70vh;

        background-attachment: scroll;
    }

    .events-hero-content h1 {

        font-size: 3.5rem;
    }

    .event-services .services-grid {

        grid-template-columns:
            repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .events-hero {

        min-height: 60vh;

        padding: 120px 0 80px;
    }

    .events-hero-content span {

        font-size: 0.85rem;

        letter-spacing: 2px;
    }

    .events-hero-content h1 {

        font-size: 2.8rem;
    }

    .events-hero-content p {

        font-size: 1rem;
    }

    .event-services .services-grid {

        grid-template-columns: 1fr;
    }

    .event-services .service-card {

        padding: 35px 28px;
    }
}

@media (max-width: 576px) {

    .events-hero-content h1 {

        font-size: 2.3rem;
    }

    .events-hero-content p {

        font-size: 0.95rem;
    }
}


/* ==========================================================
   ISHA GRAND EVENTS - EVENTS.CSS (PART 2)
   Sections:
   1. Event Planning Process Timeline
   2. Featured Event Gallery
   3. Why Choose Us Section
========================================================== */


/* ================= EVENT PROCESS SECTION ================= */

.event-process {

    position: relative;

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,0.02),
            transparent
        );
}

.process-timeline {

    display: flex;

    justify-content: center;

    align-items: center;

    flex-wrap: wrap;

    gap: 20px;

    margin-top: 70px;

    position: relative;
}

.process-card {

    position: relative;

    width: 220px;

    min-height: 280px;

    background:
        rgba(255,255,255,0.05);

    backdrop-filter: blur(15px);

    border:
        1px solid rgba(255,255,255,0.08);

    border-radius: 25px;

    padding: 35px 25px;

    text-align: center;

    transition: all 0.4s ease;

    overflow: hidden;

    box-shadow:
        0 10px 30px rgba(0,0,0,0.15);
}

.process-card::before {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            135deg,
            rgba(183,110,121,0.08),
            transparent
        );

    opacity: 0;

    transition: 0.4s ease;
}

.process-card:hover::before {

    opacity: 1;
}

.process-card:hover {

    transform:
        translateY(-12px);

    border-color:
        rgba(183,110,121,0.3);

    box-shadow:
        0 20px 40px rgba(0,0,0,0.25);
}

.process-number {

    position: absolute;

    top: 18px;
    right: 20px;

    font-size: 1rem;

    font-weight: 700;

    color:
        rgba(183,110,121,0.35);
}

.process-icon {

    width: 80px;
    height: 80px;

    margin: 0 auto 25px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        linear-gradient(
            135deg,
            rgba(183,110,121,0.18),
            rgba(212,175,138,0.18)
        );
}

.process-icon i {

    font-size: 32px;

    color: var(--rose-gold);
}

.process-card h3 {

    font-family: 'Cinzel', serif;

    color: var(--cream);

    font-size: 1.5rem;

    margin-bottom: 15px;
}

.process-card p {

    color:
        rgba(255,255,255,0.75);

    line-height: 1.8;

    font-size: 0.95rem;
}

.process-line {

    width: 60px;

    height: 3px;

    background:
        linear-gradient(
            90deg,
            var(--rose-gold),
            var(--champagne-gold)
        );

    border-radius: 10px;
}


/* ================= FEATURED EVENT GALLERY ================= */

.featured-gallery {

    position: relative;

    background:
        linear-gradient(
            180deg,
            transparent,
            rgba(255,255,255,0.03)
        );
}

.gallery-grid {

    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(320px, 1fr));

    gap: 30px;

    margin-top: 60px;
}

.gallery-item {

    position: relative;

    overflow: hidden;

    border-radius: 25px;

    cursor: pointer;

    box-shadow:
        0 10px 30px rgba(0,0,0,0.15);
}

.gallery-item img {

    width: 100%;

    height: 350px;

    object-fit: cover;

    transition: transform 0.7s ease;
}

.gallery-item:hover img {

    transform: scale(1.12);
}

.gallery-overlay {

    position: absolute;

    inset: 0;

    display: flex;

    align-items: flex-end;

    padding: 30px;

    background:
        linear-gradient(
            to top,
            rgba(6,15,45,0.95),
            transparent
        );

    transition: all 0.4s ease;
}

.gallery-item:hover .gallery-overlay {

    background:
        linear-gradient(
            to top,
            rgba(10,23,78,0.95),
            rgba(183,110,121,0.18)
        );
}

.gallery-overlay h3 {

    color: var(--cream);

    font-family: 'Cinzel', serif;

    font-size: 1.7rem;

    transform: translateY(20px);

    opacity: 0;

    transition: all 0.4s ease;
}

.gallery-item:hover .gallery-overlay h3 {

    transform: translateY(0);

    opacity: 1;
}


/* ================= WHY CHOOSE US ================= */

.why-events {

    position: relative;
}

.why-grid {

    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(260px, 1fr));

    gap: 30px;

    margin-top: 60px;
}

.why-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: 25px;

    padding: 40px 30px;

    text-align: center;

    overflow: hidden;

    transition: all 0.4s ease;
}

.why-card::before {

    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 0;

    height: 4px;

    background:
        linear-gradient(
            90deg,
            var(--rose-gold),
            var(--champagne-gold)
        );

    transition: width 0.5s ease;
}

.why-card:hover::before {

    width: 100%;
}

.why-card:hover {

    transform:
        translateY(-12px);

    box-shadow:
        0 20px 40px rgba(0,0,0,0.25);

    border-color:
        rgba(183,110,121,0.25);
}

.why-card i {

    font-size: 3.2rem;

    color: var(--rose-gold);

    margin-bottom: 25px;

    transition: all 0.4s ease;
}

.why-card:hover i {

    color: var(--champagne-gold);

    transform:
        scale(1.1)
        rotate(10deg);
}

.why-card h3 {

    font-family: 'Cinzel', serif;

    color: var(--cream);

    margin-bottom: 18px;

    font-size: 1.5rem;
}

.why-card p {

    color:
        rgba(255,255,255,0.75);

    line-height: 1.8;

    font-size: 0.95rem;
}


/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {

    .process-timeline {

        flex-direction: column;
    }

    .process-line {

        width: 3px;

        height: 50px;
    }

    .gallery-grid {

        grid-template-columns:
            repeat(2, 1fr);
    }

    .why-grid {

        grid-template-columns:
            repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .gallery-grid,
    .why-grid {

        grid-template-columns: 1fr;
    }

    .process-card {

        width: 100%;

        max-width: 350px;
    }

    .gallery-item img {

        height: 280px;
    }

    .gallery-overlay h3 {

        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {

    .process-card {

        padding: 30px 25px;
    }

    .why-card {

        padding: 35px 25px;
    }

    .gallery-item img {

        height: 240px;
    }
}



/* ==========================================================
   ISHA GRAND EVENTS - EVENTS.CSS (PART 3)
   Sections:
   1. FAQ Section
   2. Premium CTA Banner
   3. Events Page Enhancements
   4. Final Responsive Styles
========================================================== */


/* ================= FAQ SECTION ================= */

.faq-section {

    position: relative;

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,0.02),
            transparent
        );
}

.faq-container {

    max-width: 900px;

    margin: 60px auto 0;
}

.faq-item {

    background:
        rgba(255,255,255,0.05);

    backdrop-filter: blur(15px);

    border:
        1px solid rgba(255,255,255,0.08);

    border-radius: 20px;

    margin-bottom: 20px;

    overflow: hidden;

    transition: all 0.4s ease;
}

.faq-item:hover {

    border-color:
        rgba(183,110,121,0.3);

    box-shadow:
        0 15px 35px rgba(0,0,0,0.2);
}

.faq-item.active {

    border-color:
        rgba(183,110,121,0.4);

    box-shadow:
        0 20px 40px rgba(0,0,0,0.25);
}


/* FAQ Question */

.faq-question {

    width: 100%;

    background: transparent;

    border: none;

    outline: none;

    cursor: pointer;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 28px 30px;

    text-align: left;
}

.faq-question span {

    font-family: 'Cinzel', serif;

    font-size: 1.15rem;

    color: var(--cream);

    line-height: 1.6;
}

.faq-question i {

    color: var(--rose-gold);

    font-size: 1.2rem;

    transition: all 0.4s ease;
}

.faq-item.active .faq-question i {

    transform: rotate(45deg);

    color: var(--champagne-gold);
}


/* FAQ Answer */

.faq-answer {

    max-height: 0;

    overflow: hidden;

    transition:
        max-height 0.5s ease,
        padding 0.5s ease;
}

.faq-answer p {

    color:
        rgba(255,255,255,0.75);

    line-height: 1.9;

    padding:
        0 30px 30px;

    font-size: 0.96rem;
}

.faq-item.active .faq-answer {

    max-height: 250px;
}


/* ================= CTA SECTION ================= */

.events-cta {

    position: relative;

    overflow: hidden;

    padding: 120px 0;

    background:
        linear-gradient(
            135deg,
            rgba(183,110,121,0.15),
            rgba(10,23,78,0.95)
        );
}

.events-cta::before {

    content: "";

    position: absolute;

    top: -120px;
    right: -120px;

    width: 320px;
    height: 320px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(212,175,138,0.12),
            transparent
        );
}

.events-cta::after {

    content: "";

    position: absolute;

    bottom: -100px;
    left: -100px;

    width: 280px;
    height: 280px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(183,110,121,0.10),
            transparent
        );
}

.events-cta .cta-content {

    position: relative;

    z-index: 2;

    text-align: center;

    max-width: 850px;

    margin: auto;
}

.events-cta .cta-content span {

    display: inline-block;

    color: var(--rose-gold);

    font-weight: 600;

    letter-spacing: 3px;

    text-transform: uppercase;

    margin-bottom: 20px;
}

.events-cta .cta-content h2 {

    font-family: 'Cinzel', serif;

    font-size: clamp(2.8rem, 5vw, 4.5rem);

    color: var(--cream);

    margin-bottom: 25px;

    line-height: 1.3;
}

.events-cta .cta-content p {

    color:
        rgba(255,255,255,0.85);

    font-size: 1.05rem;

    line-height: 1.9;

    max-width: 700px;

    margin: 0 auto 40px;
}

.events-cta .cta-buttons {

    display: flex;

    justify-content: center;

    gap: 20px;

    flex-wrap: wrap;
}


/* ================= CTA BUTTON IMPROVEMENTS ================= */

.events-cta .btn {

    min-width: 200px;

    padding: 16px 35px;

    font-size: 1rem;

    font-weight: 600;

    border-radius: 50px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    transition: all 0.4s ease;
}

.events-cta .btn:hover {

    transform:
        translateY(-5px);

    box-shadow:
        0 15px 30px rgba(0,0,0,0.25);
}


/* ================= PAGE ENHANCEMENTS ================= */

.gallery-item,
.process-card,
.why-card,
.faq-item {

    will-change: transform;
}

.section-title {

    position: relative;

    z-index: 2;
}


/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {

    .events-cta {

        padding: 100px 0;
    }

    .events-cta .cta-content h2 {

        font-size: 3rem;
    }
}

@media (max-width: 768px) {

    .faq-question {

        padding: 24px 25px;
    }

    .faq-question span {

        font-size: 1rem;

        padding-right: 15px;
    }

    .faq-answer p {

        padding:
            0 25px 25px;
    }

    .events-cta {

        padding: 80px 0;
    }

    .events-cta .cta-content h2 {

        font-size: 2.5rem;
    }

    .events-cta .cta-content p {

        font-size: 0.95rem;
    }

    .events-cta .cta-buttons {

        flex-direction: column;

        align-items: center;
    }

    .events-cta .btn {

        width: 100%;

        max-width: 320px;
    }
}

@media (max-width: 576px) {

    .faq-question {

        padding: 22px 20px;
    }

    .faq-question span {

        font-size: 0.95rem;
    }

    .faq-answer p {

        padding:
            0 20px 20px;

        font-size: 0.92rem;
    }

    .events-cta .cta-content span {

        letter-spacing: 2px;

        font-size: 0.85rem;
    }

    .events-cta .cta-content h2 {

        font-size: 2rem;
    }

    .events-cta .cta-content p {

        font-size: 0.9rem;
    }
}

.events-cta .btn {
    position: relative;
    overflow: hidden;
}

.ripple {
    position: absolute;
    border-radius: 50%;
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
    background: rgba(255, 255, 255, 0.35);
    pointer-events: none;
}

@keyframes ripple-animation {

    to {

        transform: scale(4);
        opacity: 0;
    }
}