/* Contact Page Styles */
.contact-hero {
    height: 35vh;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 50%, #2c3e50 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/img/desert-safari-dubai-4.webp') center/cover;
    opacity: 0.2;
    z-index: 1;
}

.contact-hero .hero-content {
    position: relative;
    z-index: 2;
}

.contact-hero h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.contact-hero p {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.contact-content {
    padding: 80px 0;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.contact-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e76f51, #f4a261);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.card-icon i {
    font-size: 2rem;
    color: white;
}

.contact-card h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: bold;
}

.contact-details {
    margin-bottom: 15px;
}

.contact-details a,
.contact-details span {
    display: block;
    color: #e76f51;
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 5px;
    text-decoration: none;
}

.contact-details a:hover {
    color: #d65a41;
}

.contact-card p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}

.contact-form-section {
    margin-bottom: 80px;
}

.form-map-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.contact-form-container h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: bold;
}

.contact-form-container p {
    color: #666;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 8px;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #e76f51;
    box-shadow: 0 0 0 3px rgba(231, 111, 81, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background: linear-gradient(135deg, #e76f51, #f4a261);
    color: white;
    padding: 18px 40px;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    justify-content: center;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(231, 111, 81, 0.3);
    background: linear-gradient(135deg, #d65a41, #e76f51);
}

.map-container h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 25px;
    font-weight: bold;
}

.map-embed {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.map-info {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.map-info h3 {
    color: #2c3e50;
    font-size: 1.4rem;
    margin-bottom: 20px;
    font-weight: bold;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.hours-item:last-child {
    border-bottom: none;
}

.day {
    font-weight: bold;
    color: #2c3e50;
}

.time {
    color: #e76f51;
    font-weight: 600;
}

.faq-section {
    margin-top: 60px;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 40px;
    font-weight: bold;
}

/* Booking Section Styles */
.booking-section {
    margin: 60px 0;
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.booking-title {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 50px;
    font-weight: bold;
}

.booking-form {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.booking-form .form-group {
    margin-bottom: 25px;
}

.booking-form label {
    display: block;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 1rem;
}

.booking-form .required {
    color: #e76f51;
}

.booking-form input,
.booking-form textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

.booking-form input:focus,
.booking-form textarea:focus {
    outline: none;
    border-color: #e76f51;
    box-shadow: 0 0 0 3px rgba(231, 111, 81, 0.1);
}

.booking-form textarea {
    resize: vertical;
    min-height: 120px;
}

.booking-form .captcha {
    display: flex;
    justify-content: center;
    margin: 30px 0;
}

.btn-book {
    background: linear-gradient(135deg, #e76f51, #f4a261);
    color: white;
    padding: 18px 40px;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    display: block;
}

.btn-book:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(231, 111, 81, 0.3);
    background: linear-gradient(135deg, #d65a41, #e76f51);
}

.btn-book:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.msg {
    margin-top: 20px;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    font-weight: bold;
}

.msg.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.msg.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-left: 4px solid #e76f51;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.faq-item h3 {
    color: #2c3e50;
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: bold;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design for Contact Page */
@media (max-width: 768px) {
    .contact-hero h1 {
        font-size: 2.2rem;
    }
    
    .contact-hero p {
        font-size: 1.1rem;
    }
    
    .contact-cards {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .contact-card {
        padding: 30px 20px;
    }
    
    .form-map-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .contact-form-container h2,
    .map-container h2 {
        font-size: 1.8rem;
    }

    /* Booking Section Responsive */
    .booking-title {
        font-size: 2rem;
    }

    .booking-form {
        padding: 35px 25px;
    }

    .booking-form input,
    .booking-form textarea {
        padding: 12px;
        font-size: 0.95rem;
    }

    .btn-book {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-item {
        padding: 25px 20px;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .contact-content {
        padding: 50px 0;
    }
    
    .contact-cards {
        margin-bottom: 50px;
    }
    
    .contact-form-section {
        margin-bottom: 50px;
    }
    
    .contact-hero h1 {
        font-size: 1.8rem;
    }
    
    .contact-hero p {
        font-size: 1rem;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
    }
    
    .card-icon i {
        font-size: 1.5rem;
    }
    
    .contact-card h3 {
        font-size: 1.2rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px;
    }
    
    .submit-btn {
        padding: 15px 30px;
    }
    
    .map-info {
        padding: 20px;
    }

    /* Booking Section Mobile */
    .booking-section {
        padding: 40px 0;
        margin: 40px 0;
    }

    .booking-title {
        font-size: 1.6rem;
        margin-bottom: 30px;
    }

    .booking-form {
        padding: 25px 15px;
        border-radius: 15px;
    }

    .booking-form label {
        font-size: 0.9rem;
    }

    .booking-form input,
    .booking-form textarea {
        padding: 10px;
        font-size: 0.9rem;
    }

    .btn-book {
        padding: 12px 25px;
        font-size: 0.95rem;
    }

    .g-recaptcha {
        transform: scale(0.85);
        transform-origin: 0 0;
    }

    .section-title {
        font-size: 1.6rem;
        margin-bottom: 30px;
    }

    .faq-item h3 {
        font-size: 1.1rem;
    }

    .faq-item p {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px !important;
        height: 50px !important;
        bottom: 15px !important;
        right: 15px !important;
    }

    .whatsapp-float i {
        font-size: 24px !important;
    }

    .whatsapp-float .tooltip {
        font-size: 12px !important;
        padding: 6px 10px !important;
        right: 60px !important;
    }
}
