/* =====================================================
   ISHA GRAND EVENTS
   CONTACT PAGE CSS - PART 1
   Royal Blue • Rose Gold • Cream • White
===================================================== */

:root {

    --royal-blue: #081c4b;
    --royal-blue-light: #102c78;

    --rose-gold: #b76e79;
    --rose-gold-light: #d7a2aa;

    --cream: #f7f2e9;
    --white: #ffffff;

    --dark: #050b1e;

    --glass:
        rgba(255,255,255,0.06);

}

/* =====================================================
   GLOBAL
===================================================== */

.contact-page {

    overflow-x: hidden;

}

body {

    background:
        linear-gradient(
            180deg,
            #050b1e,
            #081c4b
        );

    color: var(--white);

}

/* =====================================================
   HERO SECTION
===================================================== */

.contact-hero {

    position: relative;

    min-height: 85vh;

    display: flex;

    align-items: center;

    justify-content: center;

    text-align: center;

    overflow: hidden;

    background:
        linear-gradient(
            rgba(5,11,30,0.75),
            rgba(5,11,30,0.75)
        ),
        url('../assets/images/contact-banner.jpg');

    background-size: cover;

    background-position: center;
}

.contact-hero::before {

    content: "";

    position: absolute;

    inset: 0;

    background:
        radial-gradient(
            circle at center,
            rgba(183,110,121,0.15),
            transparent 60%
        );
}

.hero-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to bottom,
            rgba(0,0,0,0.2),
            rgba(0,0,0,0.7)
        );
}

.contact-hero-content {

    position: relative;

    z-index: 2;

    max-width: 900px;

    padding: 0 20px;
}

.contact-hero-content span {

    display: inline-block;

    color: var(--rose-gold-light);

    letter-spacing: 4px;

    text-transform: uppercase;

    margin-bottom: 15px;

    font-weight: 600;
}

.contact-hero-content h1 {

    font-family: 'Cinzel', serif;

    font-size: clamp(3rem, 6vw, 5rem);

    color: var(--cream);

    margin-bottom: 20px;

    line-height: 1.2;
}

.contact-hero-content p {

    font-size: 1.15rem;

    color:
        rgba(255,255,255,0.85);

    line-height: 1.8;

    margin-bottom: 35px;
}

/* =====================================================
   HERO BUTTONS
===================================================== */

.hero-buttons {

    display: flex;

    justify-content: center;

    gap: 20px;

    flex-wrap: wrap;
}

.hero-buttons .btn {

    padding: 15px 35px;

    border-radius: 50px;

    font-weight: 600;

    text-decoration: none;

    transition: all 0.4s ease;

    display: inline-flex;

    align-items: center;

    gap: 10px;
}

.btn-primary {

    background: var(--rose-gold);

    color: var(--white);
}

.btn-primary:hover {

    transform:
        translateY(-4px);

    box-shadow:
        0 15px 35px rgba(183,110,121,0.35);
}

.btn-secondary {

    border:
        2px solid var(--cream);

    color: var(--cream);
}

.btn-secondary:hover {

    background: var(--cream);

    color: var(--dark);
}

/* =====================================================
   CONTACT CARDS
===================================================== */

.contact-cards {

    position: relative;

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,0.02),
            transparent
        );
}

.contact-cards-grid {

    display: grid;

    grid-template-columns:
        repeat(
            auto-fit,
            minmax(250px,1fr)
        );

    gap: 30px;

    margin-top: 60px;
}

.contact-card {

    background: var(--glass);

    backdrop-filter: blur(15px);

    border:
        1px solid rgba(255,255,255,0.08);

    border-radius: 25px;

    padding: 40px 25px;

    text-align: center;

    transition: all 0.4s ease;
}

.contact-card:hover {

    transform:
        translateY(-10px);

    border-color:
        rgba(183,110,121,0.4);

    box-shadow:
        0 25px 50px rgba(0,0,0,0.3);
}

.contact-card i {

    font-size: 2.8rem;

    color: var(--rose-gold);

    margin-bottom: 20px;
}

.contact-card h3 {

    font-family: 'Cinzel', serif;

    color: var(--cream);

    margin-bottom: 15px;
}

.contact-card p {

    color:
        rgba(255,255,255,0.75);

    line-height: 1.8;
}

/* =====================================================
   CONTACT FORM SECTION
===================================================== */

.contact-form-section {

    position: relative;
}

