/* Contact Page Styles */

/* Sub-banner / Hero */
.sub-banner {
    height: 500px;
    position: relative;
    overflow: hidden;
}

.overview-bgi {
    position: relative;
}

.overview-bgi:before {
    background: url("../img/contact_us.png") 55% 0 no-repeat fixed;
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin-top: 10px;
}

.breadcrumb-area {
    position: relative;
    z-index: 1;
}

/* Contact Form Section */
.contact-2 {
    padding: 60px 0;
}

.main-title {
    margin-bottom: 50px;
}

.main-title h1 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.main-title h2 {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.main-title h2 span {
    color: #007bff;
}

.main-title p {
    font-size: 16px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

.form-control {
    height: 50px;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 10px 15px;
    font-size: 14px;
    color: #333;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #e74c3c;
    box-shadow: none;
}

textarea.form-control {
    height: auto;
    resize: vertical;
}

.send-btn {
    margin-top: 10px;
}

.button-theme {
    padding: 12px 35px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.button-theme:hover {
    background: #007bff !important;
    border-color: #007bff !important;
    color: #fff !important;
}

/* Contact Info Boxes */
.contact-info-2 {
    padding-left: 30px;
}

.ci-box {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}



.ci-box .icon {
    width: 50px;
    height: 50px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.ci-box .icon i {
    font-size: 22px;
    color: #444;
}

.ci-box .detail {
    flex: 1;
}

.ci-box .detail h5 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.ci-box .detail p {
    font-size: 14px;
    color: #666;
    margin-bottom: 3px;
    line-height: 1.6;
}

.ci-box .detail a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.ci-box .detail a:hover {
    color: #007bff;
}

/* Feature Cards */
.feature-card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}



.feature-icon {
    width: 70px;
    height: 70px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    font-size: 30px;
    color: #444;
}

.feature-card h4 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* FAQ Section */
.faq-item {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.faq-item h5 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.faq-item h5 i {
    color: #444;
    margin-right: 8px;
}

.faq-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 991px) {
    .contact-info-2 {
        padding-left: 0;
        margin-top: 40px;
    }
}

@media (max-width: 992px) {
    .sub-banner {
        display: none !important;
    }
    
    .contact-2 {
        padding: 40px 0;
    }
    
    .main-title h1 {
        font-size: 28px;
    }
    
    .main-title h2 {
        font-size: 26px;
    }
    
    .ci-box {
        padding: 15px;
    }
}

@media (max-width: 576px) {
    .main-title h1 {
        font-size: 24px;
    }
    
    .main-title h2 {
        font-size: 22px;
    }
    
    .feature-card {
        padding: 20px;
    }
}