/* X-Empire Boutique Hotel - Booking Page Styles */

/* Booking Page Specific Styles */
.booking-page {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

/* Page Header Enhancement */
.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/booking-hero.jpg') center/cover;
    position: relative;
}

.page-header::before {
    background: linear-gradient(135deg, rgba(204, 204, 115, 0.35) 0%, rgba(204, 204, 115, 0.15) 100%);
}

/* Booking Process Section */
.booking-process {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

.booking-process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, #cccc73, transparent);
}

.booking-process h2 {
    font-size: 42px;
    margin-bottom: 80px;
    position: relative;
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
}

.booking-process h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #cccc73, #e0d577);
    border-radius: 2px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 15%;
    right: 15%;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(204, 204, 115, 0.5), transparent);
    z-index: 1;
}

.step-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(204, 204, 115, 0.1);
    backdrop-filter: blur(10px);
}

.step-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(204, 204, 115, 0.3);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #cccc73 0%, #e0d577 100%);
    color: #1a1a2e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    margin: 0 auto 25px;
    position: relative;
    box-shadow: 0 4px 15px rgba(204, 204, 115, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.step-icon {
    font-size: 36px;
    margin-bottom: 20px;
    color: #cccc73;
    transition: all 0.3s ease;
}

.step-card:hover .step-icon {
    transform: scale(1.2) rotate(5deg);
    color: #e0d577;
}

.step-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #333;
    transition: color 0.3s ease;
}

.step-card:hover h3 {
    color: #cccc73;
}

.step-card p {
    color: #666;
    line-height: 1.6;
    font-size: 15px;
}

/* Booking Form Section */
.booking-form-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.booking-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    padding: 60px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(204, 204, 115, 0.1);
}

.booking-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(204, 204, 115, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.booking-form-wrapper h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #333;
    text-align: center;
}

.form-subtitle {
    text-align: center;
    font-size: 16px;
    color: #666;
    margin-bottom: 50px;
    font-weight: 400;
}

/* Form Styles */
.booking-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.form-group {
    position: relative;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #666;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group label i {
    color: #cccc73;
    font-size: 16px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid rgba(204, 204, 115, 0.2);
    border-radius: 12px;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    color: #333;
    background: #fff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #cccc73;
    box-shadow: 0 0 0 4px rgba(204, 204, 115, 0.1);
    transform: translateY(-2px);
}

.form-group input[type="date"] {
    padding: 16px 12px;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Nights Info Display */
.nights-info {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 16px 20px;
    border-radius: 12px;
    border: 2px solid rgba(204, 204, 115, 0.2);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.nights-info i {
    font-size: 20px;
    color: #cccc73;
}

.nights-display {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

/* Form Actions */
.form-actions {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

/* Enhanced WhatsApp Button */
.btn-whatsapp-booking {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #fff;
    border: none;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 50px;
    padding: 18px 50px;
    font-size: 18px;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-whatsapp-booking::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.8s ease;
}

.btn-whatsapp-booking:hover::before {
    left: 100%;
}

.btn-whatsapp-booking:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5);
    background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
}

.btn-whatsapp-booking:active {
    transform: translateY(-1px) scale(0.98);
}

.btn-whatsapp-booking i {
    font-size: 22px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.btn-whatsapp-booking:hover i {
    transform: scale(1.15) rotate(5deg);
}

/* Booking Information Section */
.booking-info {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.booking-info h2 {
    font-size: 42px;
    margin-bottom: 60px;
    text-align: center;
    position: relative;
    display: inline-block;
}

.booking-info h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #cccc73, #e0d577);
    border-radius: 2px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.info-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(204, 204, 115, 0.1);
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #cccc73, #e0d577);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(204, 204, 115, 0.3);
}

.info-card:hover::before {
    transform: scaleX(1);
}

.info-card i {
    font-size: 40px;
    color: #cccc73;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.info-card:hover i {
    transform: scale(1.1) rotate(5deg);
    color: #e0d577;
}

.info-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #333;
    transition: color 0.3s ease;
}

.info-card:hover h3 {
    color: #cccc73;
}

.info-card p {
    color: #666;
    line-height: 1.6;
    font-size: 15px;
    margin-bottom: 15px;
}

.info-card a {
    color: #cccc73;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-card a:hover {
    color: #e0d577;
    text-decoration: underline;
}

.info-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-card li {
    padding: 8px 0;
    color: #666;
    border-bottom: 1px solid #eee;
    transition: color 0.3s ease;
}

.info-card li:last-child {
    border-bottom: none;
}

.info-card:hover li {
    color: #333;
}

/* Contact Options Section */
.contact-options {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-options::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(204, 204, 115, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.contact-options::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #cccc73, transparent);
    opacity: 0.6;
}

.contact-options h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
    position: relative;
}

.contact-options h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #cccc73, #e0d577);
    border-radius: 2px;
}

.contact-options p {
    font-size: 18px;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: #d1d5db;
    line-height: 1.7;
    font-weight: 300;
}

.contact-methods {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 16px 30px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.contact-method:hover {
    background: rgba(204, 204, 115, 0.2);
    border-color: rgba(204, 204, 115, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(204, 204, 115, 0.3);
}

.contact-method i {
    font-size: 24px;
    transition: all 0.3s ease;
}

.contact-method:hover i {
    transform: scale(1.2);
}

.contact-method span {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .booking-form-wrapper {
        padding: 40px 25px;
        margin: 0 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .process-steps::before {
        display: none;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-methods {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-method {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .booking-form-wrapper {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .booking-form-wrapper h2 {
        font-size: 28px;
    }
    
    .btn-whatsapp-booking {
        padding: 16px 30px;
        font-size: 16px;
    }
}

/* Animation Enhancements */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.booking-form-wrapper,
.step-card,
.info-card {
    animation: slideInUp 0.6s ease-out;
}

/* Floating Animation for WhatsApp Button */
@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
    100% { transform: translateY(0px); }
}

.btn-whatsapp-booking {
    animation: floating 3s ease-in-out infinite;
}

/* Glassmorphism Effect for Form */
.booking-form-group {
    position: relative;
}

.booking-form-group::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
    border-radius: 12px;
    pointer-events: none;
    z-index: -1;
}

/* Booking-Specific Floating WhatsApp Button */
.floating-whatsapp-booking {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: floating 3s ease-in-out infinite;
    border: 3px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.floating-whatsapp-booking:hover {
    transform: scale(1.15) translateY(-5px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
    background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
}

.floating-whatsapp-booking i {
    font-size: 32px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.floating-whatsapp-booking:hover i {
    transform: scale(1.1) rotate(5deg);
}

.whatsapp-tooltip {
    position: absolute;
    right: 80px;
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
    border: 1px solid rgba(204, 204, 115, 0.3);
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.floating-whatsapp-booking:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive Design for Floating Button */
@media (max-width: 768px) {
    .floating-whatsapp-booking {
        bottom: 20px;
        right: 20px;
        width: 60px;
        height: 60px;
    }
    
    .floating-whatsapp-booking i {
        font-size: 26px;
    }
    
    .whatsapp-tooltip {
        display: none;
    }
}

@media (max-width: 480px) {
    .floating-whatsapp-booking {
        bottom: 15px;
        right: 15px;
        width: 55px;
        height: 55px;
    }
    
    .floating-whatsapp-booking i {
        font-size: 24px;
    }
}
