/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap');

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

/* Global Icon Color Override */
.fas, .fab, .far, .fa {
    color: var(--accent-color) !important;
}

/* Exceptions for icons that should remain white (in colored backgrounds) */
.service-icon i,
.experience-icon i,
.transport-icon i,
.step-icon i,
.airport-icon i,
.seasonal-icon i,
.tip-icon i {
    color: var(--white) !important;
}

/* Exceptions for icons that should remain in their specific colors */
.rating i {
    color: var(--accent-color) !important;
}

.social-links a i {
    color: var(--white) !important;
}

.social-links a:hover i {
    color: var(--accent-color) !important;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    overflow-x: hidden;
    padding-top: 80px; /* Account for fixed navbar height */
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
}

/* Navigation */
.navbar {
    background: #1a4d2e !important;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.navbar.scrolled {
    background: #1a4d2e !important;
}

.navbar-logo {
    height: 60px;
    width: auto;
    transition: all 0.3s ease;
}

.navbar-logo:hover {
    transform: scale(1.1);
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--white) !important;
    display: flex;
    align-items: center;
    line-height: 1.2;
}

.navbar-nav .nav-link {
    color: var(--white) !important;
    font-weight: 500;
    margin: 0 0.3rem;
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
}

.navbar-nav {
    flex-wrap: nowrap;
    align-items: center;
}

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

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-light);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

.dropdown-menu {
    background: #1a4d2e;
    border: none;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.dropdown-item {
    color: var(--white);
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--accent-light);
}

/* Remove dash/underline from dropdown toggle */
.navbar-nav .dropdown-toggle::after {
    display: none !important;
}

/* Additional override to ensure Bootstrap dropdown caret is removed */
.dropdown-toggle::after {
    display: none !important;
    content: none !important;
    border: none !important;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: calc(100vh - 80px);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Page Header */
.page-header {
    position: relative;
    height: 60vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-header .hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.page-header .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 2;
}

.page-header .hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--white);
}

.page-header .hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.page-header .hero-subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--white);
    opacity: 0.9;
}

.hero-slider {
    position: relative;
    flex: 1;
}

.hero-slide {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 2;
    display: flex;
    align-items: center;
}

.hero-content {
    text-align: center;
    color: var(--white);
    z-index: 3;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Hero Navigation */
.hero-nav {
    position: relative;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 3;
    padding: 1rem 0;
    flex-shrink: 0;
}

.hero-nav-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.hero-nav-item:hover {
    color: var(--secondary-color);
    transform: translateY(-2px);
}

.hero-nav-item i {
    font-size: 1.2rem;
    color: var(--secondary-color);
}

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
    text-align: center;
}

.section-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.story-content .section-text {
    text-align: left;
}

/* Welcome Section */
.welcome-section {
    padding: 5rem 0;
}

.welcome-content {
    padding-right: 2rem;
}

.welcome-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    color: var(--primary-color);
}

.feature-item i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.welcome-image img {
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--shadow-medium);
}

/* Room Cards */
.room-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow-light);
    transition: all 0.3s ease;
    height: 100%;
}

.room-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px var(--shadow-medium);
}

.room-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.room-content {
    padding: 1.5rem;
}

.room-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.room-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0;
}

.room-features span {
    background: var(--light-gray);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.room-features i {
    color: var(--secondary-color);
}

/* Room Types Carousel Styles */
#roomTypesCarousel {
    margin: 0 auto;
    max-width: 900px;
}

#roomTypesCarousel .carousel-item {
    padding: 20px 0;
}

#roomTypesCarousel .room-card {
    margin: 0 auto;
    max-width: 600px;
}

#roomTypesCarousel .carousel-indicators {
    bottom: -50px;
}

#roomTypesCarousel .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--accent-color);
    border: 2px solid var(--white);
    margin: 0 5px;
    transition: all 0.3s ease;
}

#roomTypesCarousel .carousel-indicators button.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

#roomTypesCarousel .carousel-control-prev,
#roomTypesCarousel .carousel-control-next {
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    transition: all 0.3s ease;
}

#roomTypesCarousel .carousel-control-prev:hover,
#roomTypesCarousel .carousel-control-next:hover {
    background: rgba(0, 0, 0, 0.5);
    transform: translateY(-50%) scale(1.1);
}

#roomTypesCarousel .carousel-control-prev-icon,
#roomTypesCarousel .carousel-control-next-icon {
    width: 20px;
    height: 20px;
}

/* Service Cards */
.service-card {
    padding: 2rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow-light);
    transition: all 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow-medium);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-icon i {
    font-size: 2rem;
    color: var(--white);
}