.contact-grid {

    display: grid;

    grid-template-columns:
        1.2fr 0.8fr;

    gap: 50px;

    align-items: start;
}

.contact-form-wrapper {

    background: var(--glass);

    backdrop-filter: blur(18px);

    border-radius: 30px;

    padding: 50px;

    border:
        1px solid rgba(255,255,255,0.08);
}

.form-header span {

    color: var(--rose-gold);

    font-weight: 600;

    letter-spacing: 2px;
}

.form-header h2 {

    font-family: 'Cinzel', serif;

    color: var(--cream);

    margin: 15px 0;
}

.form-header p {

    color:
        rgba(255,255,255,0.75);

    line-height: 1.8;

    margin-bottom: 35px;
}
/* =====================================================
   CONTACT PAGE CSS - PART 2
   Forms • Social • Info Box • Map
===================================================== */


/* =====================================================
   FORM ELEMENTS
===================================================== */

.contact-form {

    display: flex;

    flex-direction: column;

    gap: 22px;
}

.form-group {

    position: relative;
}

.form-group input,
.form-group select,
.form-group textarea {

    width: 100%;

    padding: 18px 20px;

    border-radius: 15px;

    border: 1px solid rgba(255,255,255,0.10);

    background:
        rgba(255,255,255,0.04);

    color: var(--white);

    font-size: 0.95rem;

    outline: none;

    transition: all 0.4s ease;
}

.form-group textarea {

    resize: vertical;

    min-height: 140px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {

    border-color: var(--rose-gold);

    box-shadow:
        0 0 20px rgba(183,110,121,0.25);

    background:
        rgba(255,255,255,0.06);
}

/* Floating Labels */

.form-group label {

    position: absolute;

    left: 18px;

    top: 18px;

    color:
        rgba(255,255,255,0.55);

    pointer-events: none;

    transition: all 0.3s ease;

    background: transparent;
}

.form-group input:focus ~ label,
.form-group input:valid ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:valid ~ label {

    top: -10px;

    left: 12px;

    font-size: 12px;

    color: var(--rose-gold);

    background: var(--dark);

    padding: 0 8px;
}

/* Form Icons */

.form-group i {

    position: absolute;

    right: 18px;

    top: 20px;

    color: var(--rose-gold);

    font-size: 15px;
}

/* Select Styling */

.form-group select {

    cursor: pointer;
}

.form-group select option {

    background: #081c4b;

    color: #fff;
}

/* Submit Button */

.submit-btn {

    width: 100%;

    border: none;

    border-radius: 50px;

    padding: 18px;

    background:
        linear-gradient(
            135deg,
            var(--rose-gold),
            var(--rose-gold-light)
        );

    color: var(--white);

    font-size: 1rem;

    font-weight: 600;

    cursor: pointer;

    transition: all 0.4s ease;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;
}

.submit-btn:hover {

    transform:
        translateY(-5px);

    box-shadow:
        0 15px 35px rgba(183,110,121,0.35);
}


/* =====================================================
   RIGHT SIDE INFO
===================================================== */

.contact-info-wrapper {

    display: flex;

    flex-direction: column;

    gap: 30px;
}

.info-box {

    background: var(--glass);

    backdrop-filter: blur(15px);

    border-radius: 30px;

    padding: 40px;

    border:
        1px solid rgba(255,255,255,0.08);
}

.info-box h3 {

    font-family: 'Cinzel', serif;

    color: var(--cream);

    margin-bottom: 25px;
}

.info-box ul {

    list-style: none;

    padding: 0;

    margin: 0;
}

.info-box ul li {

    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 18px;

    color:
        rgba(255,255,255,0.85);

    line-height: 1.7;
}

.info-box ul li i {

    color: var(--rose-gold);

    font-size: 18px;
}


/* =====================================================
   SOCIAL CONTACT
===================================================== */

.social-contact {

    background: var(--glass);

    backdrop-filter: blur(15px);

    border-radius: 30px;

    padding: 35px;

    border:
        1px solid rgba(255,255,255,0.08);

    text-align: center;
}

.social-contact h3 {

    font-family: 'Cinzel', serif;

    color: var(--cream);

    margin-bottom: 25px;
}

.social-icons-large {

    display: flex;

    justify-content: center;

    gap: 20px;

    flex-wrap: wrap;
}

.social-icons-large a {

    width: 60px;

    height: 60px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    text-decoration: none;

    color: white;

    font-size: 22px;

    background:
        rgba(255,255,255,0.06);

    border:
        1px solid rgba(255,255,255,0.10);

    transition: all 0.4s ease;
}

.social-icons-large a:hover {

    background: var(--rose-gold);

    transform:
        translateY(-8px);

    box-shadow:
        0 10px 25px rgba(183,110,121,0.35);
}


/* =====================================================
   MAP SECTION
===================================================== */

.map-section {

    position: relative;

    padding-bottom: 120px;
}

.map-wrapper {

    margin-top: 50px;

    border-radius: 30px;

    overflow: hidden;

    border:
        2px solid rgba(183,110,121,0.25);

    box-shadow:
        0 25px 50px rgba(0,0,0,0.25);
}

.map-wrapper iframe {

    width: 100%;

    height: 500px;

    border: none;

    display: block;

    filter:
        grayscale(20%)
        contrast(105%);
}


/* =====================================================
   CONTACT PAGE CSS - PART 3
   FAQ • CTA • FOOTER • WHATSAPP • RESPONSIVE
===================================================== */


/* =====================================================
   FAQ SECTION
===================================================== */

.contact-faq {

    position: relative;

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,0.02),
            transparent
        );
}

