/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Anton', sans-serif;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo img {
    height: 50px;
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #0E7490;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    border-radius: 5px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    list-style: none;
    padding: 0.5rem 0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 0.5rem 1rem;
    color: #333;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.dropdown-menu a:hover {
    background-color: #f8f9fa;
    color: #0E7490;
}

.btn-book-now {
    background: #0E7490;
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-book-now:hover {
    background: #0c6478;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 3px;
    padding: 20px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: 0.3s;
}

.mobile-menu {
    display: block;  /* ← Changed from none */
    position: fixed;
    top: 0;
    left: -100%;     /* ← Start off-screen */
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.9);
    z-index: 999;
    transition: left 0.3s ease;  /* ← Add transition */
}

.mobile-menu.active {
    left: 0;  /* ← Slide in when active */
}

.mobile-menu-content {
    background: white;
    width: 80%;
    height: 100%;
    padding: 2rem;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.mobile-menu.active .mobile-menu-content {
    transform: translateX(0);
}

.mobile-nav-menu {
    list-style: none;
    padding-top: 2rem;
}

/* Mobile Menu Toggle Animation - ADD THESE */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Dropdown Styles - ADD THESE */
.mobile-dropdown-menu {
    list-style: none;
    padding-left: 1rem;
    margin-top: 0.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #f8f9fa;
    border-radius: 5px;
}

.mobile-dropdown.active .mobile-dropdown-menu {
    max-height: 200px;
    padding: 0.5rem 0;
}

.mobile-dropdown-menu a {
    padding: 0.5rem 1rem !important;
    font-size: 0.9rem !important;
    border-bottom: none !important;
    color: #666 !important;
}

.mobile-dropdown-toggle::after {
    content: '▼';
    float: right;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.mobile-dropdown.active .mobile-dropdown-toggle::after {
    transform: rotate(180deg);
}

/* Prevent body scroll when menu is open - ADD THIS */
body.menu-open {
    overflow: hidden;
}


.mobile-nav-menu a {
    display: block;
    padding: 1rem 0;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #eee;
    font-weight: 500;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-video::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
    position: relative;
}

.hero-content::before {
    content: '';
    position: absolute;
    top: -2rem;
    left: -2rem;
    right: -2rem;
    bottom: -2rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    z-index: -1;
}

.hero-stars {
    margin-bottom: 1.5rem;
}

.star {
    color: #0EA5E9;
    font-size: 2.5rem;
    margin: 0 0.3rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero h1 {
    font-size: 4rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
    font-family: 'Anton', sans-serif;
    letter-spacing: 1px;
}

.hero p {
    font-size: 1.4rem;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.7);
    line-height: 1.6;
}

/* Booking Section */
.booking-section {
    background: transparent;
    padding: 0;
    margin-top: -100px;
    margin-bottom: -50px;
    position: relative;
    z-index: 10;
}

.booking-form {
    display: flex;
    gap: 0;
    background: white;
    padding: 0;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    flex-wrap: nowrap;
    overflow: hidden;
    max-width: 1000px;
    margin: 0 auto;
}

.booking-item {
    flex: 1;
    min-width: auto;
    padding: 1.5rem;
    border-right: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
}

.booking-item:last-child {
    border-right: none;
    background: #155E75;
    justify-content: center;
    align-items: center;
}

.booking-item label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #0E7490;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.booking-item input,
.booking-item select {
    width: 100%;
    padding: 0.5rem 0;
    border: none;
    border-bottom: 1px solid #e5e7eb;
    font-size: 1rem;
    background: transparent;
    color: #666;
    outline: none;
}

.booking-item input:focus,
.booking-item select:focus {
    border-bottom-color: #0E7490;
}

.btn-check-availability {
    background: #155E75;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 0;
    font-weight: 600;
    cursor: pointer;
    width: auto;
    height: auto;
    margin: 0;
    font-size: 1rem;
    transition: background 0.3s ease;
}

.btn-check-availability:hover {
    background: #0f4c5c;
}

/* Resort Info Section */
.resort-info {
    padding: 8rem 0 5rem;
    background: white;
    position: relative;
    overflow: hidden;
}

.resort-info::before {
    content: 'Resort';
    position: absolute;
    right: -80px;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    font-family: 'Anton', sans-serif;
    font-size: 8rem;
    color: rgba(0,0,0,0.03);
    font-weight: 400;
    z-index: 1;
    white-space: nowrap;
}

.resort-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.resort-image {
    position: relative;
}

.resort-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    background: #0E7490;
    border-radius: 20px;
    z-index: -1;
}

.resort-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    position: relative;
    z-index: 1;
}

.resort-text h2 {
    color: #0E7490;
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
    font-weight: 400;
    font-family: 'Anton', sans-serif;
}

.resort-text h3 {
    color: #F59E0B;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
}

.resort-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.resort-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    align-items: center;
}

