/* Contact Section Styles */
.booking-form-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 2rem;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
                box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.booking-form-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.booking-header {
    background: linear-gradient(135deg, var(--vibrant-dark), #1a2e24);
    color: white;
    padding: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.booking-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 60%);
    z-index: 1;
}

.booking-header h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 2;
    color: white;
}

.booking-header p {
    margin: 0.75rem 0 0;
    font-size: 1.1rem;
    color: white;
    line-height: 1.6;
    opacity: 0.9;
    position: relative;
    z-index: 2;
    font-family: var(--font-body);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.contact-section {
    padding: 2rem;
}

.contact-message {
    text-align: center;
    margin: 2rem 2rem 0px 2rem;
    background: rgba(255, 177, 0, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 3px solid var(--vibrant-accent);
}

.contact-message p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 0;
    font-family: var(--font-body);
    font-weight: 400;
}

.btn-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 1rem 1.5rem;
    background-color: #25D366;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 1.75rem 0 1.5rem;
    position: relative;
    overflow: hidden;
}

.btn-whatsapp::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.2) 50%, rgba(255,255,255,0) 100%);
    transition: left 0.7s ease;
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover::before {
    left: 100%;
}

.btn-call-us {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #3a4a40, var(--vibrant-dark));
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
}

.btn-call-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.2) 50%, rgba(255,255,255,0) 100%);
    transition: left 0.7s ease;
}

.btn-call-us:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(44, 85, 48, 0.25);
}

.btn-call-us:hover::before {
    left: 100%;
}

.trust-badges {
    padding: 1.5rem;
    background: #f9f9f9;
    border-radius: 10px;
}

.trust-badge {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: #555;
    transition: transform 0.3s ease;
}

.trust-badge:last-child {
    margin-bottom: 0;
}

.trust-badge:hover {
    transform: translateX(5px);
    color: var(--vibrant-dark);
}

.trust-badge i {
    color: var(--vibrant-accent);
    margin-right: 0.75rem;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: rgba(255, 177, 0, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.trust-badge:hover i {
    transform: scale(1.1);
    background: rgba(255, 177, 0, 0.2);
}

.contact-divider {
    display: flex;
    align-items: center;
    margin: 1.5rem 0;
    color: #999;
    font-size: 0.9rem;
}

.contact-divider::before,
.contact-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #eee;
}

.contact-divider::before {
    margin-right: 1rem;
}

.contact-divider::after {
    margin-left: 1rem;
}

@media (max-width: 768px) {
    .booking-header {
        padding: 1.5rem;
    }
    
    .booking-header h3 {
        font-size: 1.3rem;
    }
    
    .contact-section {
        padding: 1.5rem;
    }
    
    .contact-message p {
        font-size: 1rem;
    }
    
    .trust-badges {
        padding: 1.25rem;
    }
}

/* Booking Inquiry Section */
.booking-inquiry {
    margin-top: 2rem;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    overflow: hidden;
}

.booking-inquiry-form {
    padding: 1rem;
}

.booking-note {
    display: flex;
    align-items: flex-start;
    background-color: rgba(255, 243, 224, 0.7);
    border-left: 4px solid var(--color-accent);
    padding: 1.25rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.booking-note i {
    color: var(--color-accent);
    font-size: 1.5rem;
    margin-right: 1rem;
    margin-top: 0.2rem;
}

.booking-note p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 2px rgba(44, 85, 48, 0.1);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #aaa;
}

.inquiry-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.inquiry-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(44, 85, 48, 0.25);
}

.inquiry-submit-btn i {
    font-size: 0.9rem;
}

@media (min-width: 768px) {
    .booking-inquiry-form {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .booking-header {
        padding: 1.5rem;
    }
    
    .booking-header h3 {
        font-size: 1.3rem;
    }
    
    .contact-section {
        padding: 1.5rem;
    }
    
    .contact-message p {
        font-size: 1rem;
    }
    
    .trust-badges {
        padding: 1.25rem;
    }
}
