/* ========================================
   CONTACT PAGE STYLES
   ======================================== */

/* Hero Section with Background Image */
.contact-hero-section {
    position: relative;
    padding: 250px 0 80px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    
}

.hero-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content {
    text-align: center;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    margin-bottom: 20px;
}

.breadcrumb-link {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-link:hover {
    color: #76c8e6;
}

.breadcrumb-separator {
    color: #fff;
}

.breadcrumb-current {
    color: #76c8e6;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Contact Page Section */
/* Contact Section Corrected Design */
.contact-section-corrected {
    padding: 80px 0;
    background-color: transparent;
}

.contact-container-corrected {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-wrapper-corrected {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: start;
}

/* Form Section */
.contact-form-corrected {
    background-color: #EFFFDB;
    padding: 50px;
}

.form-heading-corrected {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 40px;
}

.form-row-corrected {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    /* margin-bottom: 30px; */
}

.form-group-corrected {
    margin-bottom: 30px;
}

.form-group-corrected.full-width-field {
    grid-column: 1 / -1;
}

/* Input Fields - No Labels, Just Placeholders */
.form-input-corrected,
.form-textarea-corrected {
    width: 100%;
    padding: 10px 0;
    border: none;
    border-bottom: 1px solid #d0d0d0;
    background-color: transparent;
    font-size: 15px;
    color: #1a1a1a;
    transition: border-color 0.3s;
    outline: none;
}

.form-input-corrected::placeholder,
.form-textarea-corrected::placeholder {
    color: #999;
    font-size: 15px;
}

.form-input-corrected:focus,
.form-textarea-corrected:focus {
    border-bottom-color: #1D75BC;
}

.form-textarea-corrected {
    resize: vertical;
    /* min-height: 100px; */
    font-family: inherit;
}

/* Submit Button */
.btn-submit-corrected {
    background-color:  #7EBA2F;
    color: #fff;
    padding: 14px 35px;
    border: none;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-submit-corrected:hover {
    background-color: #1D75BC;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(50, 205, 50, 0.3);
}

.btn-submit-corrected:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Contact Info Section */
.contact-info-corrected {
    background-color: #fff;
    padding: 40px;
    border: 1px solid #e0e0e0; /* Light border */
    height: 100%;
}

.contact-info-header-corrected {
    margin-bottom: 30px;
}

.contact-us-label-corrected {
    display: block;
    font-size: 14px;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.keep-in-touch-corrected {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.2;
}

.contact-details-grid-corrected {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.contact-detail-item-corrected {
    margin-bottom: 0;
}

.detail-title-corrected {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.detail-value-corrected {
    font-size: 14px;
    color: #000000;
    margin: 0;
    display: flex;
    align-items: center;
}

.detail-value-corrected a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s;
}

.detail-value-corrected a:hover {
    color: #1D75BC;
}

/* Alert Messages */
.alert-success-corrected {
    background-color: #d4edda;
    color: #155724;
    padding: 12px 18px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.alert-error-corrected {
    background-color: #f8d7da;
    color: #721c24;
    padding: 12px 18px;
    margin-bottom: 25px;
    font-size: 14px;
}

.alert-error-corrected p {
    margin: 0;
}

/* Map Section */
.map-fullwidth-section-corrected {
    width: 100%;
    padding: 0;
    margin: 0;
}

.map-fullwidth-container-corrected {
    width: 100%;
    line-height: 0;
}

.map-fullwidth-container-corrected iframe {
    display: block;
    width: 100%;
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-wrapper-corrected {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form-corrected,
    .contact-info-corrected {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .form-row-corrected {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .contact-details-grid-corrected {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .contact-form-corrected,
    .contact-info-corrected {
        padding: 30px;
    }
    
    .keep-in-touch-corrected {
        font-size: 26px;
    }
    
    .form-heading-corrected {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .contact-section-corrected {
        padding: 50px 0;
    }
    
    .contact-form-corrected,
    .contact-info-corrected {
        padding: 25px;
    }
}
