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

:root {
    --primary-color: #1a3a52;
    --secondary-color: #8b7355;
    --accent-color: #c19a6b;
    --dark-color: #0a0a0a;
    --light-color: #f5f5f5;
    --gray-color: #666666;
    --white: #ffffff;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: var(--dark-color);
    overflow-x: hidden;
    background: var(--white);
}

.container-large {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 12px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.header-left .logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-left .logo img {
    height: 50px;
    width: auto;
}

.villa-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Georgia', serif;
    letter-spacing: 0.5px;
}

.header-center {
    flex: 1;
    display: flex;
    justify-content: center;
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 0.95rem;
}

.header-contact a {
    color: var(--dark-color);
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
}

.header-contact a:hover {
    color: var(--accent-color);
}

.separator {
    color: var(--gray-color);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.header-social {
    display: flex;
    gap: 20px;
}

.header-social a {
    color: var(--dark-color);
    transition: all 0.3s;
}

.header-social a:hover {
    color: var(--accent-color);
    transform: scale(1.1);
}

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

.menu-toggle span:not(.menu-text) {
    width: 32px;
    height: 3px;
    background: var(--dark-color);
    transition: all 0.3s;
    border-radius: 2px;
}

.menu-text {
    display: none;
}

/* Navigation Overlay */
.nav-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 500px;
    height: 100vh;
    background: var(--white);
    z-index: 2000;
    transition: right 0.4s ease;
    padding: 100px 60px;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2);
}

.nav-overlay.active {
    right: 0;
}

.nav-close {
    position: absolute;
    top: 40px;
    right: 50px;
    font-size: 3.5rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--dark-color);
    line-height: 1;
    font-weight: 300;
}

.nav-menu {
    list-style: none;
    margin-top: 40px;
}

.nav-menu li {
    margin-bottom: 35px;
}

.nav-menu a {
    font-size: 2.2rem;
    color: var(--dark-color);
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 300;
}

.nav-menu a:hover {
    color: var(--accent-color);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-slider {
    width: 100%;
    height: 100%;
}

.hero-slide {
    width: 100%;
    height: 100%;
    display: none;
}

.hero-slide.active {
    display: block;
}

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

/* Booking Widget */
.hero-booking-widget {
    position: absolute;
    bottom: 50px;
    right: 80px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    padding: 40px 35px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
    z-index: 10;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.booking-header {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 25px;
    font-weight: 700;
    font-family: 'Arial', sans-serif;
    text-align: center;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.booking-form {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
    justify-content: center;
}

.booking-field {
    text-align: center;
}

.booking-field label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    font-family: 'Arial', sans-serif;
    color: var(--white);
    font-weight: 600;
}

.booking-date {
    display: flex;
    flex-direction: column;
}

.date-day {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.date-month {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 5px;
}

.booking-arrow {
    font-size: 2rem;
    color: var(--white);
    margin: 0 15px;
}

.booking-btn {
    background: var(--primary-color);
    color: var(--white);
    padding: 18px 40px;
    border: none;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Arial', sans-serif;
    text-decoration: none;
    display: inline-block;
    border-radius: 8px;
}

.booking-btn:hover {
    background: var(--accent-color);
    transform: scale(1.05);
}

.hero-pause {
    position: absolute;
    bottom: 50px;
    left: 80px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    border: 2px solid var(--white);
    color: var(--white);
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
}

.hero-pause:hover {
    background: var(--white);
    color: var(--dark-color);
}

/* About Section */
.about-section {
    padding: 120px 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    background: var(--light-color);
    border-radius: 15px;
    overflow: hidden;
}

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

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: none;
    border: none;
    cursor: pointer;
    transition: transform 0.3s;
}

.video-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.15);
}

.section-title {
    font-size: 2.8rem;
    font-weight: 300;
    line-height: 1.3;
    margin-bottom: 30px;
    color: var(--dark-color);
}

.about-text {
    font-size: 1.1rem;
    line-height: 2;
    color: var(--gray-color);
    margin-bottom: 35px;
}

.about-info {
    margin-top: 35px;
    padding: 30px;
    background: var(--light-color);
    border-radius: 12px;
}

.about-info p {
    margin-bottom: 18px;
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--gray-color);
}

.about-info p:last-child {
    margin-bottom: 0;
}

.about-info strong {
    color: var(--dark-color);
    font-weight: 700;
}

