/* Contact Page Styles */
.contact-section {
    padding: 80px 0;
    background-color: #F4F8F9;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: #FDFDFD;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(19, 8, 3, 0.05);
}

.contact-info-column {
    padding-right: 20px;
}

.contact-info-column h2 {
    color: #130803;
    margin-bottom: 20px;
    font-size: 32px;
}

.contact-info-column p {
    color: #4c4440;
    margin-bottom: 30px;
    line-height: 1.6;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.info-item .icon-box {
    width: 45px;
    height: 45px;
    background: #2C8234;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-item .icon-box svg {
    width: 20px;
    height: 20px;
    fill: #FDFDFD;
}

.info-item .text-box h4 {
    color: #130803;
    margin: 0 0 5px 0;
    font-size: 18px;
}

.info-item .text-box p {
    margin: 0;
    color: #4c4440;
}

.contact-form-column h3 {
    color: #130803;
    margin-bottom: 25px;
    font-size: 24px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    color: #130803;
    font-weight: 500;
}

.contact-form .form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background: #F4F8F9;
    color: #130803;
    font-family: inherit;
    transition: border-color 0.3s;
}

.contact-form .form-control:focus {
    outline: none;
    border-color: #2C8234;
}

.contact-form textarea.form-control {
    height: 120px;
    resize: vertical;
}

.btn-submit {
    background: #2C8234;
    color: #FDFDFD;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    width: 100%;
}

.btn-submit:hover {
    background: #3ba345;
}

.map-section {
    height: 450px;
    width: 100%;
    margin-top: 50px;
    border-radius: 20px;
    overflow: hidden;
}

@media (max-width: 991px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        padding: 30px;
    }
    
    .contact-info-column {
        padding-right: 0;
        margin-bottom: 30px;
    }
}
