/* Book Now Page Styles */
.booking-hero {
    padding: 120px 0 80px;
    color: white;
}

/* Booking Info Section */
.booking-info {
    padding: 60px 0;
    background: #f8f9fa;
}

.info-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-card i {
    font-size: 2.5rem;
    color: #FF69B4;
    margin-bottom: 15px;
}

.info-card h4 {
    font-weight: 600;
    margin-bottom: 10px;
}

.info-card p {
    color: #6c757d;
    margin: 0;
}

/* Rooms Section */
.rooms-section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-title p {
    color: #6c757d;
    font-size: 1.1rem;
}

.room-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.room-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.room-card .room-image {
    height: 200px;
    background: linear-gradient(135deg, #FF69B4, #FF1493);
    position: relative;
    overflow: hidden;
}

.room-card .room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.room-card .room-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #28a745;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.room-card .room-body {
    padding: 25px;
}

.room-card .room-type {
    color: #FF69B4;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.room-card h5 {
    font-weight: 700;
    margin-bottom: 10px;
}

.room-card .room-features {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    color: #6c757d;
    font-size: 0.9rem;
}

.room-card .room-features i {
    color: #FF69B4;
}

.room-card .room-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
}

.room-card .room-price span {
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 400;
}

.room-card .btn-book {
    display: block !important;
    width: 100%;
    background: linear-gradient(135deg, #FF69B4, #FF1493);
    border: none;
    padding: 12px;
    font-weight: 600;
    border-radius: 8px;
    margin-top: 15px;
    transition: opacity 0.3s ease;
    text-align: center !important;
    text-decoration: none !important;
    color: white !important;
    cursor: pointer !important;
    position: relative;
    z-index: 10;
}

.room-card .btn-book:hover {
    opacity: 0.9;
    color: white;
}

/* Booking Steps */
.booking-steps {
    padding: 80px 0;
    background: linear-gradient(135deg, #FF69B4, #FF1493) !important;
    background-color: #FF69B4 !important;
    /* Fallback */
    color: white !important;
}

.booking-steps h2 {
    color: white !important;
}

.booking-steps .text-center>p {
    color: rgba(255, 255, 255, 0.9) !important;
    opacity: 1 !important;
}

.step-item {
    text-align: center;
    padding: 20px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.25);
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
    backdrop-filter: blur(10px);
    color: white !important;
}

.step-item h4 {
    font-weight: 600;
    margin-bottom: 10px;
    color: white !important;
}

.step-item p {
    color: rgba(255, 255, 255, 0.95) !important;
    margin: 0;
}

/* Contact Section */
.booking-contact {
    padding: 60px 0;
    background: #f8f9fa;
}

.contact-box {
    background: white;
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact-box h3 {
    font-weight: 700;
    margin-bottom: 15px;
}

.contact-box p {
    color: #6c757d;
    margin-bottom: 25px;
}

.contact-box .contact-methods {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-method i {
    font-size: 1.5rem;
    color: #FF69B4;
}

.contact-method span {
    font-weight: 600;
}