/* ============================================================
   THE CONTINENTAL COLOMBO - Luxury Eco-Hotel Stylesheet
   ============================================================ */

/* ====== CSS Variables / Color Palette ====== */
:root {
    --primary: #1a3c34;
    --primary-light: #2a5c52;
    --primary-dark: #0f2a24;
    --accent: #c9a96e;
    --accent-light: #dcc89e;
    --accent-dark: #a88a4e;
    --bg-cream: #faf6f0;
    --bg-light: #f8f5f0;
    --bg-white: #ffffff;
    --text-dark: #2c2c2c;
    --text-muted: #6c757d;
    --text-light: #f8f9fa;
    --shadow-sm: 0 2px 15px rgba(0,0,0,0.08);
    --shadow-md: 0 5px 30px rgba(0,0,0,0.12);
    --shadow-lg: 0 10px 50px rgba(0,0,0,0.15);
    --transition: all 0.3s ease;
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
}

/* ====== Global Styles ====== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--bg-white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 2rem;
}

.text-accent {
    color: var(--accent) !important;
}

.bg-accent {
    background-color: var(--accent) !important;
}

.btn-accent {
    background-color: var(--accent);
    color: #fff;
    border: none;
    padding: 0.6rem 1.8rem;
    font-weight: 500;
    transition: var(--transition);
    border-radius: 0;
}

.btn-accent:hover {
    background-color: var(--accent-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.btn-outline-accent {
    background: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
    padding: 0.5rem 1.5rem;
    font-weight: 500;
    transition: var(--transition);
    border-radius: 0;
}

.btn-outline-accent:hover {
    background-color: var(--accent);
    color: #fff;
    transform: translateY(-2px);
}

.btn-primary-custom {
    background-color: var(--primary);
    color: #fff;
    border: none;
    padding: 0.6rem 1.8rem;
    font-weight: 500;
    transition: var(--transition);
    border-radius: 0;
}

.btn-primary-custom:hover {
    background-color: var(--primary-light);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

/* ====== Top Bar ====== */
.top-bar {
    background: var(--primary-dark);
    color: var(--text-light);
    font-size: 0.85rem;
    padding: 8px 0;
}

.top-bar span {
    font-size: 0.82rem;
}

.top-bar .bi {
    margin-right: 5px;
    color: var(--accent);
}

/* ====== Navbar ====== */
.main-navbar {
    background: var(--primary) !important;
    padding: 12px 0;
    transition: var(--transition);
    box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.main-navbar .navbar-brand {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.main-navbar .navbar-brand i {
    color: var(--accent);
}

.main-navbar .nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 16px !important;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.main-navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 16px;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
}

.main-navbar .nav-link:hover::after,
.main-navbar .nav-link.active::after {
    width: calc(100% - 32px);
}

.main-navbar .nav-link:hover,
.main-navbar .nav-link.active {
    color: var(--accent) !important;
}

.btn-book-nav {
    background: var(--accent);
    color: #fff !important;
    border-radius: 0 !important;
    padding: 8px 20px !important;
    font-weight: 600 !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
}

.btn-book-nav:hover {
    background: var(--accent-dark) !important;
    color: #fff !important;
}

.btn-book-nav::after {
    display: none !important;
}

/* ====== Hero Slider ====== */
.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-slide {
    position: relative;
    height: 90vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-slide .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15,42,36,0.85) 0%, rgba(26,60,52,0.7) 50%, rgba(15,42,36,0.6) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
}

.hero-content .hero-badge {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    padding: 6px 20px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 4.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.hero-content p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85);
    max-width: 600px;
    margin: 0 auto 2rem;
}

.hero-content .btn-hero {
    background: var(--accent);
    color: #fff;
    padding: 12px 35px;
    font-weight: 600;
    border: none;
    border-radius: 0;
    font-size: 1rem;
    transition: var(--transition);
    margin: 0 5px;
}

.hero-content .btn-hero-outline {
    background: transparent;
    color: #fff;
    padding: 10px 33px;
    font-weight: 600;
    border: 2px solid #fff;
    border-radius: 0;
    font-size: 1rem;
    transition: var(--transition);
    margin: 0 5px;
}

