/* ==============================
   CONTACT PAGE - MODERN CLEAN UI
   ============================== */

/* Contact Header Section */
.contact-header-section {
    background: linear-gradient(to bottom, #111827 43%, #0F2A5A 83%);
    color: #fff;
    text-align: center;
    padding: 100px 20px 80px;
    margin-top: -40px;
    /* show background instantly */
    opacity: 1;
}

/* fast drop animation for content */
.contact-header-label-section,
.contact-header-title,
.contact-header-desc {
    opacity: 0;
    transform: translateY(-25px);
    animation: dropFast 0.4s ease-out forwards;
}

/* sequence timing for smooth drop effect */
.contact-header-label-section {
    animation-delay: 0.1s;
}

.contact-header-title {
    animation-delay: 0.2s;
}

.contact-header-desc {
    animation-delay: 0.3s;
}

/* Keyframes */
@keyframes dropFast {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .contact-header-title {
        font-size: 32px;
    }

    .contact-header-desc {
        font-size: 15px;
    }
}

/* ======================
   Main Contact Section
   ====================== */
.contact-main-section {
    background: #f9fbfd;
    padding: 100px 20px;
}

.contact-main-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* ========== FORM ========== */
.contact-form-wrapper {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 15px 18px;
}

.contact-form-wrapper h2.contact-form-title {
    font-size: 30px;
    font-weight: 700;
    background: linear-gradient(to bottom, #0F2A5A 43%, #111827 83%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent !important;
    margin-bottom: 12px;
}

.contact-form-wrapper p.contact-form-desc {
    color: #6c757d;
    font-size: 16px;
    margin-bottom: 32px;
    line-height: 1.6;
}

.contact-form-group {
    margin-bottom: 24px;
}

.contact-form-row {
    display: grid;
}

.contact-form-group label {
    font-size: 14px;
    font-weight: 500;
    background: linear-gradient(to bottom, #0F2A5A 43%, #111827 83%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent !important;
    margin-bottom: 8px;
    display: block;
}

.contact-form-group input,
.contact-form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #dbe2e8;
    border-radius: 10px;
    font-size: 15px;
    transition: 0.3s ease;
    background: #fff;
}

.contact-form-group input:focus,
.contact-form-group textarea:focus {
    border-color: #0066cc;
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
    outline: none;
}

.contact-form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 10px 0 30px;
}

.contact-checkbox-group input[type="checkbox"] {
    accent-color: #0066cc;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.contact-checkbox-group label {
    font-size: 14px;
    color: #444;
}

.contact-checkbox-group a {
    color: #0066cc;
    text-decoration: none;
    font-weight: 500;
}

.contact-checkbox-group a:hover {
    text-decoration: underline;
}

.contact-send-btn {
    background: linear-gradient(90deg, #ffd700, #ffeb57);
    color: #0d1b2a;
    border: none;
    padding: 14px 36px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
}

.contact-send-btn:hover {
    background: linear-gradient(90deg, #ffe85b, #fff18e);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.3);
    transform: translateY(-2px);
}

/* ========== MAP SECTION ========== */
.contact-map-wrapper {
    position: relative;
    height: 450px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.contact-map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ========== CONTACT INFO ========== */
.contact-info-section {
    background: #f1f5f9;
    padding: 80px 20px;
}

.contact-info-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

/* ===== CONTACT INFO SECTION ===== */
.contact-info {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 4rem;
    padding: 4rem 2rem;
    flex-wrap: wrap;
    text-align: center;
    background: #fff;
}

.info-card {
    flex: 1 1 250px;
    max-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
}


.icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(to bottom, #0F2A5A 43%, #111827 83%);
    color: #ffd700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 1rem;
    transition: all 0.4s ease;
    box-shadow: 0 0 0 rgba(15, 42, 90, 0);
}

/* ✨ Hover Effect */
.icon:hover {
    background: linear-gradient(to bottom, #132f63 43%, #0f203b 83%);
    color: #ffed4e;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(15, 42, 90, 0.45);
}

}

.info-card:hover .icon {
    background: rgba(0, 102, 255, 0.15);
}

.info-card h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: #0a0a0a;
}

.info-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .contact-info {
        gap: 2.5rem;
        padding: 3rem 1rem;
    }

    .icon {
        width: 55px;
        height: 55px;
        font-size: 20px;
    }

    .info-card h4 {
        font-size: 0.95rem;
    }

    .info-card p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .contact-info {
        flex-direction: column;
        align-items: center;
    }

    .info-card {
        max-width: 90%;
    }
}


@media (max-width: 992px) {
    .contact-main-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 600px) {
    .contact-header-title {
        font-size: 32px;
    }

    .contact-header-desc {
        font-size: 15px;
    }

    .contact-form-wrapper {
        padding: 30px 20px;
    }

    .contact-send-btn {
        width: 100%;
    }

    .contact-map-wrapper {
        height: 320px;
    }

    .info-card {
        padding: 30px 20px;
    }
}