/* ==========================================================
   HOTEL BOOKING PAGE — hotelbooking.css
   Warm Amber / Gold theme
   ========================================================== */

.hotel-page {
    font-family: 'DM Sans', sans-serif;
    padding-top: 70px;
}

@media (max-width: 991px) {
    .hotel-page { padding-top: 60px; }
}

/* ----------------------------------------------------------
   HERO
   ---------------------------------------------------------- */

.hotel-hero {
    background: linear-gradient(135deg, #fff8e7 0%, #fffdf5 40%, #fef3c7 100%);
    padding: 60px 0 40px;
    position: relative;
    overflow: hidden;
}

.hotel-hero::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 320px; height: 320px;
    background: radial-gradient(circle, rgba(245,158,11,0.10) 0%, transparent 70%);
    border-radius: 50%;
}

.hotel-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245,158,11,0.1);
    border: 1px solid rgba(245,158,11,0.3);
    color: #b45309;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.hotel-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: #1c1917;
    line-height: 1.2;
}

.hotel-hero-title span { color: #d97706; }

.hotel-hero-subtitle {
    font-size: 1.05rem;
    color: #57534e;
    max-width: 520px;
    line-height: 1.7;
}

.hotel-hero-img {
    width: 100%;
    max-width: 520px;
    border-radius: 24px;
    box-shadow: 0 24px 60px rgba(217,119,6,0.18);
}

.btn-whatsapp-hotel {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(37,211,102,0.35);
    transition: all 0.3s ease;
}

.btn-whatsapp-hotel:hover {
    background: #1ebe5d;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(37,211,102,0.45);
}

.btn-whatsapp-hotel i { font-size: 1.3rem; }

/* ----------------------------------------------------------
   SECTION HEADING COMMON
   ---------------------------------------------------------- */

.hotel-section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 800;
    color: #1c1917;
    margin-bottom: 10px;
}

.hotel-section-sub {
    font-size: 0.95rem;
    color: #78716c;
    max-width: 480px;
    margin: 0 auto;
}

/* ----------------------------------------------------------
   WHY CHOOSE US FEATURES
   ---------------------------------------------------------- */

.hotel-features {
    background: #fff;
    padding: 70px 0;
}

.hotel-feature-card {
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-radius: 20px;
    padding: 30px 24px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.hotel-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(245,158,11,0.14);
}

.hotel-feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 1.6rem;
    color: #d97706;
}

.hotel-feature-card h5 {
    font-weight: 700;
    font-size: 1rem;
    color: #1c1917;
    margin-bottom: 8px;
}

.hotel-feature-card p {
    font-size: 0.85rem;
    color: #78716c;
    line-height: 1.55;
    margin: 0;
}

/* ----------------------------------------------------------
   HOTEL TYPES
   ---------------------------------------------------------- */

.hotel-types-section {
    background: linear-gradient(135deg, #fffbeb, #fff8dc);
    padding: 60px 0;
}

.hotel-type-chip {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1.5px solid #fde68a;
    border-radius: 16px;
    padding: 20px 12px;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 600;
    color: #92400e;
    transition: all 0.3s ease;
    cursor: default;
}

.hotel-type-chip i {
    font-size: 1.6rem;
    color: #d97706;
}

.hotel-type-chip:hover {
    border-color: #d97706;
    box-shadow: 0 4px 16px rgba(217,119,6,0.15);
    transform: translateY(-3px);
}

/* ----------------------------------------------------------
   HOW IT WORKS
   ---------------------------------------------------------- */

.hotel-steps-section {
    background: #fff;
    padding: 70px 0;
}

.hotel-step-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 36px;
}

.hotel-step-number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 800;
    color: #fff;
    box-shadow: 0 4px 16px rgba(245,158,11,0.35);
}

.hotel-step-text h6 {
    font-weight: 700;
    font-size: 1rem;
    color: #1c1917;
    margin-bottom: 4px;
}

.hotel-step-text p {
    font-size: 0.85rem;
    color: #78716c;
    margin: 0;
    line-height: 1.5;
}

.hotel-cta-box {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border-radius: 28px;
    padding: 40px 32px;
    text-align: center;
}

.hotel-cta-icon {
    font-size: 5rem;
    color: #d97706;
    display: block;
    margin-bottom: 24px;
}

.hotel-cta-title {
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    color: #1c1917;
    margin-bottom: 12px;
}

.hotel-cta-sub {
    color: #78716c;
    font-size: 0.95rem;
    margin-bottom: 28px;
    line-height: 1.6;
}

/* ----------------------------------------------------------
   TALK TO US CTA SECTION
   ---------------------------------------------------------- */

.hotel-cta-section {
    background: linear-gradient(135deg, #1c1917 0%, #44403c 50%, #d97706 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.hotel-cta-section::before {
    content: '🏨';
    position: absolute;
    font-size: 16rem;
    color: rgba(255,255,255,0.03);
    right: -20px; top: -30px;
    line-height: 1;
}

.hotel-cta-heading {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
}

.hotel-cta-text {
    color: rgba(255,255,255,0.75);
    font-size: 1rem;
    max-width: 560px;
    line-height: 1.6;
    margin: 0;
}

/* ----------------------------------------------------------
   TAGLINE
   ---------------------------------------------------------- */

.hotel-tagline {
    background: #fffbeb;
    padding: 36px 0;
    text-align: center;
}

.hotel-tagline h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: #1c1917;
}

/* ----------------------------------------------------------
   MOBILE
   ---------------------------------------------------------- */

@media (max-width: 768px) {
    .hotel-hero-title { font-size: 1.9rem; }
    .hotel-section-title { font-size: 1.5rem; }
    .hotel-cta-heading { font-size: 1.5rem; }
    .btn-whatsapp-hotel { font-size: 0.9rem; padding: 12px 24px; }
}