/* =========================
   Contact Page Styling
   ========================= */

/* Divider Line */
.contact-page .divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #1a0262, #820b5c);
    border-radius: 2px;
    margin-top: 10px;
    margin-bottom: 20px;
}

/* =========================
   Contact Info Section
   ========================= */
.contact-info .info-box {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
}

.contact-info .info-box i {
    min-width: 40px;
    font-size: 1.4rem;
    color: #1a0262;
    transition: transform 0.3s ease;
}

.contact-info .info-box:hover i {
    transform: scale(1.2);
}

.contact-info h5 {
    font-size: 1rem;
    margin-bottom: 4px;
    font-weight: 600;
}

.contact-info p,
.contact-info li {
    font-size: 0.9rem;
    color: #6c757d;
    line-height: 1.5;
}

/* =========================
   Contact Form Section
   ========================= */
.form-section {
    background: #fff;
    border-radius: 14px;
    padding: 24px;
    transition: box-shadow 0.3s ease;
}

.form-section:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.form-control {
    border-radius: 10px;
    padding: 12px;
    font-size: 0.95rem;
}

/* Submit Button */
.contact-btn {
    border-radius: 30px;
    background: linear-gradient(90deg, #1a0262, #820b5c);
    border: none;
    padding: 12px 28px;
    color: #fff;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}

/* =========================
   Animations
   ========================= */
.fade-in-up,
.fade-in-left,
.fade-in-right {
    opacity: 0;
    animation-duration: 0.8s;
    animation-fill-mode: forwards;
}

.fade-in-up {
    transform: translateY(30px);
    animation-name: fadeInUp;
}

.fade-in-left {
    transform: translateX(-30px);
    animation-name: fadeInLeft;
}

.fade-in-right {
    transform: translateX(30px);
    animation-name: fadeInRight;
}

.delay-1 {
    animation-delay: 0.3s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* =========================
   Responsive Design
   ========================= */
@media (max-width: 768px) {
    .contact-info .info-box {
        gap: 10px;
    }

    .contact-info .info-box i {
        font-size: 1.2rem;
        min-width: 34px;
    }

    .form-section {
        padding: 18px;
    }

    .contact-btn {
        width: 100%;
        padding: 14px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .contact-page .divider {
        width: 60px;
        height: 3px;
    }

    .contact-info h5 {
        font-size: 0.95rem;
    }

    .form-control {
        padding: 10px;
        font-size: 0.9rem;
    }
}
