/* Global Styles */
:root {
    --primary-color: #0b9186;
    --secondary-color: #f8b500;
    --accent-color: #ff4057;
    --dark-color: #0a3541;
    --light-color: #f9f7f3;
    --text-color: #333;
    --text-light: #777;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-dark: 0 10px 30px rgba(0, 0, 0, 0.25);
    --gradient: linear-gradient(to right, var(--primary-color), #06d6a0);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Poppins', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--light-color);
    overflow-x: hidden;
    /* Prevent scrolling initially */
    overflow-y: hidden;
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px;
    position: relative;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 4rem;
}

h2 {
    font-size: 3rem;
}

h3 {
    font-size: 2rem;
}

p {
    margin-bottom: 1.5rem;
}

.lead {
    font-size: 1.2rem;
    font-weight: 300;
}

.section-subtitle {
    display: block;
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 2.8rem;
    position: relative;
    margin-bottom: 3rem;
    color: var(--dark-color);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--primary-color);
}

[data-aos] {
    visibility: hidden;
}

section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Buttons */
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
    z-index: 1;
    border: none;
    cursor: pointer;
    overflow: hidden;
}

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

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

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    margin-left: 15px;
}

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

.btn-text {
    font-weight: 600;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
    transition: var(--transition);
}

.btn-text i {
    transition: var(--transition);
    margin-left: 5px;
}

.btn-text:hover {
    color: var(--dark-color);
}

.btn-text:hover i {
    transform: translateX(8px);
}

/* Loader */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--light-color);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 9999;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

.loader-wrapper.fade-out {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader {
    border: 3px solid rgba(11, 145, 134, 0.1);
    border-top: 3px solid var(--primary-color);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

.loader-text {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--primary-color);
    letter-spacing: 3px;
}

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

/* Header */
.header {
    position: fixed;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow);
    padding: 15px 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
}

.logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: white;
    position: relative;
    z-index: 1;
}

.header.scrolled .logo {
    color: var(--dark-color);
}

.logo span {
    color: var(--secondary-color);
}

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

.nav-links li {
    margin-left: 35px;
}

.nav-links a {
    font-weight: 500;
    color: white;
    position: relative;
    padding: 5px 0;
}

.header.scrolled .nav-links a {
    color: var(--dark-color);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--secondary-color);
}

.btn-book {
    background-color: var(--secondary-color);
    color: white !important;
    padding: 10px 25px;
    border-radius: 30px;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 130px;
    text-align: center;
    animation: subtle-pulse 2s infinite;
}

@keyframes subtle-pulse {
    0% {
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    }
    50% {
        box-shadow: 0 4px 15px rgba(248, 181, 0, 0.4);
    }
    100% {
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    }
}

.btn-book:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
    animation: none;
}

.header.scrolled .btn-book {
    background-color: var(--secondary-color);
    color: white !important;
}

.btn-book::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.btn-book:hover::before {
    left: 100%;
}

.btn-book::after {
    display: none;
}

/* Fix hamburger menu */
.hamburger {
    display: none;
    cursor: pointer;
    z-index: 100;
    width: 30px;
    height: 30px;
    position: relative;
    background: transparent;
    border: none;
    padding: 4px;
}

.bar {
    display: block;
    width: 100%;
    height: 3px;
    margin: 6px 0;
    border-radius: 2px;
    transition: var(--transition);
    background-color: white;
}

.header.scrolled .bar {
    background-color: var(--dark-color);
}

.hamburger.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Hero Section with Image Background */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 0;
}

.image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

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

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    width: 90%;
    max-width: 800px;
    z-index: 2;
    padding: 30px;
    background-color: rgba(10, 53, 65, 0.6);
    border-radius: 10px;
}

.hero h1 {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    line-height: 1.1;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.hero-footer {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 50px;
    z-index: 1;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
}

.scroll-indicator p {
    margin-bottom: 10px;
    font-size: 0.8rem;
    letter-spacing: 2px;
    opacity: 0.8;
}

.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid white;
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: white;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(15px);
    }
}