.stat {
    text-align: left;
    position: relative;
}

.stat:not(:last-child)::after {
    content: '|';
    position: absolute;
    right: -1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #ccc;
    font-size: 1.5rem;
}

.stat h4 {
    color: #0E7490;
    font-size: 2.2rem;
    font-weight: 400;
    margin-bottom: 0.25rem;
    font-family: 'Anton', sans-serif;
}

.stat p {
    color: #666;
    font-weight: 500;
    margin: 0;
    font-size: 0.9rem;
}

.btn-learn-more {
    background: transparent;
    color: #F59E0B;
    padding: 0.75rem 2rem;
    border: 2px solid #F59E0B;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.btn-learn-more:hover {
    background: #F59E0B;
    color: white;
}

/* Amenities Bar */
.amenities-bar {
    background: #0E7490;
    padding: 1rem 0;
    margin: 0;
}

.amenities-list {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.amenity-item {
    background: white;
    color: #0E7490;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    cursor: pointer;
}

.amenity-item:hover {
    background: rgba(255,255,255,0.9);
    transform: translateY(-2px);
}

/* Why Stay Section */
.why-stay {
    padding: 5rem 0;
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.why-stay::before {
    content: 'Why Stay';
    position: absolute;
    left: -100px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    font-family: 'Anton', sans-serif;
    font-size: 8rem;
    color: rgba(0,0,0,0.03);
    font-weight: 400;
    z-index: 1;
    white-space: nowrap;
}

.why-stay-header {
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.why-stay-subtitle {
    color: #F59E0B;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}

.why-stay h2 {
    color: #0E7490;
    font-size: 2.5rem;
    margin: 0;
    font-family: 'Anton', sans-serif;
    font-weight: 400;
}

.why-stay h3 {
    display: none;
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.facility-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid #e5e7eb;
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.facility-card::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    width: 120px;
    height: 120px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.05;
    z-index: 1;
}

.facility-card:nth-child(1)::before {
    background-image: url('assets/images/lakeside-icon.png');
}

.facility-card:nth-child(2)::before {
    background-image: url('assets/images/rooms-icon.png');
}

.facility-card:nth-child(3)::before {
    background-image: url('assets/images/restaurant-icon.png');
}

.facility-card:nth-child(4)::before {
    background-image: url('assets/images/boating-icon.png');
}

.facility-card:nth-child(5)::before {
    background-image: url('assets/images/fitness-icon.png');
}

.facility-card:nth-child(6)::before {
    background-image: url('assets/images/events-icon.png');
}

.facility-card:hover {
    transform: translateY(-5px);
    border-color: #155E75;
    background-color: #155E75;
    color: white;
}

.facility-card:hover h4 {
    color: white;
}

.facility-card:hover p {
    color: rgba(255,255,255,0.9);
}

.facility-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.facility-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: none;
}

.facility-card h4 {
    color: #0E7490;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 400;
    font-family: 'Anton', sans-serif;
    position: relative;
    z-index: 2;
}

.facility-card p {
    color: #666;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* Gallery Section */
.gallery-section {
    padding: 5rem 0;
    background: #0E7490;
    color: white;
    position: relative;
    overflow: hidden;
}

.gallery-section::before {
    content: 'Gallery';
    position: absolute;
    right: -50px;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    font-family: 'Anton', sans-serif;
    font-size: 8rem;
    color: rgba(255,255,255,0.05);
    font-weight: 400;
    z-index: 1;
    white-space: nowrap;
}

.gallery-header {
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.gallery-subtitle {
    color: #FFA500;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}

.gallery-section h2 {
    font-size: 2.5rem;
    margin: 0;
    font-family: 'Anton', sans-serif;
    font-weight: 400;
}

.gallery-section h3 {
    display: none;
}

.gallery-section > .container > p {
    margin-bottom: 3rem;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.gallery-item {
    aspect-ratio: 3/4;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

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

/* Gallery Navigation Buttons */
.gallery-nav-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.gallery-nav-btn {
    background: white;
    color: #0E7490;
    padding: 0.75rem 1.5rem;
    border: 2px solid white;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
}

.gallery-nav-btn:hover {
    background: rgba(255,255,255,0.9);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* Testimonials Section with Carousel */
.testimonials {
    padding: 5rem 0;
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: 'Guest Reviews';
    position: absolute;
    right: -100px;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    font-family: 'Anton', sans-serif;
    font-size: 8rem;
    color: rgba(0,0,0,0.03);
    font-weight: 400;
    z-index: 1;
    white-space: nowrap;
}

.testimonials-header {
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.testimonials-subtitle {
    color: #FFA500;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}

.testimonials h2 {
    color: #0E7490;
    font-size: 2.5rem;
    margin: 0;
    font-family: 'Anton', sans-serif;
    font-weight: 400;
}

/* Carousel Container */
.testimonials-carousel {
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 1rem; /* Add padding to prevent cutoff */
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 2rem;
    width: fit-content;
}

.testimonial-slide {
    min-width: calc(33.333% - 1.33rem);
    flex-shrink: 0;
    width: calc(33.333% - 1.33rem); /* Changed from 350px to percentage */
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border: 2px solid #e5e7eb;
    position: relative;
    z-index: 2;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.testimonial-header img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-header h4 {
    color: #333;
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 0.25rem;
    font-family: 'Anton', sans-serif;
}

.stars {
    color: #FFD700;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.testimonial-card h5 {
    color: #0E7490;
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
    font-family: 'Anton', sans-serif;
}

.testimonial-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
    flex-grow: 1;
}

/* Carousel Controls */
.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    position: relative;
    z-index: 2;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border: 2px solid #0E7490;
    background: white;
    color: #0E7490;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    font-family: Arial, sans-serif;
}

.carousel-btn:hover {
    background: #0E7490;
    color: white;
}

.carousel-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Carousel Indicators */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    position: relative;
    z-index: 2;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: background 0.3s ease;
}

.indicator.active {
    background: #0E7490;
}

/* Progress Bar */
.carousel-progress {
    position: absolute;
    bottom: -2px;
    left: 0;
    height: 4px;
    background: #0E7490;
    width: 0%;
    transition: width 0.1s linear;
    border-radius: 2px;
}

/* Footer */
.footer {
    background: #0E7490;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    font-family: 'Anton', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.footer-section p {
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.social-links h4 {
    font-family: 'Anton', sans-serif;
    font-size: 1rem;
    margin-bottom: 1rem;
    font-weight: 400;
    letter-spacing: 1px;
}

.social-icons {
    display: flex;
    gap: 0.75rem;
}

.social-icon {
    width: 35px;
    height: 35px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.2);
}

.social-icon:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-2px);
}

.newsletter-form {
    display: flex;
    gap: 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.newsletter-form input {
    flex: 1;
    padding: 1rem 1.25rem;
    border: 2px solid white;
    font-size: 1rem;
    background: #0E7490;
    color: white;
    outline: none;
    border-radius: 8px 0 0 8px;
}

.newsletter-form input::placeholder {
    color: rgba(255,255,255,0.7);
    font-style: normal;
}

.newsletter-form button {
    background: #374151;
    color: white;
    padding: 1rem 1.5rem;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    font-size: 1rem;
    border-radius: 0 8px 8px 0;
}

.newsletter-form button:hover {
    background: #4B5563;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.15);
    padding-top: 2rem;
}

.contact-info h3 {
    font-family: 'Anton', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.contact-icon {
    width: 20px;
    height: 20px;
    background: #FCD34D;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    flex-shrink: 0;
    color: #333;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .star {
        font-size: 2rem;
    }
    
    .hero-content::before {
        top: -1rem;
        left: -1rem;
        right: -1rem;
        bottom: -1rem;
    }
    
    .booking-form {
        flex-direction: column;
        border-radius: 15px;
        overflow: visible;
    }
    
    .booking-item {
        border-right: none;
        border-bottom: 1px solid #e5e7eb;
    }
    
    .booking-item:last-child {
        border-bottom: none;
        border-radius: 0 0 15px 15px;
    }
    
    .resort-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .resort-stats {
        justify-content: center;
        text-align: center;
    }
    
    .stat {
        text-align: center;
    }
    
    .resort-info::before {
        display: none;
    }
    
    .facilities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-stay h2 {
        font-size: 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .gallery-nav-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .gallery-nav-btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    .testimonial-card {
        margin: 0; /* Ensure no margin causing overflow */
        width: 100%; /* Explicitly set full width */
        box-sizing: border-box; /* Include padding in width calculation */
    }
   .testimonial-slide {
        min-width: 100%;
        width: 100%;
    }
    
    .testimonials h2 {
        font-size: 2rem;
    }
    
    .testimonials::before {
        display: none;
    }
    
 .testimonials-carousel {
        padding: 0 1rem; /* Add horizontal padding to prevent cutoff */
    }
    
    .testimonials-track {
        gap: 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .amenities-list {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .star {
        font-size: 1.8rem;
    }
    
    .resort-text h2 {
        font-size: 2rem;
    }
    
    .why-stay h2,
    .gallery-section h2,
    .testimonials h2 {
        font-size: 2rem;
    }
    
    .booking-form {
        padding: 1.5rem;
    }
    
    .facility-card,
    .testimonial-card {
        padding: 1.5rem;
    }
    
.testimonials-carousel {
        padding: 0 0.5rem; /* Reduce padding on very small screens */
    }
    
    .testimonial-slide {
        width: 100%;
    }
    
    .testimonial-card {
        padding: 1.5rem 1rem; /* Reduce horizontal padding to prevent cutoff */
    }
}

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

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

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