/* ========================================
CONTACT HERO SECTION
======================================== */

.contact-hero {
    position: relative;
    padding: 140px 20px;
    background-image: url("/contact/contact-hero.png");
    background-size: cover;
    background-position: center;
}

.contact-overlay {
    position: absolute;
    inset: 0;
    background: rgba(155, 94, 182, 0.25);
}

.contact-container {
    position: relative;
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    gap: 80px;
    z-index: 2;
    flex-wrap: wrap;
}

/* LEFT SIDE */

.contact-left {
    flex: 1;
    min-width: 320px;
    color: #410068;
}

.contact-left h1 {
    font-size: 32px;
    margin-bottom: 15px;
    margin-top: 2rem;
}

.contact-left p {
    font-size: 16px;
    margin-bottom: 40px;
}

/* Contact Info */

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: #6D3091;
    color: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-item h4 {
    margin-bottom: 5px;
    font-size: 16px;
}

.contact-item span {
    font-size: 14px;
    color: #5a2b7a;
}

/* RIGHT FORM CARD */

.contact-form-card {
    flex: 1;
    min-width: 340px;
    background: linear-gradient(135deg, #5a0b87, #7a39a6);
    padding: 50px 40px;
    border-radius: 35px;
    color: #fff;
    box-shadow: 0 30px 60px rgba(65, 0, 104, 0.25);
}

.contact-form-card h3 {
    font-size: 20px;
    margin-bottom: 30px;
}

/* Form */

.contact-form-card .form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.contact-form-card label {
    font-size: 13px;
    margin-bottom: 6px;
}

.contact-form-card input,
.contact-form-card textarea {
    padding: 14px;
    border-radius: 10px;
    border: none;
    background: rgba(255,255,255,0.15);
    color: #fff;
    font-size: 14px;
    outline: none;
}

.contact-form-card textarea {
    min-height: 100px;
    resize: none;
}

.contact-form-card input::placeholder,
.contact-form-card textarea::placeholder {
    color: rgba(255,255,255,0.8);
}

/* Submit */

.form-submit {
    text-align: center;
    margin-top: 20px;
}

.form-submit button {
    background: #fff;
    color: #6D3091;
    padding: 12px 35px;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
}

.form-submit small {
    display: block;
    margin-top: 10px;
    font-size: 12px;
    opacity: 0.8;
}


@media (max-width: 992px) {
    .contact-container {
        flex-direction: column;
        gap: 60px;
    }
}


@media (max-width: 768px) {

    .contact-hero {
        padding: 80px 15px;
    }

    .contact-left h1 {
        font-size: 24px;
    }

    .contact-form-card {
        padding: 35px 25px;
        border-radius: 25px;
    }

    .form-submit button {
        width: 100%;
    }
}



/* ========================================
SIMPLE CTA SECTION
======================================== */

.simple-cta {
    background: linear-gradient(135deg, #5a0b87, #7a39a6);
    padding: 100px 20px;
    text-align: center;
    color: #fff;
}

.simple-cta-container {
    max-width: 800px;
    margin: auto;
}

/* Heading */

.simple-cta h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

/* Subtext */

.simple-cta p {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 35px;
}

/* Button */

.simple-cta-btn {
    display: inline-block;
    background: #ffffff;
    color: #6D3091;
    padding: 12px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: 0.3s ease;
}

.simple-cta-btn:hover {
    transform: translateY(-3px);
    background: #f3f3f3;
}


@media (max-width: 992px) {
    .simple-cta {
        padding: 80px 20px;
    }

    .simple-cta h2 {
        font-size: 26px;
    }
}


@media (max-width: 768px) {

    .simple-cta {
        padding: 60px 15px;
    }

    .simple-cta h2 {
        font-size: 22px;
    }

    .simple-cta p {
        font-size: 14px;
    }

    .simple-cta-btn {
        width: 100%;
        max-width: 250px;
    }
}


.gap{
    height: 50px;
    width: 100%;
    background-color: #ffffff;
}










/* =========================================
PREMIUM CONTACT PAGE ANIMATIONS
========================================= */

.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-80px);
    transition: all 1s ease;
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(80px);
    transition: all 1s ease;
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-zoom {
    opacity: 0;
    transform: scale(0.95);
    transition: all 1s ease;
}

.reveal-zoom.active {
    opacity: 1;
    transform: scale(1);
}

/* Stagger delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* Icon hover micro animation */
.contact-icon {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-item:hover .contact-icon {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 20px rgba(65,0,104,0.25);
}

/* Form subtle hover lift */
.contact-form-card {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.contact-form-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 40px 80px rgba(65,0,104,0.35);
}


.contact-left h1 {
    position: relative;
    display: inline-block;
}

.contact-left h1::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0%;
    height: 3px;
    background: #6D3091;
    transition: width 1s ease;
}

.contact-left.active h1::after {
    width: 100%;
}