.social-icons {
    display: flex;
}

.social-icons a {
    color: white;
    font-size: 1.2rem;
    margin-left: 20px;
    transition: var(--transition);
}

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

/* About Section */
.about {
    background-color: white;
    position: relative;
}

.about-header {
    text-align: center;
    margin-bottom: 60px;
}

.about-header .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 50px;
}

.about-text p {
    color: var(--text-light);
}

.about-text .lead {
    color: var(--dark-color);
    font-size: 1.5rem;
    line-height: 1.5;
    font-weight: 300;
    font-style: italic;
    font-family: var(--font-heading);
    margin-bottom: 2rem;
}

.image-container {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 100%;
}

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

.about-image:hover img {
    transform: scale(1.05);
}

.experience-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border: 5px solid white;
}

.experience-badge .years {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    font-family: var(--font-heading);
}

.experience-badge .text {
    font-size: 0.8rem;
    margin-top: 5px;
    line-height: 1.2;
}

.highlights {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.highlight-item {
    text-align: center;
    padding: 30px 20px;
    border-radius: 10px;
    background-color: white;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-bottom: 3px solid transparent;
}

.highlight-item:hover {
    transform: translateY(-10px);
    border-bottom: 3px solid var(--primary-color);
}

.highlight-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.highlight-item h3 {
    margin-bottom: 0.5rem;
    color: var(--dark-color);
    font-size: 1.5rem;
}

.highlight-item p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Experience Section with tropical background */
.parallax-bg {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1544644181-1484b3fdfc32?ixlib=rb-1.2.1&auto=format&fit=crop&w=1500&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 100px 0;
}

.experience-header {
    text-align: center;
    margin-bottom: 60px;
}

.experience-header .section-title {
    color: white;
}

.experience-header .section-subtitle {
    color: var(--secondary-color);
}

.experience-header .section-title::after {
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-color);
}

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

.exp-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.exp-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
}

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

.exp-card .exp-icon i {
    font-size: 2rem;
    color: white;
}

.exp-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: white;
}

.exp-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.experience-cta {
    text-align: center;
    margin-top: 30px;
}

/* Virtual Tour Section */
.virtual-tour {
    background-color: var(--light-color);
}

.virtual-tour-header {
    text-align: center;
    margin-bottom: 60px;
}

.virtual-tour-header .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

/* Remove Old Gallery Styles */
.gallery-grid, .gallery-item, .gallery-overlay, .gallery-label, .gallery-filter, .featured-gallery-image, .filter-btn {
    /* Add properties to remove/reset if needed, or just rely on new styles */
    display: none; /* Hide old elements if they weren't removed from HTML */
}

/* New Gallery Styles */
.gallery {
    background-color: var(--light-color);
    padding-bottom: 80px;
}

.gallery-header {
    text-align: center;
    margin-bottom: 50px;
}

.gallery-header .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.gallery-header .section-subtext {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: -1rem auto 40px auto;
}

.gallery-display-area {
    display: grid;
    grid-template-columns: 60% 40%; /* Adjust ratio between main and thumbnails */
    gap: 15px; /* Increased space between main and secondary */
    overflow: hidden;
    max-width: 1100px; /* Control max width of gallery */
    margin: 0 auto; /* Center in container */
}

.gallery-main-image {
    position: relative;
    overflow: hidden;
    height: 480px; /* Fixed height for better proportion */
    border-radius: 6px; /* Slightly rounded corners */
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.gallery-main-image a {
    display: block;
    width: 100%;
    height: 100%;
}

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

.gallery-main-image:hover img {
    transform: scale(1.03);
}

.gallery-secondary-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 15px;
    height: 480px; /* Match main image height */
}

.gallery-secondary-item {
    overflow: hidden;
    border-radius: 6px; /* Match main image */
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    position: relative;
}

.gallery-secondary-item a {
    display: block;
    height: 100%;
}

