/* Booking Page Premium Styles */

.page-header {
    padding: 180px 0 60px;
    background-color: var(--white);
    text-align: center;
}

/* Booking Layout */
.booking-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto 100px;
}

/* Form Wrapper - Premium Glassmorphism */
.booking-form-wrapper {
    background: linear-gradient(145deg, #ffffff, #fcfcfc);
    padding: 70px;
    box-shadow: 0 40px 100px rgba(0,0,0,0.06);
    position: relative;
    border-radius: 8px;
    border: 1px solid rgba(200, 169, 126, 0.15);
    overflow: hidden;
}

.booking-form-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(200, 169, 126, 0.05) 0%, rgba(255,255,255,0) 60%);
    pointer-events: none;
    z-index: 0;
}

#booking-form {
    position: relative;
    z-index: 10;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

/* Floating Label Input Style */
.form-group {
    position: relative;
}

.form-group label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    color: var(--grey);
    transition: var(--transition-smooth);
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 15px 0;
    border: none;
    border-bottom: 2px solid #eaeaea;
    background-color: transparent;
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--dark);
    transition: var(--transition-smooth);
    border-radius: 0;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-bottom-color: var(--gold);
    outline: none;
}

.form-group input:focus + label, 
.form-group select:focus + label, 
.form-group textarea:focus + label {
    color: var(--gold);
}

/* Custom Select Arrow */
.form-group select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C8A97E' 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");
    background-repeat: no-repeat;
    background-position: right 0 center;
    background-size: 1em;
}

.form-actions {
    margin-top: 60px;
    text-align: center;
}

.btn-primary.full-width {
    padding: 20px;
    font-size: 1rem;
    letter-spacing: 3px;
    box-shadow: 0 15px 30px rgba(200, 169, 126, 0.3);
}

.btn-primary.full-width:hover {
    box-shadow: 0 20px 40px rgba(200, 169, 126, 0.5);
    transform: translateY(-5px);
}

.btn-whatsapp {
    background-color: #25d366;
    color: var(--white);
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 20px;
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.2);
    transition: var(--transition-smooth);
    border-radius: 2px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.btn-whatsapp:hover {
    background-color: #128c7e;
    box-shadow: 0 20px 40px rgba(37, 211, 102, 0.4);
    transform: translateY(-5px);
}

.divider {
    text-align: center;
    margin: 30px 0;
    color: #aeaeae;
    font-size: 0.8rem;
    letter-spacing: 2px;
    position: relative;
}

.divider::before, .divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: calc(50% - 40px);
    height: 1px;
    background-color: #eaeaea;
}

.divider::before { left: 0; }
.divider::after { right: 0; }

/* Success Message */
.booking-success-message {
    display: none; 
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    z-index: 20;
    background: white;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.success-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--gold) 0%, #a98555 100%);
    color: var(--white);
    border-radius: 50%;
    font-size: 50px;
    line-height: 100px;
    margin: 0 auto 40px;
    animation: bounceReveal 1s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 20px 40px rgba(200, 169, 126, 0.4);
}

.booking-success-message h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.booking-success-message p {
    font-size: 1.1rem;
    color: var(--grey);
    margin-bottom: 40px;
    line-height: 1.8;
}

@keyframes bounceReveal {
    0% { transform: translateY(50px) scale(0.5); opacity: 0; }
    50% { transform: translateY(-20px) scale(1.1); }
    100% { transform: translateY(0) scale(1); opacity: 1; }
}

/* Sidebar Info Cards */
.info-card {
    background: var(--white);
    padding: 50px 40px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
    margin-bottom: 40px;
    border-radius: 4px;
    transition: var(--transition-smooth);
    border: 1px solid rgba(0,0,0,0.03);
}

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

.info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.info-card h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--gold);
}

.info-card ul li {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f5f5f5;
    font-size: 0.95rem;
    color: var(--grey);
    display: flex;
    justify-content: space-between;
}

.info-card ul li strong {
    color: var(--dark);
    font-weight: 700;
}

.info-card ul li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.info-card.gold {
    background: linear-gradient(135deg, var(--gold) 0%, #a98555 100%);
    color: var(--white);
    box-shadow: 0 20px 50px rgba(200, 169, 126, 0.3);
}

.info-card.gold h3 { font-family: var(--font-body); font-weight: 800; color: var(--white); }
.info-card.gold h3::after { background-color: var(--white); }
.info-card.gold p { color: rgba(255,255,255,0.9); line-height: 1.8; }

.phone {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    margin-top: 30px;
    letter-spacing: 2px;
}

@media (max-width: 991px) {
    .booking-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .booking-form-wrapper {
        padding: 40px 30px;
    }
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}