.faq-container {

    max-width: 950px;

    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);
}

.faq-question {

    width: 100%;

    background: transparent;

    border: none;

    outline: none;

    cursor: pointer;

    padding: 25px 30px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    color: var(--cream);

    font-family: 'Cinzel', serif;

    font-size: 1rem;

    text-align: left;
}

.faq-question i {

    color: var(--rose-gold);

    transition: all 0.3s ease;
}

.faq-answer {

    max-height: 0;

    overflow: hidden;

    transition: max-height 0.4s ease;
}

.faq-answer p {

    padding: 0 30px 25px;

    color:
        rgba(255,255,255,0.75);

    line-height: 1.8;
}

.faq-item.active .faq-answer {

    max-height: 300px;
}

.faq-item.active .faq-question i {

    transform: rotate(45deg);
}


/* =====================================================
   CTA SECTION
===================================================== */

.contact-cta {

    position: relative;

    padding: 120px 0;

    text-align: center;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            rgba(8,28,75,0.95),
            rgba(183,110,121,0.25)
        );
}

.contact-cta::before {

    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    top: -250px;
    right: -150px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(255,255,255,0.08),
            transparent
        );
}

.contact-cta::after {

    content: "";

    position: absolute;

    width: 400px;
    height: 400px;

    bottom: -200px;
    left: -150px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(183,110,121,0.15),
            transparent
        );
}

.cta-content {

    position: relative;

    z-index: 2;

    max-width: 850px;

    margin: auto;
}

.cta-content span {

    color: var(--rose-gold-light);

    letter-spacing: 3px;

    text-transform: uppercase;

    font-weight: 600;
}

.cta-content h2 {

    font-family: 'Cinzel', serif;

    color: var(--cream);

    font-size: clamp(2.5rem,5vw,4.5rem);

    margin: 20px 0;
}

.cta-content p {

    color:
        rgba(255,255,255,0.8);

    line-height: 1.9;

    margin-bottom: 35px;
}

.cta-buttons {

    display: flex;

    justify-content: center;

    gap: 20px;

    flex-wrap: wrap;
}


/* =====================================================
   PREMIUM FOOTER
===================================================== */

.footer {

    position: relative;

    background:
        linear-gradient(
            180deg,
            #030813,
            #050b1e
        );

    overflow: hidden;

    padding-top: 80px;
}

.footer-band-bg {

    position: absolute;

    bottom: 0;

    left: 0;

    width: 100%;

    opacity: 0.04;

    pointer-events: none;
}

.footer-band-bg img {

    width: 100%;
}

.footer-grid {

    display: grid;

    grid-template-columns:
        repeat(auto-fit,minmax(250px,1fr));

    gap: 50px;

    position: relative;

    z-index: 2;
}

.footer-logo {

    width: 220px;

    max-width: 100%;

    margin-bottom: 20px;
}

.footer-column h3 {

    color: var(--cream);

    margin-bottom: 20px;

    font-family: 'Cinzel', serif;
}

.footer-column p,
.footer-column li {

    color:
        rgba(255,255,255,0.75);

    line-height: 2;
}

.footer-column ul {

    list-style: none;

    padding: 0;
}

.footer-column a {

    color:
        rgba(255,255,255,0.75);

    text-decoration: none;

    transition: all 0.3s ease;
}