.gallery-secondary-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease, filter 0.3s ease;
}

.gallery-secondary-item:hover img {
    transform: scale(1.05);
    filter: brightness(0.95);
}

.btn-view-gallery {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 10;
    background-color: white;
    color: var(--dark-color);
    padding: 10px 16px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    border: none;
}

.btn-view-gallery i {
    font-size: 0.8rem;
}

.btn-view-gallery:hover {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.gallery-cta {
    text-align: center;
    margin-top: 60px;
    padding-top: 40px;
}

.gallery-cta p {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

/* Responsive adjustments for gallery */
@media (max-width: 1100px) {
    .gallery-display-area {
        padding: 0 15px; /* Add some padding on medium screens */
    }
}

@media (max-width: 992px) {
    .gallery-display-area {
        grid-template-columns: 1fr; /* Switch to single column */
        gap: 15px;
    }
    
    .gallery-main-image {
        height: 400px; /* Reduced height on smaller screens */
    }
    
    .gallery-secondary-images {
        height: auto;
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: 1fr;
    }
    
    .gallery-secondary-item {
        aspect-ratio: 1/1; /* Keep square regardless of container */
    }
}

@media (max-width: 768px) {
    /* Improve gallery thumbnails on mobile */
    .gallery-secondary-images {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, auto);
        gap: 10px;
        margin-top: 10px;
        width: 100%;
    }
    
    .gallery-secondary-item {
        height: auto;
        aspect-ratio: 1.35/1; /* Wider aspect ratio */
        width: 100%;
    }
    
    .gallery-secondary-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .gallery-main-image {
        height: 350px;
    }
    
    .btn-view-gallery {
        padding: 12px 20px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .gallery-main-image {
        height: 280px;
    }
    
    .gallery-secondary-images {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .gallery-secondary-item {
        aspect-ratio: 1.4/1;
        height: auto;
    }
    
    /* Larger touch targets for very small screens */
    .lb-nav a.lb-prev, .lb-nav a.lb-next {
        width: 40px;
        height: 60px;
    }
}

/* Amenities Section */
.amenities {
    background-color: var(--light-color);
}

.amenities-header {
    text-align: center;
    margin-bottom: 60px;
}

.amenities-header .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.amenities-tabs {
    background-color: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.tabs-header {
    display: flex;
    border-bottom: 1px solid #eee;
}

.tab-btn {
    flex: 1;
    padding: 20px;
    text-align: center;
    font-weight: 600;
    color: var(--text-color);
    background: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary-color);
    transition: var(--transition);
}

.tab-btn:hover, .tab-btn.active {
    color: var(--primary-color);
}

.tab-btn.active::after {
    width: 100%;
}

.tab-pane {
    display: none;
    padding: 40px;
}

.tab-pane.active {
    display: block;
    animation: fadeIn 0.5s ease forwards;
}

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

.amenity-content {
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

.amenity-icon {
    flex-shrink: 0;
    font-size: 3.5rem;
    color: var(--primary-color);
}

.amenity-details h3 {
    color: var(--dark-color);
    margin-bottom: 20px;
}

.amenity-list {
    columns: 2;
    column-gap: 40px;
}

.amenity-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    break-inside: avoid;
}

.amenity-list li i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 0.8rem;
}

/* Testimonials Section */
.testimonials {
    background-color: white;
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background-color: var(--light-color);
    z-index: 0;
}

.testimonials .container {
    position: relative;
    z-index: 1;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-header .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.testimonials-slider {
    position: relative;
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-item {
    display: none;
    transition: opacity 0.5s ease;
}

.testimonial-item.active {
    display: block;
    animation: fadeSlide 0.8s ease forwards;
}

@keyframes fadeSlide {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

.testimonial-content {
    background-color: white;
    border-radius: 10px;
    padding: 40px;
    box-shadow: var(--shadow);
    position: relative;
}

.testimonial-content::before {
    content: '\201C';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 5rem;
    color: var(--primary-color);
    opacity: 0.1;
    font-family: sans-serif;
    line-height: 1;
}

.rating {
    margin-bottom: 20px;
}

.rating i {
    color: #ffc107;
    margin-right: 3px;
}

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

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 25px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 3px solid var(--primary-color);
}

.author-info h4 {
    margin-bottom: 0;
    color: var(--dark-color);
    font-family: var(--font-body);
    font-size: 1.1rem;
}

.author-info p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.9rem;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}

.prev-btn, .next-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--dark-color);
    cursor: pointer;
    transition: var(--transition);
}

.prev-btn:hover, .next-btn:hover {
    color: var(--primary-color);
}

.dots {
    display: flex;
    margin: 0 20px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ddd;
    margin: 0 5px;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--primary-color);
}