/* Amenities Section */
.amenities-section {
    padding: 120px 0;
    background-image: url('../assets/room2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.amenities-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 0;
}

.amenities-section .container-large {
    position: relative;
    z-index: 1;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
    margin-bottom: 50px;
}

.amenity-item {
    text-align: center;
}

.amenity-icon-circle {
    width: 130px;
    height: 130px;
    border: 2px solid var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    color: var(--secondary-color);
    transition: all 0.3s;
}

.amenity-item:hover .amenity-icon-circle {
    border-color: var(--accent-color);
    color: var(--accent-color);
    transform: scale(1.1);
}

.amenity-title {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--dark-color);
}

.amenities-description {
    text-align: center;
    font-size: 1.15rem;
    color: var(--gray-color);
    line-height: 1.9;
    max-width: 850px;
    margin: 0 auto;
}

/* Packages Section */
.rooms-section {
    padding: 120px 0;
    background: var(--white);
}

.section-header-inline {
    text-align: center;
    margin-bottom: 70px;
}

.section-label-small {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary-color);
    font-weight: 700;
    font-family: 'Arial', sans-serif;
    display: block;
    margin-bottom: 18px;
}

.section-title-large {
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--dark-color);
}

/* Currency Switcher */
.currency-switcher {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 50px;
}

.currency-btn {
    padding: 12px 30px;
    background: var(--light-color);
    border: 2px solid var(--light-color);
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Arial', sans-serif;
    color: var(--gray-color);
}

.currency-btn:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.currency-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-top: 60px;
}

.package-card {
    background: var(--white);
    border: 1px solid #e5e5e5;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.package-card:hover {
    transform: translateY(-20px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
    border-color: var(--accent-color);
}

.package-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.package-card:hover .package-image img {
    transform: scale(1.15);
}

.package-details {
    padding: 40px 35px;
}

.package-title {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.package-duration {
    font-size: 1rem;
    color: var(--gray-color);
    margin-bottom: 30px;
}

.package-price {
    margin-bottom: 30px;
    padding: 25px 0;
    border-top: 2px solid var(--light-color);
    border-bottom: 2px solid var(--light-color);
}

.price-amount {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--primary-color);
    display: block;
    line-height: 1;
}

.package-features {
    list-style: none;
    margin-bottom: 35px;
}

.package-features li {
    padding: 15px 0;
    border-bottom: 1px solid #f5f5f5;
    color: var(--gray-color);
    font-size: 1rem;
    position: relative;
    padding-left: 35px;
}

.package-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.4rem;
}

.package-features li:last-child {
    border-bottom: none;
}

.package-btn {
    display: block;
    width: 100%;
    padding: 20px;
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s;
    font-family: 'Arial', sans-serif;
    border-radius: 8px;
}

.package-btn:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Nearby Attractions Section */
.nearby-section {
    padding: 120px 0;
    background: var(--light-color);
}

.section-header-center {
    text-align: center;
    margin-bottom: 70px;
}

.attractions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 80px;
}

.attraction-card {
    background: var(--white);
    padding: 0;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    overflow: hidden;
    position: relative;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.attraction-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.7) 100%);
    z-index: 1;
}

.attraction-card > * {
    position: relative;
    z-index: 2;
}

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

/* Background images for attraction cards */
.attraction-card:nth-child(2) {
    background-image: url('../assets/elephant-home-bg.webp');
    background-size: cover;
    background-position: center;
}

.attraction-card:nth-child(3) {
    background-image: url('../assets/chandrika-lake-bg.webp');
    background-size: cover;
    background-position: center;
}

.attraction-card:nth-child(4) {
    background-image: url('../assets/sankapala-temple-bg.webp');
    background-size: cover;
    background-position: center;
}

.attraction-card:nth-child(5) {
    background-image: url('../assets/ridiyagama-bg.webp');
    background-size: cover;
    background-position: center;
}

/* Udawalawe highlight card with background */
.attraction-card.highlight {
    background-image: url('../assets/udawalawe-bg.webp');
    background-size: cover;
    background-position: center;
    color: var(--white);
    grid-column: span 2;
    min-height: 500px;
    padding: 60px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.attraction-card.highlight::before {
    background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.6) 100%);
}

.attraction-card.highlight .attraction-title,
.attraction-card.highlight .attraction-description,
.attraction-card.highlight .attraction-distance {
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Content padding for cards with background images */
.attraction-card:not(.highlight) {
    padding: 40px;
}

.attraction-card:not(.highlight) .attraction-title,
.attraction-card:not(.highlight) .attraction-description,
.attraction-card:not(.highlight) .attraction-distance {
    color: var(--white);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.attraction-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--white);
}

.attraction-title {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 10px;
    color: var(--white);
}

.attraction-distance {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 20px;
    font-weight: 600;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.attraction-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.attraction-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
    justify-content: center;
}

