/* ===== CONTACT SECTION ===== */
.contact-section {
    background-color: #ffffff;
    padding: 80px 20px;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

/* ===== LEFT COLUMN: CONTACT FORM ===== */
.contact-form-column {
    padding-right: 20px;
}

.contact-main-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1A3A52;
    margin-bottom: 12px;
    line-height: 1.2;
}

.contact-subtitle {
    font-size: 1rem;
    color: #6B7280;
    margin-bottom: 40px;
    line-height: 1.5;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #1A3A52;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 14px 20px;
    border: 1px solid #E5E7EB;
    border-radius: 24px;
    font-size: 1rem;
    font-family: inherit;
    color: #1F2937;
    transition: all 0.3s ease;
    background-color: #ffffff;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #1562BC;
    box-shadow: 0 0 0 3px rgba(21, 98, 188, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #9CA3AF;
}

.form-textarea {
    resize: vertical;
    border-radius: 20px;
    min-height: 120px;
}

/* Form Group Inline - Name + Submit Button */
.form-group-inline {
    display: flex;
    gap: 16px;
    align-items: flex-end;
}

.form-group-name {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.btn-submit {
    padding: 14px 40px;
    background-color: #3DDAB4;
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(61, 218, 180, 0.3);
}

.btn-submit:hover {
    background-color: #2BC09F;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(61, 218, 180, 0.4);
}

.btn-submit:active {
    transform: translateY(0);
}

/* ===== RIGHT COLUMN: CONTACT INFO ===== */
.contact-info-column {
    padding-left: 20px;
}

.contact-info-heading {
    font-size: 2rem;
    font-weight: 700;
    color: #1A3A52;
    margin-bottom: 16px;
    line-height: 1.2;
}

.contact-info-text {
    font-size: 1rem;
    color: #6B7280;
    margin-bottom: 32px;
    line-height: 1.6;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

.contact-detail-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #1A3A52;
    font-size: 1rem;
}

.contact-icon {
    width: 24px;
    height: 24px;
    color: #1562BC;
    flex-shrink: 0;
}

.contact-divider {
    border: none;
    height: 1px;
    background-color: #E5E7EB;
    margin: 32px 0;
}

/* ===== SOCIAL SECTION ===== */
.social-section {
    margin-top: 32px;
}

.social-heading {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1A3A52;
    margin-bottom: 24px;
}

.social-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: #1A3A52;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: #1562BC;
    transform: translateX(4px);
}

.social-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* ===== RESPONSIVE DESIGN: TABLET ===== */
@media (max-width: 992px) {
    .contact-container {
        gap: 60px;
    }

    .contact-main-heading {
        font-size: 2.2rem;
    }

    .contact-info-heading {
        font-size: 1.8rem;
    }
}

/* ===== RESPONSIVE DESIGN: MOBILE ===== */
@media (max-width: 768px) {
    .contact-section {
        padding: 60px 20px;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .contact-form-column,
    .contact-info-column {
        padding: 0;
    }

    .contact-main-heading {
        font-size: 2rem;
    }

    .contact-info-heading {
        font-size: 1.6rem;
    }

    .form-group-inline {
        flex-direction: column;
        align-items: stretch;
        gap: 24px;
    }

    .btn-submit {
        width: 100%;
    }

    .social-links {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

/* ===== RESPONSIVE DESIGN: SMALL MOBILE ===== */
@media (max-width: 480px) {
    .contact-section {
        padding: 40px 16px;
    }

    .contact-main-heading {
        font-size: 1.75rem;
    }

    .contact-info-heading {
        font-size: 1.5rem;
    }

    .contact-subtitle,
    .contact-info-text {
        font-size: 0.95rem;
    }

    .form-input,
    .form-textarea,
    .btn-submit {
        font-size: 0.95rem;
    }
}