.footer-column a:hover {

    color: var(--rose-gold);
}

.footer-socials {

    display: flex;

    gap: 15px;

    margin-top: 20px;
}

.footer-socials a {

    width: 45px;

    height: 45px;

    border-radius: 50%;

    background:
        rgba(255,255,255,0.05);

    display: flex;

    align-items: center;

    justify-content: center;

    transition: all 0.4s ease;
}

.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;

    color:
        rgba(255,255,255,0.6);
}


/* =====================================================
   MUSIC EQUALIZER
===================================================== */

.equalizer {

    display: flex;

    gap: 5px;

    margin-top: 25px;
}

.equalizer span {

    width: 5px;

    height: 20px;

    border-radius: 50px;

    background: var(--rose-gold);

    animation: equalizer 1s infinite ease-in-out;
}

.equalizer span:nth-child(2) {

    animation-delay: .2s;
}

.equalizer span:nth-child(3) {

    animation-delay: .4s;
}

.equalizer span:nth-child(4) {

    animation-delay: .6s;
}

.equalizer span:nth-child(5) {

    animation-delay: .8s;
}

@keyframes equalizer {

    0%,100% {

        height: 15px;
    }

    50% {

        height: 40px;
    }
}


/* =====================================================
   FLOATING WHATSAPP
===================================================== */

.whatsapp-float {

    position: fixed;

    bottom: 30px;

    right: 30px;

    width: 65px;

    height: 65px;

    border-radius: 50%;

    background: #25D366;

    display: flex;

    align-items: center;

    justify-content: center;

    color: white;

    font-size: 30px;

    text-decoration: none;

    z-index: 999;

    box-shadow:
        0 10px 25px rgba(0,0,0,0.3);

    animation: pulse 2s infinite;
}

@keyframes pulse {

    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }

    100% {
        transform: scale(1);
    }
}


/* =====================================================
   BACK TO TOP
===================================================== */

.back-to-top {

    position: fixed;

    bottom: 110px;

    right: 30px;

    width: 50px;

    height: 50px;

    border: none;

    border-radius: 50%;

    background: var(--rose-gold);

    color: white;

    cursor: pointer;

    display: none;

    z-index: 999;

    transition: all 0.3s ease;
}

.back-to-top:hover {

    transform: translateY(-5px);
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 992px) {

    .contact-grid {

        grid-template-columns: 1fr;
    }

    .contact-form-wrapper,
    .info-box,
    .social-contact {

        padding: 35px;
    }
}

@media (max-width: 768px) {

    .contact-hero {

        min-height: 70vh;
    }

    .contact-hero-content h1 {

        font-size: 2.5rem;
    }

    .hero-buttons,
    .cta-buttons {

        flex-direction: column;

        align-items: center;
    }

    .hero-buttons .btn,
    .cta-buttons .btn {

        width: 100%;

        max-width: 320px;
    }

    .footer-grid {

        gap: 35px;
    }

    .map-wrapper iframe {

        height: 350px;
    }
}

@media (max-width: 576px) {

    .contact-form-wrapper,
    .info-box,
    .social-contact {

        padding: 25px;
    }

    .faq-question {

        padding: 20px;
    }

    .faq-answer p {

        padding: 0 20px 20px;
    }

    .whatsapp-float {

        width: 58px;
        height: 58px;
        font-size: 26px;
    }

    .back-to-top {

        width: 45px;
        height: 45px;
    }
}




/* Notification */

.notification {

    position: fixed;

    top: 100px;
    right: 30px;

    background: #081c4b;

    color: white;

    padding: 15px 25px;

    border-left: 4px solid #b76e79;

    border-radius: 10px;

    z-index: 9999;

    opacity: 0;

    transform: translateX(100px);

    transition: all 0.4s ease;
}

.notification.show {

    opacity: 1;

    transform: translateX(0);
}

.notification.error {

    border-left-color: #ff4d4d;
}

/* Loader Hidden */

.loader-hidden {

    opacity: 0;

    visibility: hidden;

    transition: all 0.6s ease;
}

/* Ripple Effect */

.btn {

    position: relative;

    overflow: hidden;
}

.ripple {

    position: absolute;

    border-radius: 50%;

    transform: scale(0);

    animation: rippleEffect 0.6s linear;

    background: rgba(255,255,255,0.4);
}

@keyframes rippleEffect {

    to {

        transform: scale(4);

        opacity: 0;
    }
}