.hero-content .btn-hero:hover {
    background: var(--accent-dark);
    transform: translateY(-3px);
}

.hero-content .btn-hero-outline:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-3px);
}

/* Carousel Controls */
.hero-section .carousel-control-prev,
.hero-section .carousel-control-next {
    width: 60px;
    height: 60px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.15);
    border: 2px solid rgba(255,255,255,0.3);
    opacity: 0;
    transition: var(--transition);
}

.hero-section:hover .carousel-control-prev,
.hero-section:hover .carousel-control-next {
    opacity: 1;
}

.hero-section .carousel-control-prev {
    left: 30px;
}

.hero-section .carousel-control-next {
    right: 30px;
}

.hero-section .carousel-indicators button {
    width: 40px;
    height: 4px;
    border-radius: 0;
    background: rgba(255,255,255,0.5);
    border: none;
    margin: 0 4px;
}

.hero-section .carousel-indicators button.active {
    background: var(--accent);
    height: 4px;
}

/* ====== Stats Bar ====== */
.stats-bar {
    background: var(--primary);
    padding: 30px 0;
    margin-top: -1px;
}

.stat-item {
    text-align: center;
    padding: 15px;
}

.stat-item .stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    display: block;
}

.stat-item .stat-label {
    color: rgba(255,255,255,0.75);
    font-size: 0.95rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ====== Intro Section ====== */
.intro-section {
    padding: 80px 0;
    background: var(--bg-cream);
}

.intro-section .intro-img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.intro-badge {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    padding: 4px 15px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

/* ====== Eco Section ====== */
.eco-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.eco-card {
    text-align: center;
    padding: 35px 20px;
    background: var(--bg-cream);
    transition: var(--transition);
    border: 1px solid transparent;
}

.eco-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-light);
}

.eco-card .eco-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.eco-card h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--primary);
}

/* ====== Featured Rooms ====== */
.featured-rooms {
    padding: 80px 0;
    background: var(--bg-cream);
}

.room-card {
    background: #fff;
    border: none;
    border-radius: 0;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.room-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.room-card .card-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 260px;
}

.room-card .card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.room-card:hover .card-img-wrapper img {
    transform: scale(1.1);
}

.room-card .room-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--accent);
    color: #fff;
    padding: 4px 14px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.room-card .room-price {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: var(--primary);
    color: #fff;
    padding: 6px 16px;
    font-size: 0.85rem;
    font-weight: 600;
}

.room-card .room-price span {
    font-size: 1.2rem;
    color: var(--accent);
}

.room-card .card-body {
    padding: 1.5rem;
}

.room-card .card-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--primary);
}

.room-card .room-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 10px 0;
}

.room-card .room-amenities span {
    background: var(--bg-cream);
    padding: 4px 10px;
    font-size: 0.75rem;
    color: var(--text-muted);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.room-card .room-amenities span i {
    color: var(--accent);
}

/* ====== Amenities Section ====== */
.amenities-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.amenity-item {
    text-align: center;
    padding: 30px 15px;
    transition: var(--transition);
}

.amenity-item:hover {
    transform: translateY(-5px);
}

.amenity-item .amenity-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    background: var(--bg-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--accent);
    transition: var(--transition);
}

.amenity-item:hover .amenity-icon {
    background: var(--primary);
    color: var(--accent);
}

.amenity-item h6 {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 5px;
}

.amenity-item p {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin: 0;
}

/* ====== Testimonials ====== */
.testimonials-section {
    padding: 80px 0;
    background: var(--primary);
    color: #fff;
}

.testimonial-card {
    text-align: center;
    padding: 30px;
}

.testimonial-card .stars {
    color: var(--accent);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-card .testimonial-text {
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.85);
    margin-bottom: 1.5rem;
}

.testimonial-card .testimonial-author {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--accent);
}

.testimonial-card .testimonial-title {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
}

/* ====== CTA Section ====== */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/hotel/pattern-bg.png') repeat;
    opacity: 0.05;
}

.cta-section h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: #fff;
}

/* ====== Map Section ====== */
.map-section {
    height: 400px;
}

.map-section iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ====== Newsletter ====== */
.newsletter-section {
    background: var(--primary-dark);
}

.newsletter-form {
    max-width: 500px;
}

