﻿.contact-section {
    background: linear-gradient(to right, #f9f9f9, #ffffff);
    padding: 4rem 1rem;
    font-family: 'Segoe UI', sans-serif;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    max-width: 1100px;
    margin: auto;
    gap: 3rem;
    align-items: start;
}

/* Left: Info */
.contact-info-box {
    background-color: #003b5c;
    color: white;
    padding: 2rem;
    border-radius: 10px;
}

    .contact-info-box h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .contact-info-box p {
        font-size: 1rem;
        margin-bottom: 2rem;
        color: #dce7f0;
    }

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

    .info-item i {
        color: #e65c0d;
        font-size: 1.1rem;
        margin-right: 0.8rem;
    }

/* Right: Form */
.contact-form-box {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

    .contact-form-box h2 {
        color: #003b5c;
        margin-bottom: 1.5rem;
    }

.form-fields {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.2rem;
}

.field-group {
    display: flex;
    flex-direction: column;
}

    .field-group label {
        font-weight: 600;
        margin-bottom: 0.3rem;
        font-size: 0.95rem;
        color: #333;
    }

.form-control {
    padding: 0.7rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
}

.textarea {
    min-height: 120px;
    resize: vertical;
}

.full-width {
    grid-column: 1 / -1;
}

.submit-button {
    margin-top: 1.5rem;
    background-color: #e65c0d;
    color: white;
    border: none;
    padding: 0.9rem 2rem;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 40px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

    .submit-button:hover {
        background-color: #ff6f2c;
    }