/* Pricing Section */
.pricing-section {
    background: #f8f9fa;
    padding: 100px 0;
}

.pricing-header {
    text-align: center;
    margin-bottom: 60px;
}

.pricing-header .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.pricing-card {
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    position: relative;
    border: 2px solid transparent;
}

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

.pricing-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

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

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-header-card h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--text-color);
}

.season-period {
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 1rem;
}

.pricing-price {
    margin-bottom: 30px;
}

.currency {
    font-size: 1.5rem;
    color: var(--primary-color);
    vertical-align: top;
}

.amount {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.period {
    font-size: 1rem;
    color: var(--text-light);
    display: block;
    margin-top: 5px;
}

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

.pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

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

.pricing-features li i {
    color: var(--primary-color);
    margin-right: 12px;
    font-size: 1.1rem;
}

.pricing-info {
    background: white;
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.pricing-notes h4 {
    color: var(--text-color);
    margin-bottom: 25px;
    font-size: 1.5rem;
}

.pricing-notes ul {
    list-style: none;
    padding: 0;
}

.pricing-notes li {
    padding: 10px 0;
    display: flex;
    align-items: flex-start;
}

.pricing-notes li i {
    color: var(--primary-color);
    margin-right: 12px;
    margin-top: 3px;
    font-size: 1rem;
}

.policy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.policy-section {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.policy-section h5 {
    color: var(--text-color);
    margin-bottom: 15px;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.policy-section h5 i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.policy-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.policy-section li {
    padding: 8px 0;
    color: var(--text-light);
    font-size: 0.95rem;
    position: relative;
    padding-left: 15px;
}

.policy-section li::before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 8px;
    font-weight: bold;
}

.pricing-cta {
    text-align: center;
}

.pricing-cta h3 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.pricing-cta p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: 600;
}

/* Booking Section */
.booking {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('https://images.unsplash.com/photo-1540202404-1b927e27fa8b?ixlib=rb-1.2.1&auto=format&fit=crop&w=1500&q=80');
    background-size: cover;
    background-position: center;
    color: white;
}

.booking-header {
    text-align: center;
    margin-bottom: 60px;
}

.booking-header .section-title {
    color: white;
}

.booking-header .section-subtitle {
    color: var(--secondary-color);
}

.booking-header .section-title::after {
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-color);
}

.booking-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.booking-info {
    padding-right: 20px;
}

.booking-info h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: white;
}

.booking-info p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
}

.price-info {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.price-info h4 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.rates-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 15px;
}

.rates-table th, .rates-table td {
    padding: 10px 15px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.rates-table th {
    color: white;
    font-weight: 600;
}

.rates-table tr:last-child td {
    border-bottom: none;
}

.rates-table small {
    font-size: 0.8rem;
    opacity: 0.7;
}

.booking-policy {
    margin-top: 30px;
}

.booking-policy h4 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.booking-policy ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.booking-policy ul li i {
    color: var(--secondary-color);
    margin-right: 10px;
}

.booking-form {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 25px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group.half {
    flex: 1;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #aaa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(11, 145, 134, 0.1);
}

.btn-book-now {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary-color);
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 18px 30px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    transform: scale(1);
    transition: all 0.3s ease;
}

.btn-book-now:hover {
    background: var(--accent-color);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.25);
}