.newsletter-form .form-control {
    border: none;
    border-radius: 0;
    height: 52px;
    background: rgba(255,255,255,0.1);
    color: #fff;
}

.newsletter-form .form-control::placeholder {
    color: rgba(255,255,255,0.5);
}

.newsletter-form .btn-accent {
    border-radius: 0;
}

/* ====== Footer ====== */
.main-footer {
    background: #0d1f1b;
    color: #fff;
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 1.2rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links li a {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links li a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-contact li i {
    color: var(--accent);
    margin-top: 4px;
}

.social-links .social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    color: #fff;
    font-size: 1.1rem;
    margin-right: 8px;
    transition: var(--transition);
}

.social-links .social-icon:hover {
    background: var(--accent);
    color: #fff;
    transform: translateY(-3px);
}

.footer-divider {
    border-color: rgba(255,255,255,0.1);
}

/* ====== WhatsApp Floating ====== */
.whatsapp-float {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 55px;
    height: 55px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(37,211,102,0.4);
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37,211,102,0.5);
}

/* ====== Scroll to Top ====== */
.scroll-top-btn {
    position: fixed;
    bottom: 25px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 0;
    font-size: 1.3rem;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover {
    background: var(--primary);
    color: var(--accent);
}

/* ====== Pulse Animation ====== */
@keyframes pulse {
    0% { box-shadow: 0 4px 15px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 4px 25px rgba(37,211,102,0.7); }
    100% { box-shadow: 0 4px 15px rgba(37,211,102,0.4); }
}

/* ====== Section Spacing ====== */
.page-header {
    background: var(--primary);
    padding: 80px 0 50px;
    text-align: center;
}

.page-header h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.page-header .breadcrumb {
    background: transparent;
    justify-content: center;
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    color: rgba(255,255,255,0.7);
}

.page-header .breadcrumb-item.active {
    color: var(--accent);
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.4);
}

/* ====== About Page ====== */
.about-story {
    padding: 80px 0;
}

.about-story img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.mission-vision {
    padding: 60px 0;
    background: var(--bg-cream);
}

.mv-card {
    padding: 40px 30px;
    background: #fff;
    text-align: center;
    transition: var(--transition);
    border-bottom: 3px solid transparent;
}

.mv-card:hover {
    border-bottom-color: var(--accent);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.mv-card .mv-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.mv-card h3 {
    font-family: var(--font-heading);
    color: var(--primary);
}

/* ====== Rooms Page ====== */
.rooms-page {
    padding: 80px 0;
}

.filter-bar {
    background: var(--bg-cream);
    padding: 20px;
    margin-bottom: 30px;
}

.filter-bar .form-select,
.filter-bar .form-control {
    border-radius: 0;
    border: 1px solid #ddd;
}

/* ====== Room Details ====== */
.room-details-page {
    padding: 80px 0;
}

.room-gallery img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    cursor: pointer;
    transition: var(--transition);
}

.room-gallery img:hover {
    opacity: 0.8;
}

.room-features {
    list-style: none;
    padding: 0;
}

.room-features li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 10px;
}

.room-features li i {
    color: var(--accent);
    font-size: 1.1rem;
}

.booking-sidebar {
    background: var(--bg-cream);
    padding: 30px;
    position: sticky;
    top: 100px;
}

.booking-sidebar h4 {
    font-family: var(--font-heading);
    color: var(--primary);
}