.service-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Attraction Cards */
.attraction-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow-light);
    transition: all 0.3s ease;
    height: 100%;
}

.attraction-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow-medium);
}

.attraction-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.attraction-content {
    padding: 1.5rem;
}

.attraction-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.distance {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Testimonial Carousel */
.testimonial-carousel-container {
    overflow: hidden;
    position: relative;
    padding: 0 20px;
    margin: 0 auto;
    max-width: 1200px;
}

        .testimonial-carousel {
            display: flex;
            gap: 2rem;
            will-change: transform;
        }

        .testimonial-carousel.continuous-scroll {
            animation: scrollLeft 20s linear infinite;
        }

                @keyframes scrollLeft {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(calc(-3 * (350px + 2rem)));
            }
        }

        @keyframes scrollLeftTablet {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(calc(-3 * (300px + 1rem)));
            }
        }

        @keyframes scrollLeftMobile {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(calc(-3 * (280px + 1rem)));
            }
        }

        .testimonial-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px var(--shadow-light);
    transition: all 0.3s ease;
    width: 350px;
    height: 280px;
    flex-shrink: 0;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Responsive adjustments for carousel */
@media (max-width: 768px) {
    .testimonial-carousel-container {
        padding: 0 10px;
    }
    
    .testimonial-carousel {
        gap: 1rem;
    }
    
    .testimonial-card {
        width: 300px;
        height: 250px;
        padding: 1.5rem;
    }
    
    .testimonial-carousel.continuous-scroll {
        animation: scrollLeftTablet 20s linear infinite;
    }
}

@media (max-width: 576px) {
    .testimonial-card {
        width: 280px;
        height: 220px;
        padding: 1rem;
    }
    
    .testimonial-carousel.continuous-scroll {
        animation: scrollLeftMobile 20s linear infinite;
    }
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow-medium);
}

