/* Contact Us Page Styles */

/* Hero Section */
.contact-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 140px 0 100px;
}

.contact-hero .hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.contact-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(1, 23, 55, 0.95) 0%, rgba(14, 156, 126, 0.85) 100%);
    z-index: 1;
}

.contact-hero .container {
    z-index: 2;
}

.min-vh-50 {
    min-height: 50vh;
}

.contact-hero .hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 10px 24px;
    border-radius: 50px;
    color: #fff;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-hero .hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 20px;
}

.contact-hero .hero-title .highlight {
    background: linear-gradient(135deg, #0E9C7E, #00d4aa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-hero .hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 3;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: 120px;
}

/* Contact Section */
.contact-section {
    padding: 100px 0 120px;
    background: #f8f9fa;
}

.contact-form-wrapper {
    background: #fff;
    border-radius: 25px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.contact-form-wrapper h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #001737;
    margin-bottom: 10px;
}

.contact-form-wrapper > p {
    color: #666;
    margin-bottom: 30px;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    color: #001737;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-control,
.form-select {
    padding: 14px 18px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: #0E9C7E;
    box-shadow: 0 0 0 4px rgba(14, 156, 126, 0.1);
}

.form-control::placeholder {
    color: #aaa;
}

textarea.form-control {
    resize: none;
}

.form-check {
    padding-left: 30px;
}

.form-check-input {
    width: 20px;
    height: 20px;
    margin-left: -30px;
    margin-top: 2px;
    border: 2px solid #ddd;
}

.form-check-input:checked {
    background-color: #0E9C7E;
    border-color: #0E9C7E;
}

.form-check-label {
    color: #666;
    font-size: 0.9rem;
}

.form-check-label a {
    color: #0E9C7E;
    text-decoration: none;
}

.form-check-label a:hover {
    text-decoration: underline;
}

.btn-submit {
    background: linear-gradient(135deg, #0E9C7E, #00d4aa);
    color: #fff;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(14, 156, 126, 0.3);
    color: #fff;
}

/* Contact Info */
.contact-info-wrapper {
    height: 100%;
}

.contact-info-wrapper h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #001737;
    margin-bottom: 10px;
}

.contact-info-wrapper > p {
    color: #666;
    margin-bottom: 30px;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    display: flex;
    gap: 20px;
    padding: 30px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.info-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #0E9C7E, #00d4aa);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.info-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #001737;
    margin-bottom: 8px;
}

.info-content p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.info-content a {
    color: #0E9C7E;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-content a:hover {
    color: #001737;
}

/* Social Links */
.social-links {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px dashed #e9ecef;
}

.social-links h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #001737;
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-links .social-icon {
    width: 45px;
    height: 45px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #001737;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links .social-icon:hover {
    background: #0E9C7E;
    color: #fff;
    transform: translateY(-3px);
}

/* Offices Section */
.offices-section {
    padding: 120px 0;
    background: #fff;
}

.section-badge {
    display: inline-block;
    background: rgba(14, 156, 126, 0.1);
    color: #0E9C7E;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #001737;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.15rem;
    color: #666;
}

.office-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.office-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.office-image {
    height: 160px;
    background-size: cover;
    background-position: center;
}

.office-content {
    padding: 30px;
}

.office-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #001737;
    margin-bottom: 15px;
}

.office-content p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.office-content a {
    color: #0E9C7E;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.office-content a i {
    margin-right: 8px;
}

.office-content a:hover {
    color: #001737;
}

/* Map Section */
.map-section {
    margin-bottom: 0;
}

.map-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.map-container iframe {
    filter: grayscale(30%);
    transition: filter 0.3s ease;
}

.map-container:hover iframe {
    filter: grayscale(0%);
}

/* FAQ Section */
.faq-section {
    padding: 120px 0;
    background: #f8f9fa;
}

.accordion-item {
    background: #fff;
    border: none !important;
    border-radius: 15px !important;
    margin-bottom: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.accordion-button {
    padding: 20px 25px;
    font-weight: 600;
    font-size: 1.05rem;
    color: #001737;
    background: #fff;
    border: none;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    background: #fff;
    color: #0E9C7E;
}

.accordion-button::after {
    background-size: 18px;
    width: 18px;
    height: 18px;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.accordion-body {
    padding: 0 25px 25px;
    color: #666;
    line-height: 1.7;
}

/* CTA Section */
.contact-cta-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(1, 23, 55, 0.95) 0%, rgba(14, 156, 126, 0.9) 100%);
}

.contact-cta-section .container {
    z-index: 2;
}

.contact-cta-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
}

.contact-cta-section p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 35px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-call {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: #001737;
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-cta-call:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    color: #001737;
}

.btn-cta-demo {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #0E9C7E, #00d4aa);
    color: #fff;
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-cta-demo:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(14, 156, 126, 0.4);
    color: #fff;
}

/* Responsive */
@media (max-width: 991px) {
    .contact-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .contact-form-wrapper {
        padding: 35px;
        margin-bottom: 40px;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .contact-hero {
        min-height: 70vh;
        padding: 120px 0 80px;
    }
    
    .contact-hero .hero-title {
        font-size: 2rem;
    }
    
    .contact-form-wrapper {
        padding: 25px;
    }
    
    .info-card {
        flex-direction: column;
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .contact-cta-section h2 {
        font-size: 1.8rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons a {
        width: 100%;
        justify-content: center;
    }
}
