/* contact.css */

.contact-hero {
    background: linear-gradient(to right, #003566, #ff5e14);
    padding: 100px 0 140px;
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 40%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 94, 20, 0.1) 0%, transparent 70%);
    filter: blur(60px);
}

.contact-hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
    color: white;
}

.contact-hero p {
    font-size: 18px;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

.contact-container {
    margin-top: -80px;
    padding-bottom: 100px;
    position: relative;
    z-index: 10;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    background: var(--white);
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0, 53, 102, 0.1);
    overflow: hidden;
    padding: 20px;
}

.contact-form-side {
    padding: 50px;
}

.contact-info-side {
    background: #f4f7fb;
    border-radius: 20px;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #003566;
    margin-bottom: 10px;
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #eef2f6;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #f9fbfe;
}

.form-control:focus {
    border-color: var(--brand-orange);
    background: var(--white);
    box-shadow: 0 5px 15px rgba(255, 94, 20, 0.05);
    outline: none;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

textarea.form-control {
    min-height: 150px;
    resize: none;
}

.btn-submit {
    background: var(--brand-orange);
    color: var(--white);
    padding: 18px 40px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-submit:hover {
    background: #e65410;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 94, 20, 0.2);
}

.contact-title {
    font-size: 32px;
    font-weight: 700;
    color: #003566;
    margin-bottom: 40px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 35px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-orange);
    font-size: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    flex-shrink: 0;
}

.info-content h4 {
    font-size: 18px;
    font-weight: 700;
    color:#003566;
    margin-bottom: 5px;
}

.info-content p {
    color: var(--text-grey);
    line-height: 1.6;
}

.social-platforms {
    margin-top: 40px;
}

.social-platforms h4 {
    margin-bottom: 20px;
    color: #003566;
    font-weight: 700;
}

.social-grid {
    display: flex;
    gap: 15px;
}

.social-btn {
    width: 45px;
    height: 45px;
    background: var(--white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #003566;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.social-btn:hover {
    background: var(--brand-orange);
    color: var(--white);
    transform: translateY(-3px);
}

@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-form-side {
        padding: 40px 20px;
    }

    .contact-info-side {
        padding: 40px 20px;
    }
}

@media (max-width: 576px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-hero h1 {
        font-size: 36px;
    }
}