/* CONTACT PAGE STYLES */

/* Page Header */
.page-header {
    position: relative;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    color: #fff;
}

.page-header .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
    color: #fff;
}

.page-header p {
    font-size: 18px;
    color: #f0f0f0;
}

/* Contact Info Cards */
.contact-info-cards {
    padding: 60px 0;
    background: #f8f9fa;
}

.info-card {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: .3s;
}

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

.info-icon {
    width: 80px;
    height: 80px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.info-icon i {
    font-size: 36px;
    color: #D4AF37;
}

.info-card h3 {
    margin-bottom: 15px;
}

.info-card p {
    color: #555;
    margin-bottom: 5px;
}

.info-card a {
    color: #555;
    transition: .3s;
}

.info-card a:hover {
    color: #D4AF37;
}

.info-note {
    margin-top: 15px;
    font-size: 13px;
    color: #999 !important;
    font-style: italic;
}

/* Contact Main Section */
.contact-main {
    padding: 80px 0;
}

.contact-form-wrapper,
.contact-map-wrapper {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-form-wrapper h2,
.contact-map-wrapper h2 {
    margin-bottom: 15px;
    font-size: 28px;
}

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

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    transition: .3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #D4AF37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-group select {
    cursor: pointer;
    background: #fff;
}

.btn-block {
    width: 100%;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

/* Map */
.map-container {
    margin-bottom: 30px;
    border-radius: 12px;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 350px;
    border: none;
}

.business-hours {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
}

.business-hours h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.business-hours i {
    color: #D4AF37;
}

.business-hours ul {
    list-style: none;
}

.business-hours li {
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
}

.business-hours li:last-child {
    border-bottom: none;
}

.business-hours span {
    font-weight: 600;
    color: #333;
}

/* Quick Connect */
.quick-connect {
    padding: 60px 0;
    background: linear-gradient(135deg, #0B2545, #1B3A6B);
    color: #fff;
}

.quick-connect .section-title {
    color: #fff;
}

.connect-card {
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    transition: .3s;
}

.connect-card:hover {
    transform: translateY(-10px);
}

.whatsapp-card {
    background: #25D366;
    color: #fff;
}

.whatsapp-card i {
    font-size: 48px;
    margin-bottom: 20px;
}

.whatsapp-card h3 {
    color: #fff;
    margin-bottom: 15px;
}

.whatsapp-card p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
}

.whatsapp-card .btn-primary {
    background: #fff;
    color: #25D366;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.whatsapp-card .btn-primary:hover {
    background: #f0f0f0;
}

.callback-card {
    background: #fff;
}

.callback-card i {
    font-size: 48px;
    color: #D4AF37;
    margin-bottom: 20px;
}

.callback-card h3 {
    margin-bottom: 15px;
}

.callback-card p {
    color: #666;
    margin-bottom: 25px;
}

.callback-form {
    display: flex;
    gap: 10px;
}

.callback-form input {
    flex: 1;
    padding: 12px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
}

.callback-form .btn-primary {
    padding: 12px 24px;
    border: none;
    cursor: pointer;
}

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

.faq-item {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 18px;
}

.faq-item i {
    color: #D4AF37;
}

.faq-item p {
    color: #666;
    line-height: 1.8;
    margin-left: 30px;
}

/* Responsive */
@media(max-width: 992px) {
    .page-header h1 {
        font-size: 36px;
    }
    
    .callback-form {
        flex-direction: column;
    }
}

@media(max-width: 768px) {
    .contact-form-wrapper,
    .contact-map-wrapper {
        padding: 25px;
    }
    
    .faq-item h3 {
        font-size: 16px;
    }
    
    .faq-item p {
        margin-left: 0;
    }
}