.testimonial-content {
    margin-bottom: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial-content p {
    font-style: italic;
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h5 {
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.author-info span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.rating {
    margin-top: 0.5rem;
}

.rating i {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

/* Gallery Carousel */
.gallery-carousel-section {
    background: var(--light-gray);
    padding: 4rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.gallery-carousel-container {
    overflow: hidden;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    display: flex;
    justify-content: center;
    align-items: center;
}

.gallery-carousel {
    display: flex;
    gap: 2rem;
    will-change: transform;
}

.gallery-carousel.continuous-scroll {
    animation: galleryScroll 45s linear infinite;
}

.gallery-carousel:hover {
    animation-play-state: paused;
}

.gallery-item {
    flex-shrink: 0;
    width: 700px;
    height: 380px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    background: var(--white);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@keyframes galleryScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 1200px) {
    .gallery-carousel.continuous-scroll {
        animation-duration: 38s;
    }
}

@media (max-width: 992px) {
    .gallery-item {
        width: 360px;
        height: 240px;
    }
    .gallery-carousel.continuous-scroll {
        animation-duration: 34s;
    }
}

@media (max-width: 768px) {
    .gallery-carousel-container {
        overflow-x: auto;
        width: 100%;
        margin-left: 0;
        display: block;
        scroll-snap-type: x mandatory;
    }
    .gallery-carousel {
        animation: none;
        gap: 1.5rem;
        width: max-content;
    }
    .gallery-item {
        width: 320px;
        height: 220px;
        scroll-snap-align: center;
    }
}

@media (max-width: 576px) {
    .gallery-carousel {
        gap: 1rem;
    }
    .gallery-item {
        width: 280px;
        height: 200px;
    }
}

/* Buttons */
.btn {
    border-radius: 25px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--shadow-medium);
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline-light {
    border: 2px solid var(--white);
    color: var(--white);
    background: transparent;
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-light {
    background: var(--white);
    color: var(--primary-color);
}

.btn-light:hover {
    background: var(--light-gray);
    color: var(--primary-dark);
    transform: translateY(-2px);
}

/* Room Styles */
.room-image-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.room-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.room-image-container:hover .room-image {
    transform: scale(1.05);
}

.room-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--secondary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.room-badge.premium {
    background: var(--accent-color);
}

.room-badge.exclusive {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
}

.room-badge.luxury {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: var(--primary-color);
    font-weight: 700;
}

.room-content {
    padding: 2rem;
}

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

.room-price {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.room-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.room-amenities h5 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--light-gray);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.amenity-item:hover {
    background: var(--secondary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.amenity-item i {
    font-size: 1.2rem;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.amenity-item:hover i {
    color: var(--white);
}

.room-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.room-actions .btn {
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.room-actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Service Styles */
.service-content {
    padding: 2rem;
}

.service-icon-large {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.service-icon-large i {
    font-size: 2rem;
    color: var(--white);
}

.service-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

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

.service-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-light);
    color: var(--text-secondary);
    line-height: 1.6;
}

.service-list li:last-child {
    border-bottom: none;
}

.service-list li strong {
    color: var(--primary-color);
    font-weight: 600;
}

.service-image-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.service-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-image-container:hover .service-image {
    transform: scale(1.05);
}

/* Offer Styles */
.offer-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.offer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.offer-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--secondary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.offer-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.offer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.offer-card:hover .offer-image img {
    transform: scale(1.1);
}

.offer-content {
    padding: 2rem;
}

.offer-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.offer-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.offer-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.offer-features li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

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

.offer-price {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.original-price {
    font-size: 1.2rem;
    color: var(--gray);
    text-decoration: line-through;
}

.discounted-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.per-night {
    font-size: 1rem;
    color: var(--text-secondary);
}

/* Seasonal Card Styles */
.seasonal-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.seasonal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.seasonal-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.seasonal-icon i {
    font-size: 2rem;
    color: var(--white);
}

.seasonal-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.seasonal-card p {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.seasonal-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
    text-align: left;
}

.seasonal-card ul li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 1.5rem;
}

.seasonal-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
}

.seasonal-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Stay Card Styles */
.stay-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

.stay-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.stay-card.featured {
    border: 3px solid var(--secondary-color);
    transform: scale(1.05);
}

.stay-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-color);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stay-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stay-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.stay-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.stay-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.stay-card ul li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 1.5rem;
}

.stay-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
}

/* Attraction Styles */
.attraction-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.attraction-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.attraction-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.attraction-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.attraction-card:hover .attraction-image img {
    transform: scale(1.1);
}

.distance-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--secondary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 2;
}

.attraction-content {
    padding: 2rem;
}

.attraction-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.attraction-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.attraction-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.attraction-features span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--light-gray);
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.attraction-features span:hover {
    background: var(--secondary-color);
    color: var(--white);
}

.attraction-features span i {
    font-size: 1rem;
}

/* Experience Card Styles */
.experience-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.experience-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.experience-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.experience-icon i {
    font-size: 2rem;
    color: var(--white);
}

.experience-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.experience-subtitle {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.experience-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.experience-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    justify-content: center;
}

.experience-highlights span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--light-gray);
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.experience-highlights span i {
    color: var(--primary-color);
}

.experience-duration {
    color: var(--text-secondary);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.experience-duration i {
    color: var(--secondary-color);
}

/* Transport Styles */
.transport-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.transport-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.transport-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.transport-icon i {
    font-size: 2rem;
    color: var(--white);
}

.transport-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.transport-details {
    margin-bottom: 1.5rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    color: var(--text-secondary);
}

.detail-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    width: 20px;
}

.transport-note {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: 10px;
    color: var(--text-secondary);
    font-style: italic;
}

.transport-note i {
    color: var(--secondary-color);
}

/* Train Journey Styles */
.train-journey-card {
    background: var(--white);
    border-radius: 15px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.journey-steps {
    margin-bottom: 3rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 2rem;
}

.step:last-child {
    margin-bottom: 0;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.step-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.step-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.step-connector {
    width: 2px;
    height: 40px;
    background: var(--secondary-color);
    margin-left: 29px;
    margin-bottom: 1rem;
}

.journey-highlights {
    border-top: 2px solid var(--border-light);
    padding-top: 2rem;
}

.journey-highlights h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: 10px;
    color: var(--text-secondary);
}

.highlight-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* Airport Styles */
.airport-card {
    background: var(--white);
    border-radius: 15px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.airport-info {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
}

.airport-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.airport-icon i {
    font-size: 2rem;
    color: var(--white);
}

.airport-details h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.airport-distance {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.flight-info h5 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.cities-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.city {
    padding: 0.5rem 1rem;
    background: var(--light-gray);
    border-radius: 20px;
    color: var(--text-secondary);
    font-weight: 500;
}

.transfer-info h5 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.transfer-info p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Location Styles */
.location-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.location-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.address-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.address-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.address-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 0.25rem;
}

.address-item div {
    color: var(--text-secondary);
    line-height: 1.6;
}

.address-item strong {
    color: var(--primary-color);
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Tip Styles */
.tip-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.tip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.tip-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.tip-icon i {
    font-size: 2rem;
    color: var(--white);
}

.tip-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.tip-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Footer */
.footer {
    background: var(--dark-gray);
}

.footer h5, .footer h6 {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer p {
    color: var(--gray);
}

.footer ul li {
    margin-bottom: 0.5rem;
}

.footer ul li a {
    color: var(--gray);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer ul li a:hover {
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.newsletter-form .input-group {
    border-radius: 25px;
    overflow: hidden;
}

.newsletter-form .form-control {
    border: none;
    padding: 0.75rem 1rem;
}

.newsletter-form .btn {
    border-radius: 0 25px 25px 0;
    padding: 0.75rem 1.5rem;
}

/* Contact CTA */
.contact-cta {
    background: var(--gradient-primary);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .welcome-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .welcome-features {
        grid-template-columns: 1fr;
    }
    
    .hero-nav-item {
        text-align: center;
        justify-content: center;
        margin-bottom: 0.5rem;
    }
    
    .navbar-nav {
        flex-wrap: wrap;
    }
    
    .navbar-nav .nav-link {
        margin: 0.2rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .room-features {
        flex-direction: column;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Loading Animation */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid var(--light-gray);
    border-top: 3px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus Styles for Accessibility */
.btn:focus,
.nav-link:focus,
.form-control:focus {
    outline: 2px solid var(--secondary-color);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .navbar,
    .hero-nav,
    .footer {
        display: none;
    }
    
    .hero-section {
        height: auto;
        min-height: 400px;
    }
} 

/* Room Image Container */
.room-image-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.room-image-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
}

.room-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
    transition: all 0.3s ease;
}

.room-image-container:hover .room-image {
    transform: scale(1.05);
}

.room-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 2;
}

.room-badge.premium {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
}

.room-badge.luxury {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: var(--primary-color);
    font-weight: 700;
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .room-content {
        padding: 1.5rem;
        margin-top: 2rem;
    }
    
    .room-title {
        font-size: 1.75rem;
    }
    
    .room-price {
        font-size: 1.25rem;
    }
    
    .amenities-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .room-actions {
        flex-direction: column;
    }
    
    .room-actions .btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .room-content {
        padding: 1rem;
    }
    
    .room-title {
        font-size: 1.5rem;
    }
    
    .room-price {
        font-size: 1.1rem;
    }
    
    .room-description {
        font-size: 1rem;
    }
    
    .amenity-item {
        padding: 0.5rem;
    }
}

/* Additional Navbar Compactness */
.navbar-nav .nav-link {
    padding: 0.4rem 0.8rem !important;
    font-size: 0.95rem !important;
}

.navbar-toggler {
    padding: 0.25rem 0.5rem !important;
    font-size: 0.9rem !important;
}

.navbar-nav .nav-link::after {
    bottom: -3px !important;
    height: 1.5px !important;
} 

/* Hover Dropdown for Rooms Menu */
.navbar-nav .dropdown:hover .dropdown-menu {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

.navbar-nav .dropdown-menu {
    display: none !important;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    margin-top: 0 !important;
    border: none;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    background: #1a4d2e;
    backdrop-filter: blur(10px);
    padding: 0.5rem 0;
}

.navbar-nav .dropdown-menu .dropdown-item {
    color: var(--white) !important;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    transition: all 0.2s ease;
    border: none;
    background: transparent;
}

.navbar-nav .dropdown-menu .dropdown-item:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    color: var(--accent-light) !important;
    transform: translateX(5px);
}

.navbar-nav .dropdown-menu .dropdown-item:active {
    background: var(--primary-dark) !important;
    color: white !important;
}

/* Ensure dropdown works on mobile */
@media (max-width: 991.98px) {
    .navbar-nav .dropdown-menu {
        display: none !important;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: transparent;
        padding-left: 1rem;
    }
    
    .navbar-nav .dropdown-menu .dropdown-item {
        color: var(--white) !important;
        padding: 0.5rem 1rem;
    }
    
    .navbar-nav .dropdown-menu .dropdown-item:hover {
        background: rgba(255, 255, 255, 0.1) !important;
        color: var(--white) !important;
        transform: none;
    }
}

/* Mobile Responsiveness */
@media (max-width: 576px) {
    .navbar {
        padding: 0.3rem 0 !important;
    }
    
    .navbar-logo {
        height: 35px !important;
    }
    
    .navbar-brand {
        font-size: 1.1rem !important;
    }
    
    body {
        padding-top: 55px !important;
    }
    
    .hero-section {
        height: calc(100vh - 55px) !important;
    }
} 