/**
 * Hospitality Components CSS
 * Complete component library for accommodation websites
 * @version 1.0.0
 */

/* =============================================
   TABLE OF CONTENTS
   1. Hero & Booking Widget
   2. Room Cards
   3. Property Highlights
   4. Special Offers
   5. Facilities Showcase
   6. Dining Options
   7. Nearby Attractions
   8. Guest Reviews
   9. Policies & Info
   10. FAQ Accordion
   11. Contact Info
   12. Booking CTA
   13. Mobile Menu
   14. Responsive
   ============================================= */

/* =============================================
   1. HERO ACCOMMODATION & BOOKING WIDGET
   ============================================= */
.hero-accommodation {
    position: relative;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: white;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 40px 0;
    text-align: center;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.hero-tagline {
    font-size: 24px;
    margin-bottom: 12px;
    opacity: 0.95;
}

.hero-description {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 32px;
    opacity: 0.9;
}

.hero-content h1 {
    color: white !important;
}

/* Booking Widget */
.booking-widget {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}

.booking-fields {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.booking-field {
    display: flex;
    flex-direction: column;
}

.booking-field label {
    display: block;
    color: #333;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 14px;
}

.booking-field input,
.booking-field select {
    width: 100%;
    padding: 14px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s;
    font-family: inherit;
}

.booking-field input:focus,
.booking-field select:focus {
    outline: none;
    border-color: var(--primary-color, #0077be);
}

.booking-field button {
    width: 100%;
    height: 100%;
    min-height: 56px;
    cursor: pointer;
    font-weight: 600;
}

/* =============================================
   2. ROOM CARDS
   ============================================= */
.featured-rooms {
    padding: 80px 0;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 12px;
}

.section-description {
    text-align: center;
    color: #666;
    max-width: 700px;
    margin: 0 auto 48px;
    font-size: 18px;
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 32px;
}

.room-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.room-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.room-card.featured {
    border: 2px solid var(--primary-color, #0077be);
}

.featured-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--primary-color, #0077be);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    z-index: 2;
    text-transform: uppercase;
}

.room-image {
    position: relative;
    height: 260px;
    overflow: hidden;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.room-card:hover .room-image img {
    transform: scale(1.1);
}

.room-content {
    padding: 24px;
}

.room-name {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.room-description {
    color: #666;
    margin-bottom: 16px;
    line-height: 1.6;
}

.room-specs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 12px;
    margin-bottom: 20px;
}

.room-spec {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #666;
}

.room-spec i {
    color: var(--primary-color, #0077be);
    font-size: 16px;
}

.room-amenities-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.amenity-tag {
    background: #f5f5f5;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    color: #666;
}

.room-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid #e0e0e0;
}

.room-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color, #0077be);
}

.room-price-unit {
    font-size: 14px;
    color: #999;
    font-weight: 400;
    margin-left: 4px;
}

/* =============================================
   3. PROPERTY HIGHLIGHTS
   ============================================= */
.property-highlights {
    padding: 80px 0;
    background: #f9f9f9;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.highlight-card {
    text-align: center;
    padding: 40px 24px;
    background: white;
    border-radius: 12px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.highlight-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.highlight-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color, #0077be), var(--primary-light, #0099e6));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
}

.highlight-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.highlight-description {
    color: #666;
    line-height: 1.6;
}

/* =============================================
   4. SPECIAL OFFERS
   ============================================= */
.special-offers {
    padding: 80px 0;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 32px;
}

.offer-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.offer-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.offer-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #e74c3c;
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
    z-index: 2;
    text-transform: uppercase;
}

.offer-image {
    height: 220px;
    overflow: hidden;
}

.offer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.offer-card:hover .offer-image img {
    transform: scale(1.1);
}

.offer-content {
    padding: 24px;
}

.offer-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.offer-description {
    color: #666;
    margin-bottom: 16px;
    line-height: 1.6;
}

.offer-discount {
    display: inline-block;
    background: #27ae60;
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 700;
    margin-bottom: 12px;
    font-size: 14px;
}

.offer-validity {
    color: #999;
    font-size: 14px;
    margin-bottom: 16px;
}

.promo-code {
    background: #f9f9f9;
    padding: 14px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
}

.promo-code code {
    background: white;
    padding: 6px 12px;
    border: 2px dashed var(--primary-color, #0077be);
    border-radius: 6px;
    font-weight: 700;
    font-size: 18px;
    color: var(--primary-color, #0077be);
    margin-left: 8px;
}

/* =============================================
   5. FACILITIES SHOWCASE
   ============================================= */
.facilities-showcase {
    padding: 80px 0;
    background: #f9f9f9;
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.facility-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.facility-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.facility-image {
    height: 200px;
    overflow: hidden;
}

.facility-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.facility-card:hover .facility-image img {
    transform: scale(1.1);
}

.facility-content {
    padding: 24px;
}

.facility-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.facility-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-color, #0077be), var(--primary-light, #0099e6));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.facility-name {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
}

.facility-description {
    color: #666;
    margin-bottom: 16px;
    line-height: 1.6;
}

.facility-info {
    display: flex;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid #e0e0e0;
    color: #999;
    font-size: 14px;
}

/* =============================================
   6. DINING OPTIONS
   ============================================= */
.dining-options {
    padding: 80px 0;
}

.dining-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.dining-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.dining-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.dining-image {
    height: 240px;
    overflow: hidden;
}

.dining-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.dining-card:hover .dining-image img {
    transform: scale(1.1);
}

.dining-content {
    padding: 24px;
}

.dining-name {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.cuisine-type {
    color: var(--primary-color, #0077be);
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 14px;
}

.dining-description {
    color: #666;
    margin-bottom: 16px;
    line-height: 1.6;
}

.dining-details {
    display: grid;
    gap: 8px;
    font-size: 14px;
    color: #666;
}

.dining-detail {
    display: flex;
    align-items: center;
    gap: 8px;
}

.dining-detail i {
    color: var(--primary-color, #0077be);
    width: 16px;
}

/* =============================================
   7. NEARBY ATTRACTIONS
   ============================================= */
.nearby-attractions {
    padding: 80px 0;
    background: #f9f9f9;
}

.attractions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.attraction-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.attraction-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.attraction-image {
    height: 180px;
    overflow: hidden;
}

.attraction-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.attraction-card:hover .attraction-image img {
    transform: scale(1.1);
}

.attraction-content {
    padding: 20px;
}

.attraction-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.attraction-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-color, #0077be);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}

.attraction-info h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}

.attraction-category {
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
}

.attraction-description {
    color: #666;
    margin-bottom: 12px;
    line-height: 1.6;
}

.attraction-distance {
    display: flex;
    justify-content: space-between;
    padding-top: 12px;
    border-top: 1px solid #e0e0e0;
    font-size: 14px;
}

.distance-label {
    color: #999;
}

.distance-value {
    color: var(--primary-color, #0077be);
    font-weight: 600;
}

/* =============================================
   8. GUEST REVIEWS
   ============================================= */
.guest-reviews {
    padding: 80px 0;
}

.reviews-header {
    text-align: center;
    margin-bottom: 48px;
}

.average-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 16px;
}

.rating-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color, #0077be);
}

.rating-stars {
    display: flex;
    gap: 4px;
}

.rating-stars i {
    font-size: 24px;
    color: #f39c12;
}

.total-reviews {
    color: #666;
    font-size: 16px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.review-card {
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.review-header {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.guest-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
}

.guest-avatar-placeholder {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--primary-color, #0077be);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
}

.guest-info {
    flex: 1;
}

.guest-name {
    font-weight: 700;
    margin-bottom: 4px;
    color: #1a1a1a;
}

.guest-location {
    color: #666;
    font-size: 14px;
}

.review-rating {
    display: flex;
    gap: 4px;
    margin-top: 8px;
}

.review-rating i {
    font-size: 14px;
    color: #ddd;
}

.review-rating i.active {
    color: #f39c12;
}

.review-text {
    line-height: 1.7;
    color: #333;
    margin-bottom: 16px;
}

.review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid #eee;
    font-size: 13px;
    color: #666;
}

.review-date {
    font-style: italic;
}

.room-type {
    background: #f0f0f0;
    padding: 4px 12px;
    border-radius: 12px;
}

.review-platforms {
    text-align: center;
    margin-top: 48px;
    padding-top: 48px;
    border-top: 2px solid #eee;
}

.platform-links {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.platform-link {
    padding: 12px 24px;
    border: 2px solid var(--primary-color, #0077be);
    border-radius: 8px;
    color: var(--primary-color, #0077be);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.platform-link:hover {
    background: var(--primary-color, #0077be);
    color: white;
}

/* =============================================
   9. POLICIES & INFO
   ============================================= */
.policies-info {
    padding: 80px 0;
    background: #f9f9f9;
}

.policies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.policy-card {
    background: white;
    padding: 32px 24px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.policy-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: var(--primary-color, #0077be);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
}

.policy-card h3 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.policy-details {
    text-align: left;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-row strong {
    color: #333;
}

.detail-row span {
    color: #666;
}

.detailed-policies {
    margin-top: 48px;
}

.policy-section {
    background: white;
    padding: 32px;
    border-radius: 12px;
    margin-bottom: 24px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.policy-section h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    margin-bottom: 16px;
    color: var(--primary-color, #0077be);
}

.policy-content {
    line-height: 1.8;
    color: #666;
}

.policy-content ul {
    list-style: none;
    padding: 0;
}

.policy-content ul li {
    padding-left: 24px;
    position: relative;
    margin-bottom: 8px;
}

.policy-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color, #0077be);
    font-weight: 700;
}

/* =============================================
   10. FAQ ACCORDION
   ============================================= */
.faq-accommodation {
    padding: 80px 0;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 16px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: white;
    border: none;
    padding: 20px 24px;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.faq-question:hover {
    background: #f9f9f9;
}

.faq-question.active {
    background: #f9f9f9;
    color: var(--primary-color, #0077be);
}

.faq-icon {
    font-size: 20px;
    transition: transform 0.3s;
}

.faq-question.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-answer-content {
    padding: 0 24px 20px;
    line-height: 1.7;
    color: #666;
}

/* =============================================
   CONTACT INFO
   ============================================= */
.contact-info {
    padding: 80px 0;
    background: #f9f9f9;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.contact-method {
    background: white;
    padding: 32px 24px;
    border-radius: 8px;
    display: flex;
    gap: 20px;
}

.method-icon {
    width: 56px;
    height: 56px;
    background: var(--primary-color, #2c5f8d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    flex-shrink: 0;
}

.method-content h3 {
    font-size: 16px;
    margin-bottom: 8px;
    color: #333;
}

.method-content a {
    color: var(--primary-color, #2c5f8d);
    font-weight: 600;
    text-decoration: none;
}

.method-content a:hover {
    text-decoration: underline;
}

.social-links {
    text-align: center;
    
}

.social-links h3 {
    margin-bottom: 24px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.social-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-color, #2c5f8d);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    text-decoration: none;
    transition: transform 0.3s;
}

.social-icon:hover {
    transform: translateY(-4px);
}

/* =============================================
   12. BOOKING CTA
   ============================================= */
.booking-cta {
    padding: 100px 0;
    position: relative;
    background-size: cover;
    background-position: center;
    color: white;
        margin-bottom: -80px !important;
    text-align: center;
}

.booking-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.cta-heading {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.cta-description {
    font-size: 20px;
    margin-bottom: 32px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-secondary {
    font-size: 16px;
    margin-top: 24px;
}

.cta-secondary a {
    color: white;
    text-decoration: underline;
}

/* =============================================
   13. MOBILE MENU
   ============================================= */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--text-primary, #1a1a1a);
    margin: 5px 0;
    transition: 0.3s;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    background: white;
    width: 85%;
    max-width: 400px;
    height: 100%;
    padding: 24px;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.3s;
}

.mobile-menu-overlay.active .mobile-menu-content {
    transform: translateX(0);
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 32px;
    cursor: pointer;
    color: #1a1a1a;
    margin-bottom: 24px;
}

.mobile-nav ul {
    list-style: none;
    padding: 0;
}

.mobile-nav li {
    border-bottom: 1px solid #e0e0e0;
}

.mobile-nav a {
    display: block;
    padding: 16px 0;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
}

.mobile-cta {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* =============================================
   14. RESPONSIVE DESIGN
   ============================================= */
@media (max-width: 1024px) {
    .main-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 32px;
    }
    
    .hero-tagline {
        font-size: 18px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .booking-fields {
        grid-template-columns: 1fr;
    }
    
    .rooms-grid,
    .offers-grid,
    .facilities-grid,
    .dining-grid,
    .attractions-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .cta-heading {
        font-size: 32px;
    }
    
    .cta-description {
        font-size: 16px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .policies-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .booking-widget {
        padding: 20px;
    }
    
    .room-card,
    .offer-card,
    .facility-card {
        margin: 0 -8px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 24px;
    }
}