/* Contact Page Styles */

/* Contact Hero Section */
.contact-hero-section {
    padding: 80px 0;
    background-color: var(--primary);
    position: relative;
    overflow: hidden;
    z-index: 3;
}

/*.contact-hero-section::after {*/
/*    content: '';*/
/*    position: absolute;*/
/*    bottom: -50px;*/
/*    left: 0;*/
/*    width: 100%;*/
/*    height: 100px;*/
/*    background-color: var(--accent);*/
/*    transform: skewY(-2deg);*/
/*    z-index: 1;*/
/*}*/

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.contact-form-container {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.contact-form-container .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--accent);
}

/* Contact Information */
.contact-info-container {
    background-color: var(--primary);
    color: white;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.contact-info-container .section-title {
    color: white;
}

.contact-info-container .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--accent);
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-right: 15px;
    flex-shrink: 0;
}

.contact-info-icon i {
    font-size: 1.5rem;
    color: var(--accent);
}

.contact-info-text h5 {
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-info-text p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.8);
}

.contact-info-text a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.contact-info-text a:hover {
    color: var(--accent);
}

.contact-social-icons {
    display: flex;
    flex-wrap: wrap;
}

.contact-social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-right: 10px;
    margin-bottom: 10px;
    color: white;
    transition: all 0.3s ease;
}

.contact-social-icons a:hover {
    background-color: var(--accent);
    transform: translateY(-3px);
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background-color: #f0f0f0;
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 450px;
    border: 0;
}

/* Form Styles */
.form-label {
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-control {
    padding: 0.75rem;
    border: 1px solid #ced4da;
    border-radius: 4px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 0.25rem rgba(16, 179, 213, 0.25);
}

.form-check-input:checked {
    background-color: var(--accent);
    border-color: var(--accent);
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #1e1b4a;
    border-color: #1e1b4a;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Success Message */
.alert-success {
    background-color: #d4edda;
    border-color: #c3e6cb;
    color: #155724;
    padding: 1rem;
    border-radius: 4px;
}

/* SEO Content Section */
.seo-content-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.seo-content-section h2 {
    color: var(--primary);
    margin-bottom: 25px;
    position: relative;
}

.seo-content-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--accent);
}

.seo-text {
    color: #555;
    line-height: 1.8;
}

.seo-text p {
    margin-bottom: 20px;
}

.seo-text a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.seo-text a:hover {
    color: var(--primary);
    text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .contact-form-section {
        padding: 60px 0;
    }

    .map-section {
        padding: 60px 0;
    }

    .contact-hero-section {
        padding: 60px 0;
    }

    .seo-content-section {
        padding: 50px 0;
    }
}

@media (max-width: 767.98px) {
    .contact-form-section {
        padding: 50px 0;
    }

    .map-section {
        padding: 50px 0;
    }

    .contact-hero-section {
        padding: 50px 0;
    }

    .contact-form-container,
    .contact-info-container {
        padding: 20px;
    }

    .contact-info-item {
        margin-bottom: 15px;
    }

    .contact-info-icon {
        width: 40px;
        height: 40px;
        margin-right: 10px;
    }

    .contact-info-icon i {
        font-size: 1.2rem;
    }

    .map-container iframe {
        height: 350px;
    }

    .seo-content-section {
        padding: 40px 0;
    }

    .seo-content-section h2 {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    .seo-text {
        font-size: 0.95rem;
        line-height: 1.6;
    }
}

@media (max-width: 575.98px) {
    .contact-form-section {
        padding: 40px 0;
    }

    .map-section {
        padding: 40px 0;
    }

    .contact-hero-section {
        padding: 40px 0;
    }

    .contact-form-container,
    .contact-info-container {
        padding: 15px;
    }

    .contact-info-item {
        margin-bottom: 10px;
    }

    .contact-info-icon {
        width: 35px;
        height: 35px;
        margin-right: 10px;
    }

    .contact-info-icon i {
        font-size: 1rem;
    }

    .map-container iframe {
        height: 300px;
    }

    .form-label {
        font-size: 0.9rem;
    }

    .form-control {
        padding: 0.6rem;
        font-size: 0.9rem;
    }

    .btn-primary {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }

    .seo-content-section {
        padding: 30px 0;
    }

    .seo-content-section h2 {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }

    .seo-content-section h2::after {
        width: 40px;
        height: 2px;
        bottom: -8px;
    }

    .seo-text {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .seo-text p {
        margin-bottom: 15px;
    }
}


.contact-form-container select.form-control {
    padding-top: 0.55rem;
    padding-bottom: 0.55rem;
}