.btn-book-now i {
    margin-left: 10px;
    transition: var(--transition);
    font-size: 1.2rem;
}

.btn-book-now:hover i {
    transform: translateX(10px);
}

/* Location Section */
.location {
    background-color: white;
}

.location-header {
    text-align: center;
    margin-bottom: 60px;
}

.location-header .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 100%;
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    align-items: flex-start;
}

.info-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-right: 20px;
    margin-top: 5px;
}

.info-item h4 {
    color: var(--dark-color);
    margin-bottom: 10px;
}

.info-item p, .info-item ul {
    margin-bottom: 0;
    color: var(--text-light);
}

.info-item ul li {
    margin-bottom: 5px;
    position: relative;
    padding-left: 15px;
}

.info-item ul li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* Footer Section */
.footer {
    background-color: var(--dark-color);
    color: white;
}

.footer-top {
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 50px;
}

.footer-logo h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.footer-logo span {
    color: var(--secondary-color);
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    transition: var(--transition);
}

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

.footer h4 {
    color: var(--secondary-color);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 10px;
}

.footer h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--primary-color);
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

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

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact-item i {
    margin-right: 15px;
    color: var(--secondary-color);
}

.footer-newsletter p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.newsletter-form .form-group {
    position: relative;
    margin-bottom: 0;
}

