/* Contact Form Section - Light Theme */
.contact-form-section {
    background: #f9f9f9;
    padding: 100px 0;
    overflow: hidden;
}

.contact-form-section .container {
    max-width: 1200px;
}

/* Left Column - Contact Info */
.contact-info-wrapper {
    color: #333;
}

/* Contact Details Title */
.contact-details-title {
    font-size: 36px;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 16px;
    line-height: 1.2;
}

/* Divider Line */
.contact-divider {
    width: 70px;
    height: 3px;
    background: #6c757d;
    margin-bottom: 32px;
    border-radius: 2px;
}

/* Google Maps Container */
.contact-map-container {
    margin-bottom: 32px;
}

.contact-map-container iframe {
    width: 100%;
    height: 350px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

/* Contact Info Items */
.contact-info-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-info-icon {
    width: 40px;
    height: 40px;
    background: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-icon i {
    font-size: 18px;
    color: #4a4a4a;
}

.contact-info-text {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    padding-top: 8px;
}

/* Right Column - Form */
.contact-form-wrapper {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e5e5;
}

.contact-form-title {
    font-size: 28px;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 32px;
    line-height: 1.3;
}

.contact-form {
    position: relative;
}

.contact-form-label {
    color: #4a4a4a;
    font-weight: 500;
    font-size: 14px;
}

.contact-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d0d0d0;
    border-radius: 6px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: #ffffff;
    color: #333;
    font-family: 'Open Sans', sans-serif;
}

.contact-input::placeholder {
    color: #999;
    font-weight: 400;
}

.contact-input:focus {
    outline: none;
    border-color: #6c757d;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(108, 117, 125, 0.1);
}

.contact-textarea {
    resize: none;
    min-height: 120px;
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
}

.btn-contact-submit {
    background: #000000;
    color: #ffffff;
    padding: 14px 32px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Open Sans', sans-serif;
}

.btn-contact-submit:hover {
    background: #1a1a1a;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

/* Contact Form Alert Messages */
.contact-alert {
    padding: 14px 18px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 500;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.contact-alert.show {
    opacity: 1;
    transform: translateY(0);
}

.contact-alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.contact-alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Responsive Design */
@media (max-width: 991px) {
    .contact-form-section {
        padding: 60px 0;
    }

    .contact-details-title {
        font-size: 32px;
        margin-bottom: 12px;
    }

    .contact-divider {
        margin-bottom: 24px;
    }

    .contact-info-wrapper {
        margin-bottom: 40px;
    }

    .contact-map-container iframe {
        height: 300px;
    }

    .contact-form-wrapper {
        padding: 32px 24px;
    }

    .contact-form-title {
        font-size: 24px;
        margin-bottom: 24px;
    }
}

@media (max-width: 576px) {
    .contact-details-title {
        font-size: 28px;
    }

    .contact-map-container iframe {
        height: 250px;
    }

    .contact-info-items {
        gap: 16px;
    }

    .contact-info-icon {
        width: 36px;
        height: 36px;
    }

    .contact-info-icon i {
        font-size: 16px;
    }

    .contact-info-text {
        font-size: 15px;
    }

    .contact-form-wrapper {
        padding: 24px 20px;
    }

    .contact-form-title {
        font-size: 22px;
    }

    .contact-input {
        padding: 10px 14px;
        font-size: 14px;
    }

    .btn-contact-submit {
        padding: 12px 24px;
        font-size: 15px;
    }
}