.attraction-features span {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(5px);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white);
}

.location-benefits {
    background: var(--white);
    padding: 60px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.location-benefits h3 {
    font-size: 2.5rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 50px;
    color: var(--dark-color);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.benefit-item h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.benefit-item p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--gray-color);
}

/* Gallery Section */
.gallery-section {
    min-height: 100vh;
    position: relative;
    background: var(--dark-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-container {
    width: 100%;
    height: 100vh;
    position: relative;
}

.gallery-image-wrapper {
    width: 100%;
    height: 100%;
}

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

.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 70px;
    height: 70px;
    border: 3px solid var(--white);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
    font-weight: 300;
}

.gallery-prev {
    left: 50px;
}

.gallery-next {
    right: 50px;
}

.gallery-arrow:hover {
    background: var(--white);
    color: var(--dark-color);
    transform: translateY(-50%) scale(1.1);
}

/* Reviews Section with Background */
.reviews-section {
    padding: 120px 0;
    background-image: url('../assets/reviews-bg.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.reviews-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    z-index: 0;
}

.reviews-section .container-large {
    position: relative;
    z-index: 1;
}

.reviews-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 80px;
}

.reviews-slider {
    position: relative;
    overflow: hidden;
}

.review-card {
    display: none;
    text-align: center;
    padding: 60px 40px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 15px;
    min-height: 300px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.review-card.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.review-rating {
    margin-bottom: 30px;
}

.review-rating .star {
    color: #ffc107;
    font-size: 1.8rem;
    margin: 0 3px;
}

.review-text {
    font-size: 1.3rem;
    line-height: 1.9;
    color: var(--gray-color);
    margin-bottom: 30px;
    font-style: italic;
}

.review-author {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 600;
}

.review-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border: 2px solid var(--primary-color);
    background: var(--white);
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
}

.review-prev {
    left: 0;
}

.review-next {
    right: 0;
}

.review-arrow:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
}

/* Contact Section */
.contact-section {
    padding: 120px 0;
    background: var(--white);
}

.section-title-center {
    font-size: 3.5rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 60px;
    color: var(--dark-color);
}

.social-links-center {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 70px;
    position: relative;
    z-index: 10;
}

.social-circle {
    width: 70px;
    height: 70px;
    border: 2px solid var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    transition: all 0.3s;
    position: relative;
    z-index: 10;
}

.social-circle:hover {
    background: var(--secondary-color);
    color: var(--white);
    transform: scale(1.15);
}

.contact-details {
    margin-bottom: 70px;
    position: relative;
    z-index: 1;
    clear: both;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 950px;
    margin: 0 auto;
}

.contact-item p {
    font-size: 1.05rem;
    color: var(--gray-color);
    line-height: 1.9;
}

.contact-item strong {
    color: var(--dark-color);
    font-weight: 700;
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
}

.contact-item a:hover {
    color: var(--accent-color);
}

.map-embed {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 70px 0 35px;
}

.footer-content {
    text-align: center;
}

.footer-logo img {
    height: 70px;
    margin-bottom: 25px;
}

.footer-logo p {
    font-size: 1.3rem;
    margin-bottom: 35px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 35px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .amenities-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 968px) {
    .header {
        padding: 15px 30px;
    }
    
    .header-center {
        display: none;
    }
    
    .villa-name {
        font-size: 1.2rem;
    }
    
    .hero-booking-widget {
        bottom: 30px;
        right: 30px;
        left: 30px;
        padding: 30px 25px;
    }
    
    .booking-form {
        gap: 15px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .attractions-grid {
        grid-template-columns: 1fr;
    }
    
    .attraction-card.highlight {
        grid-column: span 1;
    }
    
    .gallery-arrow {
        width: 55px;
        height: 55px;
        font-size: 1.6rem;
    }
    
    .gallery-prev {
        left: 20px;
    }
    
    .gallery-next {
        right: 20px;
    }
    
    .reviews-container {
        padding: 0 60px;
    }
}

@media (max-width: 768px) {
    .header-left .logo img {
        height: 50px;
    }
    
    .villa-name {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-title-large {
        font-size: 2.5rem;
    }
    
    .amenities-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .date-day {
        font-size: 2.5rem;
    }
    
    .booking-arrow {
        font-size: 1.5rem;
    }
    
    .reviews-container {
        padding: 0 40px;
    }
    
    .review-text {
        font-size: 1.1rem;
    }
    
    .attraction-card {
        min-height: 350px;
        padding: 30px;
    }
    
    .attraction-card.highlight {
        min-height: 400px;
        padding: 40px;
    }
}