/* ====== Gallery Page ====== */
.gallery-page {
    padding: 80px 0;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item .gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15,42,36,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item .gallery-overlay i {
    color: #fff;
    font-size: 2rem;
}

.gallery-filter {
    margin-bottom: 30px;
}

.gallery-filter .btn-filter {
    background: transparent;
    border: 1px solid #ddd;
    padding: 8px 20px;
    margin: 0 3px 5px;
    font-size: 0.85rem;
    transition: var(--transition);
    border-radius: 0;
}

.gallery-filter .btn-filter.active,
.gallery-filter .btn-filter:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

/* ====== Contact Page ====== */
.contact-page {
    padding: 80px 0;
}

.contact-info-card {
    background: var(--bg-cream);
    padding: 30px;
    margin-bottom: 20px;
    transition: var(--transition);
    border-left: 3px solid transparent;
}

.contact-info-card:hover {
    border-left-color: var(--accent);
    box-shadow: var(--shadow-sm);
}

.contact-info-card .contact-icon {
    font-size: 1.8rem;
    color: var(--accent);
    margin-bottom: 10px;
}

.contact-info-card h5 {
    font-family: var(--font-heading);
    color: var(--primary);
}

.contact-form .form-control {
    border-radius: 0;
    border: 1px solid #ddd;
    padding: 12px;
    background: var(--bg-cream);
}

.contact-form .form-control:focus {
    border-color: var(--accent);
    box-shadow: none;
}

/* ====== Booking Page ====== */
.booking-page {
    padding: 80px 0;
}

.booking-form .form-control,
.booking-form .form-select {
    border-radius: 0;
    border: 1px solid #ddd;
    padding: 12px;
    background: var(--bg-cream);
}

.booking-form .form-control:focus,
.booking-form .form-select:focus {
    border-color: var(--accent);
    box-shadow: none;
}

.booking-summary-card {
    background: var(--bg-cream);
    padding: 30px;
    position: sticky;
    top: 100px;
}

.booking-summary-card h4 {
    font-family: var(--font-heading);
    color: var(--primary);
}

/* ====== Booking Confirmation ====== */
.confirmation-box {
    text-align: center;
    padding: 60px 30px;
    background: var(--bg-cream);
}

.confirmation-box .confirm-icon {
    font-size: 4rem;
    color: #28a745;
    margin-bottom: 1rem;
}

/* ====== Page Content ====== */
.page-content {
    min-height: 500px;
}

/* ====== Alert Messages ====== */
.alert-custom {
    border-radius: 0;
    border: none;
}

/* ====== Forms ====== */
.form-label {
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-dark);
}

/* ====== Responsive Styles ====== */
@media (max-width: 1199px) {
    .hero-content h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 991px) {
    .hero-slide {
        height: 70vh;
        min-height: 400px;
    }
    .hero-content h1 {
        font-size: 2.8rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .cta-section h2 {
        font-size: 2rem;
    }
    .page-header h1 {
        font-size: 2.2rem;
    }
    .navbar .btn-book-nav {
        display: inline-block;
        width: auto;
        margin-top: 10px;
    }
}

@media (max-width: 767px) {
    .hero-slide {
        height: 60vh;
        min-height: 350px;
    }
    .hero-content h1 {
        font-size: 2rem;
    }
    .hero-content p {
        font-size: 0.95rem;
    }
    .hero-content .hero-badge {
        font-size: 0.7rem;
        padding: 4px 12px;
    }
    .hero-content .btn-hero,
    .hero-content .btn-hero-outline {
        padding: 10px 20px;
        font-size: 0.85rem;
        display: inline-block;
        margin: 5px;
    }
    .stat-item .stat-number {
        font-size: 1.8rem;
    }
    .section-title {
        font-size: 1.6rem;
    }
    .intro-section .intro-img {
        height: 300px;
    }
    .about-story img {
        height: 300px;
    }
    .page-header {
        padding: 60px 0 40px;
    }
    .page-header h1 {
        font-size: 1.8rem;
    }
    .room-card .card-img-wrapper {
        height: 220px;
    }
    .contact-info-card {
        padding: 20px;
    }
    .booking-sidebar {
        position: static;
        margin-top: 30px;
    }
    .booking-summary-card {
        position: static;
        margin-top: 30px;
    }
    .whatsapp-float {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
        bottom: 80px;
        right: 15px;
    }
    .scroll-top-btn {
        width: 38px;
        height: 38px;
        font-size: 1rem;
        bottom: 20px;
        right: 15px;
    }
    .hero-section .carousel-control-prev,
    .hero-section .carousel-control-next {
        display: none;
    }
}

@media (max-width: 575px) {
    .hero-content h1 {
        font-size: 1.6rem;
    }
    .hero-slide {
        height: 50vh;
        min-height: 300px;
    }
    .stat-item .stat-number {
        font-size: 1.5rem;
    }
    .stat-item .stat-label {
        font-size: 0.75rem;
    }
    .gallery-item img {
        height: 220px;
    }
}
