/* Contact Page Styles */

.contact-page {
    padding: 80px 0;
    background-color: #fff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 80px;
    margin-bottom: 80px;
}

/* Form Styling */
.contact-form-section h1 {
    font-size: 32px;
    font-weight: 700;
    color: var(--blue-primary);
    margin-bottom: 40px;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 15px 20px;
    background-color: #f0f0f0; /* Light grey as per design */
    border: none;
    border-radius: 4px;
    font-size: 14px;
    color: #333;
    outline: none;
    transition: 0.3s;
}

.contact-form input::placeholder, .contact-form textarea::placeholder {
    color: #888;
}

.contact-form textarea {
    height: 300px;
    resize: none;
}

.btn-send-message {
    width: 100%;
    background-color: var(--blue-primary);
    color: #fff;
    padding: 15px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    margin-top: 10px;
    transition: 0.3s;
}

.btn-send-message:hover {
    background-color: var(--blue-hover);
}

/* Info Section Styling */
.contact-info-section .info-block {
    margin-bottom: 30px;
}

.contact-info-section h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--blue-primary);
    margin-bottom: 10px;
}

.contact-info-section p {
    font-size: 13px;
    color: #555;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.social-item {
    width: 36px;
    height: 36px;
    background-color: var(--blue-primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: 0.3s;
}

.social-item:hover {
    transform: translateY(-3px);
    background-color: var(--blue-bright);
}

/* Map Section */
.map-section {
    width: 100%;
    height: 450px;
    background-color: #eee;
    border-top: 1px solid #eee;
}

.map-section iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Responsive */
@media (max-width: 991px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .contact-info-section {
        order: -1;
    }
}

@media (max-width: 576px) {
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form-section h1 {
        font-size: 24px;
    }
}
