.contact-section {
    padding: 60px 20px;
    background-color: #ffffff;
    font-family: 'Poppins', sans-serif;
}

.contact-main-title {
    text-align: center;
    margin-bottom: 48px;
}

.contact-main-title h1 {
    font-size: 36px;
    font-weight: 700;
    color: #1a202c;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 32px;
    align-items: stretch;
}

/* Left Column: Contact Info */
.contact-info {
    background-color: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-block {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.info-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background-color: #059669;
    /* Using green from base.css */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.info-icon svg {
    width: 24px;
    height: 24px;
}

.info-text h3 {
    font-size: 18px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 8px;
}

.info-text p {
    font-size: 14px;
    color: #718096;
    line-height: 1.6;
    margin-bottom: 4px;
}

.info-text p:last-child {
    margin-bottom: 0;
}

.info-text .phone-number,
.info-text .email-address {
    font-weight: 500;
    color: #4a5568;
}

.info-divider {
    border: none;
    border-top: 1px solid #edf2f7;
    margin: 0;
}

/* Right Column: Contact Form */
.contact-form-wrapper {
    background-color: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 24px;
}

.form-group {
    width: 100%;
}

.form-group:last-child {
    display: flex;
    justify-content: flex-end;
}

.submit-btn {
    width: auto;
}

.contact-form-wrapper input,
.contact-form-wrapper textarea {
    width: 100%;
    padding: 14px 20px;
    border-radius: 18px;
    /*border: 1px solid rgba(0, 0, 0, 0.15);*/
    background-color: #F0F0F0;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #2d3748;
    border: 1px solid #f7fafc;
    transition: all 0.3s ease;
}

.contact-form-wrapper input::placeholder,
.contact-form-wrapper textarea::placeholder {
    color: #3a3a3a;
}

.contact-form-wrapper input:focus,
.contact-form-wrapper textarea:focus {
    outline: none;
    background-color: #fff;
    border-color: #059669;
    box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.1);
}

.contact-form-wrapper textarea {
    resize: vertical;
    margin-bottom: 24px;
}

.submit-btn {
    width: 50%;
    padding: 16px;
    background-color: #059669;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.submit-btn:hover {
    background-color: #047857;
    transform: translateY(-2px);
}



/* Tablet (max-width: 768px) */
@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .contact-form-wrapper {
        padding: 32px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 20px;
    }

    .submit-btn {
        width: 50%;
    }
}

/* Mobile (max-width: 480px) */
@media (max-width: 480px) {
    .contact-section {
        padding: 40px 16px;
    }

    .contact-main-title h1 {
        font-size: 28px;
    }

    .contact-info,
    .contact-form-wrapper {
        padding: 24px;
        border-radius: 12px;
    }

    .info-block {
        gap: 16px;
    }

    .info-icon {
        width: 44px;
        height: 44px;
    }

    .info-icon svg {
        width: 20px;
        height: 20px;
    }

    .info-text h3 {
        font-size: 16px;
    }

    .info-text p {
        font-size: 13px;
    }

    .submit-btn {
        width: 100%;
    }
}