/**
 * contact.css
 * Specific styles for the Contact Us page template
 * WITH !important to override any conflicting styles
 */

/* ===== CONTACT HERO SECTION ===== */
.contact-hero {
    height: 70vh !important;
    min-height: 450px !important;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
                url('../images/about.jpg') no-repeat center center/cover !important;
    position: relative !important;
    color: #fff !important;
    display: flex !important;
    align-items: center !important;
    margin-top: 0 !important;
    width: 100% !important;
}

.contact-hero .hero-content {
    max-width: 800px !important;
    margin: 0 auto !important;
    text-align: center !important;
}

.contact-hero .hero-content h1 {
    font-size: 52px !important;
    margin-bottom: 20px !important;
    color: #fff !important;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3) !important;
}

.contact-hero .hero-content p {
    font-size: 20px !important;
    margin-bottom: 30px !important;
    color: #fff !important;
    opacity: 0.95 !important;
}

/* Style the "Call Us Now" button */
.contact-hero .btn-book {
    display: inline-block !important;
    background: #ffcc00 !important;
    color: #333 !important;
    padding: 15px 40px !important;
    border-radius: 50px !important;
    font-size: 1.2rem !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    border: 2px solid #ffcc00 !important;
}

.contact-hero .btn-book:hover {
    background: transparent !important;
    color: #ffcc00 !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 30px rgba(255, 204, 0, 0.3) !important;
}

.contact-hero .btn-book i {
    margin-right: 10px !important;
}

/* ===== CONTACT SECTION - FORCE CORRECT STYLES ===== */
.contact-section {
    padding: 80px 0 !important;
    background: #f8f9fa !important;
    width: 100% !important;
}

.contact-section .container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 15px !important;
    width: 100% !important;
}

.contact-wrapper {
    display: flex !important;
    flex-wrap: wrap !important;
    background: white !important;
    border-radius: 20px !important;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1) !important;
    overflow: hidden !important;
    width: 100% !important;
}

/* Contact Info Left Side - FORCE PURPLE */
.contact-info {
    flex: 1 1 40% !important;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: white !important;
    padding: 50px 40px !important;
    min-width: 300px !important;
}

/* Force ALL text inside contact-info to be white */
.contact-info,
.contact-info *,
.contact-info h2,
.contact-info h3,
.contact-info p,
.contact-info a,
.contact-info span,
.contact-info div,
.contact-info i {
    color: white !important;
}

.contact-info h2 {
    font-size: 32px !important;
    margin-bottom: 15px !important;
    font-weight: 700 !important;
}

.contact-tagline {
    font-size: 16px !important;
    margin-bottom: 40px !important;
    opacity: 0.9 !important;
    line-height: 1.6 !important;
}

.info-items {
    margin-bottom: 40px !important;
}

.info-item {
    display: flex !important;
    margin-bottom: 30px !important;
    gap: 20px !important;
}

.info-item:last-child {
    margin-bottom: 0 !important;
}

.info-icon {
    width: 50px !important;
    height: 50px !important;
    background: rgba(255, 255, 255, 0.2) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 20px !important;
    flex-shrink: 0 !important;
}

.info-content h3 {
    font-size: 18px !important;
    margin-bottom: 8px !important;
    font-weight: 600 !important;
}

.info-content p {
    line-height: 1.6 !important;
    margin-bottom: 5px !important;
    font-size: 15px !important;
}

.info-content a {
    text-decoration: none !important;
    font-size: 15px !important;
}

.info-content a:hover {
    text-decoration: underline !important;
}

/* Social Links - FORCE CORRECT STYLES */
.contact-social-links {
    margin-top: 40px !important;
}

.contact-social-links h3 {
    font-size: 18px !important;
    margin-bottom: 15px !important;
    font-weight: 600 !important;
    color: white !important;
}

.contact-social-icons {
    display: flex !important;
    gap: 12px !important;
}

.contact-social-icon {
    width: 40px !important;
    height: 40px !important;
    background: rgba(255, 255, 255, 0.2) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
    font-size: 16px !important;
}

.contact-social-icon i {
    color: white !important;
    font-size: 16px !important;
}

.contact-social-icon:hover {
    background: #ffcc00 !important;
}

.contact-social-icon:hover i {
    color: #000 !important;
}

/* Contact Form Right Side - FORCE WHITE BACKGROUND */
.contact-form-wrapper {
    flex: 1 1 60% !important;
    padding: 50px 40px !important;
    background: white !important;
    min-width: 300px !important;
}