.newsletter-form input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 50px 12px 20px;
    color: white;
    border-radius: 50px;
    width: 100%;
}

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

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.newsletter-form button {
    position: absolute;
    right: 5px;
    top: 5px;
    background: var(--primary-color);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    color: white;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: var(--secondary-color);
}

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    margin-left: 20px;
    transition: var(--transition);
}

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

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    z-index: 999;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--dark-color);
    transform: translateY(-5px);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .hero h1 {
        font-size: 4rem;
    }
    
    .experience-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    html {
        font-size: 15px;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .about-content, 
    .booking-container,
    .location-content {
        grid-template-columns: 1fr;
    }
    
    .highlights {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .amenity-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .amenity-list {
        columns: 1;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on tablet */
    }
    
    .featured-gallery-image {
        height: 400px; /* Adjust height */
    }
}

@media (max-width: 768px) {
    /* Basic mobile styles */
    .hamburger {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background-color: white;
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: var(--transition);
        box-shadow: var(--shadow);
        padding: 100px 0 30px;
        z-index: 99;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links li {
        margin: 15px 0;
    }
    
    .nav-links a {
        color: var(--dark-color);
        font-size: 1.2rem;
    }
    
    /* Book Now button fix in mobile menu */
    .nav-links li:last-child {
        margin-top: 25px;
    }
    
    .nav-links .btn-book {
        min-width: 160px;
        display: inline-flex;
        justify-content: center;
        padding: 12px 25px;
        margin: 0 auto;
    }
    
    /* Season rates table specific fixes for mobile */
    .rates-table {
        width: 100%;
        table-layout: auto;
        margin: 0 auto;
    }
    
    .rates-table td:first-child {
        width: 70%;
        padding-right: 15px;
        text-align: left;
    }
    
    .rates-table td:last-child {
        width: 30%;
        text-align: right;
        padding-left: 15px;
    }
    
    /* Fix for the date text and price overlap */
    .rates-table td small {
        display: block;
        margin-top: 3px;
        font-size: 0.75rem;
        opacity: 0.8;
    }
    
    /* Adjust the spacing of table rows */
    .rates-table tr {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .rates-table tr:last-child {
        border-bottom: none;
    }
    
    /* Ensure the price info container has proper spacing */
    .price-info {
        padding: 25px 15px;
    }
    
    .hero-footer {
        display: none;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .experience-cards {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr; /* 1 column on mobile */
    }
    
    .tabs-header {
        flex-wrap: wrap;
    }
    
    .tab-btn {
        flex: initial;
        width: 50%;
    }
    
    .form-row {
        flex-direction: column;
        gap: 25px;
    }
    
    .footer-bottom .container {
        flex-direction: column;
        gap: 10px;
    }
    
    .footer-bottom-links a {
        margin: 0 10px;
    }
    
    .featured-gallery-image {
        height: 300px; /* Adjust height */
    }
    
    /* Centralize amenities section on mobile */
    .amenity-content {
        text-align: center;
    }
    
    .amenity-icon {
        margin: 0 auto 20px;
        display: flex;
        justify-content: center;
    }
    
    .amenity-list {
        display: inline-block;
        text-align: left;
        margin: 0 auto;
    }
    
    /* Gallery mobile optimizations */
    .gallery-display-area {
        padding: 0 10px;
    }
    
    .gallery-main-image {
        height: 300px;
    }
    
    .btn-view-gallery {
        padding: 12px 20px;
        font-size: 1rem;
    }
    
    /* Lightbox mobile optimizations */
    .lb-nav a.lb-prev, .lb-nav a.lb-next {
        width: 50px;
        height: 80px;
        opacity: 0.8;
    }
    
    .lb-nav a.lb-prev {
        left: 0;
        border-radius: 0 4px 4px 0;
    }
    
    .lb-nav a.lb-next {
        right: 0;
        border-radius: 4px 0 0 4px;
    }
    
    .lb-close {
        padding: 10px;
    }
    
    .lb-dataContainer {
        padding: 8px 0;
    }
    
    /* Make tabs more touch-friendly */
    .tab-btn {
        padding: 15px 10px;
    }

    /* Pricing Section Mobile */
    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }

    .pricing-card {
        padding: 30px 20px;
    }

    .amount {
        font-size: 2.8rem;
    }

    .pricing-info {
        padding: 30px 20px;
    }
    
    .policy-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .policy-section {
        padding: 20px;
    }

    .pricing-cta h3 {
        font-size: 1.8rem;
    }
    
    /* Improve touch experience */
    .btn-primary, .btn-secondary, button, a.btn-book, .hamburger, 
    .tab-btn, .dot, .social-links a {
        min-height: 44px; /* Minimum touch target size */
        min-width: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Center booking section on mobile */
    .booking-info {
        text-align: center;
        padding-right: 0;
    }
    
    .booking-info h3, .booking-info p {
        text-align: center;
    }
    
    .price-info, .booking-policy {
        margin-left: auto;
        margin-right: auto;
        max-width: 450px;
    }
    
    .rates-table {
        margin: 0 auto;
    }
    
    .booking-policy ul li {
        justify-content: center;
        text-align: left;
    }
    
    .booking-policy ul li i {
        margin-right: 10px;
    }
    
    /* Center location section on mobile */
    .location-info {
        text-align: center;
    }
    
    .info-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-bottom: 30px;
    }
    
    .info-item i {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .info-item ul {
        display: inline-block;
        text-align: left;
    }
    
    /* Center footer content on mobile */
    .footer-logo, .footer-links, .footer-contact, .footer-newsletter {
        text-align: center;
        margin-bottom: 30px;
    }
    
    .footer h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-contact {
        text-align: center;
    }
    
    .contact-item {
        gap: 5px; /* Tighter spacing on mobile */
        max-width: 260px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .contact-item i {
        width: 15px; /* Narrower on mobile */
        margin-right: 5px; /* Less spacing on mobile */
        font-size: 1.1rem;
        min-width: 15px; /* Ensure fixed width */
    }
    
    .footer-contact .contact-item p {
        text-align: left;
    }
    
    .newsletter-form {
        max-width: 300px;
        margin: 0 auto;
    }
    
    /* Fix booking section title overlap */
    .booking-header {
        margin-bottom: 40px;
        padding-top: 20px;
    }
    
    .booking-header h2.section-title {
        font-size: 2.4rem;
        margin-bottom: 10px;
        padding-top: 10px;
        line-height: 1.2;
    }
    
    /* Ensures spacing between elements */
    #booking .container {
        padding-top: 20px;
    }
    
    /* Add space between reservation details and content */
    .booking-info {
        padding-top: 15px;
    }
    
    /* Fix first heading that appears to overlap */
    .booking-info h3 {
        padding-top: 15px;
        padding-bottom: 15px;
        clear: both;
    }
    
    /* Reservation details specific fixes */
    .booking {
        padding-top: 80px;
    }
    
    .booking .container {
        padding-top: 20px;
    }
    
    .booking h2.section-title {
        margin-bottom: 40px;
        font-size: 2.4rem;
        line-height: 1.2;
    }
    
    .booking-info {
        text-align: center;
    }
    
    .booking-info h3 {
        margin-top: 0;
        margin-bottom: 20px;
        padding: 0 10px;
        font-size: 2rem;
        line-height: 1.3;
        white-space: normal; /* Ensure text can wrap */
    }
    
    /* Season rates table fixes */
    .price-info {
        margin-top: 30px;
        margin-bottom: 30px;
    }
    
    .price-info h4 {
        margin-bottom: 15px;
        font-size: 1.5rem;
    }
    
    .nav-links li:last-child {
        margin-top: 20px;
    }
    
    .nav-links .btn-book {
        min-width: 150px;
        padding: 12px 30px;
        margin: 0 auto;
    }
    
    /* Prevent text wrapping in season rates table */
    .rates-table th, .rates-table td {
        white-space: nowrap;
        padding: 10px 15px;
    }
    
    /* Ensure table container allows horizontal scrolling if needed */
    .price-info {
        overflow-x: auto;
    }

    /* Improve hamburger menu appearance */
    .hamburger {
        display: block;
    }
    
    /* Make hamburger menu X black when active - MOBILE ONLY */
    .hamburger.active .bar {
        background-color: var(--dark-color);
    }
    
    /* Fix footer icons alignment for mobile only */
    .contact-item {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        text-align: left;
        margin-left: auto;
        margin-right: auto;
        max-width: 220px;
    }
    
    .contact-item i {
        width: 25px;
        margin-right: 15px;
        text-align: center;
    }
    
    .footer-contact {
        text-align: center;
    }
    
    .footer-contact .contact-item p {
        text-align: left;
        margin-bottom: 0;
    }
}

@media (max-width: 576px) {
    html {
        font-size: 14px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn-secondary {
        margin-left: 0;
        margin-top: 10px;
    }
    
    .highlights {
        grid-template-columns: 1fr;
    }
    
    .gallery-filter {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .tab-btn {
        width: 100%;
    }
    
    .gallery-item {
        height: 250px;
    }
    
    .testimonial-content {
        padding: 30px 20px;
    }
    
    .featured-gallery-image {
        height: 300px; /* Adjust height */
    }
    
    .gallery-main-image {
        height: 250px;
    }
    
    .gallery-secondary-item {
        height: 120px;
    }
    
    .amenity-list li {
        margin-bottom: 10px;
        padding-left: 25px;
        position: relative;
    }
    
    .amenity-list li i {
        position: absolute;
        left: 0;
        top: 5px;
    }
    
    /* Larger touch targets for very small screens */
    .lb-nav a.lb-prev, .lb-nav a.lb-next {
        width: 40px;
        height: 60px;
    }
}

/* Desktop footer contact icon alignment fixes */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-item i {
    width: 20px;
    display: flex;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.contact-item p {
    margin-bottom: 0;
    flex: 1;
}

/* Mobile-specific overrides */
@media (max-width: 768px) {
    .contact-item {
        gap: 5px; /* Tighter spacing on mobile */
        max-width: 260px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .contact-item i {
        width: 15px; /* Narrower on mobile */
        margin-right: 5px; /* Less spacing on mobile */
        font-size: 1.1rem;
        min-width: 15px; /* Ensure fixed width */
    }
} 