/* Force form text to be dark */
.contact-form-wrapper,
.contact-form-wrapper *,
.contact-form-wrapper h2,
.contact-form-wrapper p,
.contact-form-wrapper label,
.contact-form-wrapper input,
.contact-form-wrapper select,
.contact-form-wrapper textarea {
    color: #333 !important;
}

.contact-form-wrapper h2 {
    font-size: 28px !important;
    margin-bottom: 10px !important;
    font-weight: 700 !important;
}

.form-tagline {
    color: #666 !important;
    margin-bottom: 30px !important;
    font-size: 16px !important;
}

.contact-form .form-row {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 20px !important;
    margin-bottom: 20px !important;
}

.contact-form .form-row .form-group {
    flex: 1 1 calc(50% - 10px) !important;
    min-width: 200px !important;
}

.contact-form .form-group {
    margin-bottom: 20px !important;
    width: 100% !important;
}

.contact-form label {
    display: block !important;
    margin-bottom: 8px !important;
    font-weight: 600 !important;
    font-size: 14px !important;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100% !important;
    padding: 12px 15px !important;
    border: 2px solid #e0e0e0 !important;
    border-radius: 10px !important;
    font-size: 15px !important;
    background: white !important;
    color: #333 !important;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none !important;
    border-color: #ffcc00 !important;
    box-shadow: 0 0 0 3px rgba(255,204,0,0.1) !important;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #999 !important;
    opacity: 1 !important;
}

.contact-form select {
    appearance: none !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 15px center !important;
    background-size: 16px !important;
    cursor: pointer !important;
}

.contact-submit {
    background: #ffcc00 !important;
    color: #000 !important;
    border: 2px solid #ffcc00 !important;
    padding: 15px 30px !important;
    border-radius: 50px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    width: 100% !important;
    margin-top: 10px !important;
}

.contact-submit i {
    color: #000 !important;
    font-size: 16px !important;
}

.contact-submit:hover {
    background: transparent !important;
    color: #ffcc00 !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 30px rgba(255, 204, 0, 0.3) !important;
}

.contact-submit:hover i {
    color: #ffcc00 !important;
}

/* ===== MAP SECTION ===== */
.map-section {
    padding: 60px 0 0 !important;
    background: #f8f9fa !important;
    width: 100% !important;
}

.map-header {
    text-align: center !important;
    margin-bottom: 40px !important;
}

.map-header h2 {
    font-size: 36px !important;
    color: #333 !important;
    margin-bottom: 10px !important;
    font-weight: 700 !important;
}

.map-header p {
    font-size: 18px !important;
    color: #666 !important;
}

.map-container {
    width: 100% !important;
    height: 450px !important;
}

.map-container iframe {
    width: 100% !important;
    height: 100% !important;
    border: none !important;
    display: block !important;
}

/* ===== FAQ SECTION ===== */
.faq-section {
    padding: 80px 0 !important;
    background: white !important;
    width: 100% !important;
}

.faq-section .section-title {
    font-size: 36px !important;
    color: #333 !important;
    margin-bottom: 50px !important;
    font-weight: 700 !important;
    text-align: center !important;
}

.faq-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 30px !important;
}

.faq-item {
    background: #f8f9fa !important;
    padding: 30px !important;
    border-radius: 15px !important;
    border: 1px solid #f0f0f0 !important;
}

.faq-item h3 {
    font-size: 18px !important;
    color: #333 !important;
    margin-bottom: 15px !important;
    font-weight: 600 !important;
}

.faq-item p {
    color: #666 !important;
    line-height: 1.7 !important;
    font-size: 15px !important;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .contact-wrapper {
        flex-direction: column !important;
    }
    
    .contact-info,
    .contact-form-wrapper {
        flex: 1 1 100% !important;
    }
    
    .faq-grid {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 768px) {
    .contact-info,
    .contact-form-wrapper {
        padding: 40px 30px !important;
    }
    
    .contact-form .form-row .form-group {
        flex: 1 1 100% !important;
    }
    
    .map-container {
        height: 350px !important;
    }
}

@media (max-width: 480px) {
    .contact-info,
    .contact-form-wrapper {
        padding: 30px 20px !important;
    }
    
    .contact-submit {
        padding: 12px 25px !important;
        font-size: 15px !important;
    }
    
    .map-container {
        height: 300px !important;
    }
    
    .faq-item {
        padding: 20px !important;
    }
}