/* Base Styles */
:root {
    --primary-color: #FFA500; /* Orange color matching the logo */
    --primary-dark: #e69500;
    --primary-light: #ffdab9;
    --secondary-color: #2c3e50;
    --accent-color: #f8f9fa;
    --text-color: #333;
    --text-light: #666;
    --text-dark: #222;
    --light-color: #fff;
    --dark-color: #222;
    --border-color: #e0e0e0;
    --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --transition: all 0.3s ease;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 20px rgba(0, 0, 0, 0.15);
    --border-radius: 8px;
    --spacing-xs: 5px;
    --spacing-sm: 10px;
    --spacing-md: 20px;
    --spacing-lg: 30px;
    --spacing-xl: 50px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-color);
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

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

a:hover {
    color: var(--secondary-color);
}

.btn-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 14px 28px;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    box-shadow: var(--shadow);
    font-size: 1rem;
    text-decoration: none;
    border: 2px solid var(--primary-color);
}

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

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-color);
    padding: 14px 28px;
    border: 2px solid var(--primary-color);
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    font-size: 1rem;
    text-decoration: none;
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 12px 0;
    backdrop-filter: blur(10px);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 55px;
    width: auto;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    padding: 2px;
}

.logo h1 {
    color: var(--secondary-color);
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    background: none;
    border: none;
    outline: none;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background-color: var(--secondary-color);
    margin: 4px 0;
    transition: var(--transition);
    border-radius: 2px;
}

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

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

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

nav ul {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 20px;
}

nav ul li {
    margin: 0;
}

nav ul li a {
    color: var(--text-color);
    font-weight: 500;
    padding: 8px 12px;
    position: relative;
    text-decoration: none;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

nav ul li a:hover {
    color: var(--primary-color);
    background-color: rgba(255, 165, 0, 0.1);
}

nav ul li a.active {
    color: var(--primary-color);
    background-color: rgba(255, 165, 0, 0.1);
}

nav ul li .btn-primary {
    padding: 10px 20px;
    margin-left: 0;
    font-size: 0.9rem;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--light-color);
    margin-top: 0;
    position: relative;
    overflow: hidden;
}

/* Hero Slideshow */
.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide.fade {
    opacity: 0;
}

/* Slideshow Controls */
.slideshow-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 10;
    transform: translateY(-50%);
}

.slide-nav {
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.slide-nav:hover {
    background: rgba(255, 165, 0, 0.8);
    transform: scale(1.1);
}

/* Slide Indicators */
.slide-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.indicator {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

.indicator:hover {
    background: rgba(255, 165, 0, 0.8);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    pointer-events: none;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding-top: 60px;
    z-index: 2;
    position: relative;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    font-weight: 700;
    letter-spacing: 1px;
    animation: fadeInUp 1s ease-out;
}

.hero p {
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
    animation: fadeInUp 1s ease-out 0.2s both;
}

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

/* Sections */
section {
    padding: var(--spacing-xl) 0;
    position: relative;
}

section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: var(--spacing-lg);
    color: var(--secondary-color);
    position: relative;
    font-weight: 700;
    margin-top: 0;
}

section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--primary-light));
    border-radius: 2px;
}

.about {
    background-color: var(--accent-color);
    padding: var(--spacing-xl) 0;
}

.about p {
    max-width: 800px;
    margin: 0 auto var(--spacing-lg);
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-color);
}

.about {
    background-color: var(--accent-color);
}

.about p {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.2rem;
}

/* Rooms Section */
.rooms {
    background-color: var(--light-color);
}

.room-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-lg);
}

.room-card {
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.room-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

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

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

.room-badge {
    position: absolute;
    top: var(--spacing-sm);
    right: var(--spacing-sm);
    background-color: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.room-info {
    padding: var(--spacing-md);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

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

.room-info p {
    margin-bottom: var(--spacing-md);
    color: var(--text-color);
    flex-grow: 1;
}

.room-price {
    font-size: 1.6rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.room-price span {
    font-size: 1rem;
    font-weight: normal;
    color: var(--text-light);
}

.room-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: var(--spacing-sm) 0;
}

.feature {
    background-color: var(--accent-color);
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    color: var(--text-color);
}

.room-actions {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

.room-actions .btn-primary,
.room-actions .btn-secondary {
    flex: 1;
}

/* Facilities Section */
.facilities {
    background-color: var(--accent-color);
}

.facility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.facility-item {
    text-align: center;
    background-color: var(--light-color);
    padding: 30px 20px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.facility-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 20px;
}

.facility-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

/* Services Section */
.services {
    background-color: var(--light-color);
    padding: var(--spacing-xl) 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
}

.service-item {
    text-align: center;
    padding: var(--spacing-lg);
    border-radius: var(--border-radius);
    background-color: var(--light-color);
    transition: var(--transition);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.service-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: var(--spacing-md);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-item h3 {
    font-size: 1.4rem;
    margin-bottom: var(--spacing-sm);
    color: var(--secondary-color);
    font-weight: 600;
}

.service-item p {
    color: var(--text-light);
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
    background-color: var(--accent-color);
    padding: var(--spacing-xl) 0;
    position: relative;
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-lg);
}

.visitor-counter {
    background-color: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: var(--shadow);
}

/* Marquee Container */
.testimonial-marquee-container {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    margin-bottom: var(--spacing-xl);
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: var(--spacing-lg) 0;
    height: 280px;
    display: flex;
    align-items: center;
    border: 1px solid var(--border-color);
}

.testimonial-marquee-container::before,
.testimonial-marquee-container::after {
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    content: "";
    z-index: 2;
}

.testimonial-marquee-container::before {
    left: 0;
    background: linear-gradient(to right, var(--light-color), transparent);
}

.testimonial-marquee-container::after {
    right: 0;
    background: linear-gradient(to left, var(--light-color), transparent);
}

/* Marquee Animation */
.testimonial-marquee {
    display: inline-flex;
    animation: marquee 40s linear infinite;
    padding-left: 100%;
    align-items: center;
}

.testimonial-marquee:hover,
.testimonial-marquee:active {
    animation-play-state: paused;
}

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

/* Testimonial Card Styles */
.testimonial-card {
    background-color: white;
    padding: var(--spacing-lg);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    position: relative;
    display: inline-block;
    width: 420px;
    margin: 0 var(--spacing-md);
    vertical-align: top;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    border: 1px solid var(--border-color);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 15px;
    left: 25px;
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.1;
    font-family: Georgia, serif;
}

.testimonial-rating {
    margin-bottom: var(--spacing-sm);
}

.testimonial-rating .star {
    color: #ffc107;
    font-size: 1.3rem;
}

.testimonial-content {
    min-height: 120px;
    display: flex;
    align-items: center;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: var(--spacing-sm);
    position: relative;
    z-index: 1;
    font-size: 1.1rem;
    line-height: 1.7;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    white-space: normal;
    text-align: left;
    color: var(--text-color);
}

.testimonial-author h4 {
    color: var(--secondary-color);
    margin-bottom: 5px;
    font-size: 1.1rem;
    font-weight: 600;
}

.testimonial-author p {
    color: var(--text-light);
    font-size: 0.95rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0;
}

/* Add Testimonial Form */
.add-testimonial-section {
    background-color: var(--light-color);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    margin-top: 50px;
}

.add-testimonial-section h3 {
    text-align: center;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.testimonial-form {
    max-width: 600px;
    margin: 0 auto;
}

.testimonial-form .form-group {
    margin-bottom: 20px;
}

.testimonial-form input,
.testimonial-form select,
.testimonial-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: var(--transition);
}

.testimonial-form input:focus,
.testimonial-form select:focus,
.testimonial-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 165, 0, 0.2);
}

.testimonial-form select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
}

.testimonial-form button {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
}

/* Testimonial Callout Section */
.testimonial-callout {
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 40px 20px;
    border-radius: 8px;
    margin: 40px 0;
    box-shadow: var(--shadow);
}

.testimonial-callout h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: white;
}

.testimonial-callout p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.testimonial-callout .btn-primary {
    background-color: white;
    color: var(--primary-color);
    padding: 12px 30px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.testimonial-callout .btn-primary:hover {
    background-color: var(--light-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .testimonial-marquee-container {
        padding: 15px 0;
    }
    
    .testimonial-card {
        width: 250px;
        margin: 0 15px;
    }
    
    .testimonial-content p {
        font-size: 0.9rem;
    }
    
    @keyframes marquee {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-100%);
        }
    }
}

@media (max-width: 480px) {
    .testimonial-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .testimonial-marquee-container {
        padding: 10px 0;
    }
    
    .testimonial-card {
        width: 200px;
        margin: 0 10px;
        padding: 15px;
    }
    
    .testimonial-content p {
        font-size: 0.85rem;
    }
    
    .testimonial-author h4 {
        font-size: 1rem;
    }
}

/* Gallery Section */
.gallery {
    background-color: var(--light-color);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
}

.filter-btn {
    padding: 10px 20px;
    background-color: var(--accent-color);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    color: var(--text-color);
}

.filter-btn.active,
.filter-btn:hover {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    height: 250px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

/* Special styling for gallery item containing flyer download */
.gallery-item:has(.flyer-download-container) {
    background-color: var(--accent-color);
    border: 2px solid var(--primary-color);
}

/* Apply overflow hidden only to images and videos directly */
.gallery-item > img,
.gallery-item > video,
.video-container {
    overflow: hidden;
}

/* Override overflow for gallery items containing flyer download container */
.gallery-item:has(.flyer-download-container) {
    overflow: visible;
}

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

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

.expand-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: var(--transition);
    opacity: 0;
}

.gallery-item:hover .expand-btn {
    opacity: 1;
}

.expand-btn:hover {
    background-color: var(--primary-color);
    transform: scale(1.1);
}

.video-container {
    width: 100%;
    height: 250px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
}

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

.video-container:hover {
    transform: scale(1.03);
    transition: var(--transition);
}

.video-container:hover .expand-btn {
    opacity: 1;
}

/* Video play indicator for videos that need user interaction */
.video-container video[title="Click to play"] {
    cursor: pointer;
}

.video-container video[title="Click to play"]::after {
    content: 'Click to Play';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 1rem;
    pointer-events: none;
}

.flyer-download-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 20px;
    background-image:url('main-flyer.jpg');
    border-radius: 8px;
    opacity: 1 !important; /* Ensure it's always visible */
    box-shadow: var(--shadow); /* Add shadow to make it stand out */
    transition: transform 0.3s ease; /* Add smooth transition */
    position: relative;
    z-index: 1;
}

.flyer-download-container h3 {
    margin-bottom: 15px;
    color: var(--secondary-color);
    text-align: center;
    font-size: 1.3rem;
    font-weight: 600;
}

.flyer-download-container:hover {
    transform: scale(1.02); /* Slight scale effect on hover */
}

.flyer-download-container .btn-primary,
.flyer-download-container .btn-secondary {
    margin: 10px 0;
    width: 80%;
    text-align: center;
    opacity: 1 !important; /* Ensure buttons are always visible */
    z-index: 2; /* Ensure buttons are above other elements */
    font-weight: bold; /* Make text bolder */
    font-size: 1.1rem; /* Slightly larger text */
    padding: 15px 20px; /* More padding for better visibility */
}

/* Ensure flyer download container is visible even when not hovered */
.gallery-item .flyer-download-container {
    opacity: 1 !important;
}

.gallery-item .flyer-download-container .btn-primary,
.gallery-item .flyer-download-container .btn-secondary {
    opacity: 1 !important;
}

.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 1000px;
    max-height: 90vh;
}

.video-modal-content video {
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
}

.image-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.image-modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.image-modal-content img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 8px;
}

.image-modal-content .btn-secondary {
    margin: 15px 0;
    align-self: center;
    padding: 12px 25px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.close-modal-btn {
    position: absolute;
    top: -40px;
    right: 0;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.close-modal-btn:hover {
    background-color: #e69500;
    transform: scale(1.1);
}

.video-thumbnail {
    position: relative;
}

.video-thumbnail::after {
    content: '▶';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: var(--light-color);
    background-color: rgba(0, 0, 0, 0.5);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Booking Section */
.booking {
    background-color: var(--accent-color);
}

/* Airbnb booking option styling */
.airbnb-option {
    text-align: center;
    margin-bottom: 20px;
    padding: 25px;
    background-color: #2f316b;
    border-radius: 8px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.airbnb-option p {
    margin-bottom: 20px;
}

/* Booking Options Container - Side by side layout */
.booking-options-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.airbnb-option, .booking-com-option {
    flex: 1;
    min-width: 300px;
    padding: 25px;
    background-color: #f8f8f8;
    border-radius: 8px;
    border: 1px solid #eee;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.airbnb-option:hover, .booking-com-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.airbnb-option h3, .booking-com-option h3 {
    margin-top: 0;
    color: #333;
}

.airbnb-option p, .booking-com-option p {
    color: #666;
    margin-bottom: 20px;
}

/* Booking.com specific button styling */
.booking-com-option .btn-secondary {
    background-color: #757bcb;
    border-color: #757bcb;
    color: white;
}

.booking-com-option .btn-secondary:hover {
    background-color: #5a60a0;
    border-color: #5a60a0;
    color: white;
}

/* Responsive design for booking options */
@media (max-width: 768px) {
    .booking-options-container {
        flex-direction: column;
    }
    
    .airbnb-option, .booking-com-option {
        min-width: 100%;
    }
}

/* Location Section */
.coming-soon-message {
    text-align: center;
    padding: 30px;
    background-color: #f8f8f8;
    border-radius: 8px;
    margin-top: 20px;
}

.coming-soon-message h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.room-info .btn-secondary {
    margin-top: 10px;
    display: block;
    text-align: center;
}

#booking-form {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--light-color);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.form-help {
    display: block;
    font-size: 0.85rem;
    color: #666;
    margin-top: 5px;
}

.form-feedback {
    padding: 15px;
    border-radius: 4px;
    margin: 15px 0;
    text-align: center;
    font-weight: 500;
    display: none;
}

.form-feedback.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-feedback.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.form-feedback.loading {
    background-color: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--secondary-color);
}

input, select, textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    font-family: var(--font-main);
    font-size: 1rem;
    background-color: var(--light-color);
    color: var(--text-color);
    transition: var(--transition);
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 165, 0, 0.2);
}

input::placeholder,
textarea::placeholder {
    color: var(--text-light);
    opacity: 0.7;
}

input:hover,
select:hover,
textarea:hover {
    border-color: var(--primary-light);
}

input.error,
select.error,
textarea.error {
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.2);
}

.field-error {
    color: #dc3545;
    font-size: 0.85rem;
    margin-top: 5px;
    display: block;
}

/* Contact Section */
.contact {
    background-color: var(--accent-color);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info {
    background-color: var(--light-color);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.contact-info h3 {
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

#contact-form {
    background-color: var(--light-color);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #1a2530 100%);
    color: var(--light-color);
    padding: var(--spacing-xl) 0 var(--spacing-md);
    margin-top: var(--spacing-xl);
}

/* Enhanced Footer Styles */
footer {
    background: linear-gradient(135deg, #2c3e50 0%, #1a2530 100%);
    color: white;
    padding: 50px 0 20px;
    margin-top: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-logo img {
    max-width: 120px;
    height: auto;
    margin-bottom: 15px;
}

.footer-links ul, .social-links, .conadux-social {
    list-style: none;
    padding: 0;
}

.footer-links li, .social-links p, .conadux-social p {
    margin-bottom: 10px;
}

.footer-links a, .social-links a, .conadux-social a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover, .social-links a:hover, .conadux-social a:hover {
    color: #007bff;
}

.affiliate-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.affiliate-item:hover {
    background: rgba(255, 255, 255, 0.2);
}

.affiliate-logo {
    max-width: 50px;
    height: auto;
    border-radius: 6px;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #bdc3c7;
}

.copyright a {
    color: #007bff;
    text-decoration: none;
}

.copyright a:hover {
    text-decoration: underline;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-main {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--spacing-sm);
}

.footer-logo img {
    height: 70px;
    width: auto;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    padding: 3px;
}

.footer-logo h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin: 0;
    font-weight: 600;
}

.social-media h4 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
    font-size: 1.2rem;
    position: relative;
}

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

.social-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.social-links a {
    color: var(--light-color);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.social-links a:hover {
    color: var(--primary-color);
}

.affiliate-section {
    display: flex;
    flex-direction: column;
}

.affiliate-company {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--spacing-sm);
}

.affiliate-logo {
    cursor: pointer;
    transition: transform 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.affiliate-logo:hover {
    transform: scale(1.05);
}

.affiliate-logo img {
    height: 80px;
    width: auto;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    padding: 3px;
    transition: var(--transition);
}

.affiliate-logo:hover img {
    transform: scale(1.05);
}

.affiliate-logo p {
    color: #ccc;
    font-size: 0.9rem;
    margin: 0;
    text-align: center;
    font-style: italic;
}

.affiliate-social {
    margin-top: var(--spacing-md);
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
}

.affiliate-social h4 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
    font-size: 1.1rem;
    position: relative;
}

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

.affiliate-social .social-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.affiliate-social .social-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.affiliate-social .social-links a:hover {
    color: var(--primary-color);
}

/* Affiliate Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: #2c2c2c;
    margin: 10% auto;
    padding: 30px;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid #444;
}

.modal-header {
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #444;
}

.modal-logo {
    height: 80px;
    margin-bottom: 15px;
    border-radius: 10px;
}

.modal-header h2 {
    color: var(--primary-color);
    margin: 0;
    font-size: 1.8rem;
}

.modal-body {
    text-align: center;
}

.modal-body p {
    color: #ccc;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.modal-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.modal-links a {
    display: inline-block;
    padding: 12px 25px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.modal-links a:hover {
    background-color: #e69500;
    transform: translateY(-2px);
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    top: 15px;
    right: 20px;
    transition: color 0.3s ease;
}

.close:hover,
.close:focus {
    color: var(--primary-color);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    padding: var(--spacing-xl) 0;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 15px;
}

.footer-links h4, .social-media h4 {
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

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

.testimonial-submission {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.testimonial-submission h4 {
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

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

.testimonial-submission .form-group {
    margin-bottom: 15px;
}

.testimonial-submission input,
.testimonial-submission select,
.testimonial-submission textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #555;
    border-radius: 4px;
    background-color: rgba(0, 0, 0, 0.2);
    color: white;
    font-size: 1rem;
}

.testimonial-submission input::placeholder,
.testimonial-submission textarea::placeholder {
    color: #aaa;
}

.testimonial-submission input:focus,
.testimonial-submission select:focus,
.testimonial-submission textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.testimonial-submission textarea {
    resize: vertical;
    min-height: 100px;
}

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

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

.footer-links ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.social-media p {
    color: #ccc;
}

.social-links p {
    margin-bottom: 8px;
}

.social-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.social-links a:hover {
    color: var(--primary-color);
}

.copyright {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #aaa;
    font-size: 0.95rem;
    margin-top: var(--spacing-lg);
}

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

.copyright a:hover {
    color: var(--primary-light);
    text-decoration: underline;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--light-color);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

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

.scroll-to-top:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

/* PWA Installation Prompt Styles */
.install-prompt {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    backdrop-filter: blur(5px);
}

.install-content {
    background: white;
    border-radius: 15px;
    padding: 30px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transform: translateY(20px);
    animation: slideUp 0.3s ease-out forwards;
}

@keyframes slideUp {
    to {
        transform: translateY(0);
    }
}

.install-header {
    margin-bottom: 20px;
}

.install-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
    margin-bottom: 15px;
}

.install-header h3 {
    color: var(--secondary-color);
    margin: 0 0 10px 0;
    font-size: 1.5rem;
}

.install-content p {
    color: var(--text-color);
    margin-bottom: 25px;
    line-height: 1.6;
}

.install-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.install-buttons .btn-primary,
.install-buttons .btn-secondary {
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    min-width: 120px;
}

.install-buttons .btn-primary {
    background: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
}

.install-buttons .btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
}

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

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

/* Header Install Button */
.install-header-btn {
    transition: all 0.3s ease;
}

.install-header-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 165, 0, 0.3);
}

/* Loading Spinner */
.loading-spinner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.loading-spinner.active {
    opacity: 1;
    visibility: visible;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(255, 165, 0, 0.3);
    border-top: 5px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        width: 95%;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .location-content,
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .map-placeholder {
        height: 450px;
    }
    
    .heading-link {
        text-decoration: none;
        color: var(--primary-color);
        font-size: 1.2rem;
        margin-left: 10px;
        transition: var(--transition);
    }
    
    .heading-link:hover {
        color: var(--secondary-color);
        transform: scale(1.2);
    }
    
    .search-share-section {
        margin-top: 30px;
        padding: 25px;
        background-color: var(--accent-color);
        border-radius: 8px;
        box-shadow: var(--shadow);
    }
    
    .search-share-section h3 {
        text-align: center;
        margin-bottom: 20px;
        color: var(--secondary-color);
    }
    
    .search-instructions,
    .share-section {
        margin-bottom: 25px;
        text-align: center;
    }
    
    .search-instructions p,
    .share-section p {
        margin-bottom: 15px;
        font-size: 1.1rem;
    }
    
    .link-container {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-bottom: 10px;
        align-items: center;
        justify-content: center;
    }
    
    #share-link {
        flex: 1;
        min-width: 200px;
        padding: 12px;
        border: 1px solid #ddd;
        border-radius: 4px;
        font-family: var(--font-main);
        font-size: 1rem;
    }
    
    #copy-link-btn {
        white-space: nowrap;
    }
    
    .small-text {
        font-size: 0.9rem;
        color: #666;
        font-style: italic;
        margin: 0;
    }
    
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    /* Enhanced touch targets for tablets */
    input, select, textarea, button {
        min-height: 44px;
        padding: 12px 16px;
    }
    
    /* Better form spacing */
    .form-group {
        margin-bottom: 20px;
    }
    
    /* Enhanced buttons */
    .btn-primary, .btn-secondary {
        min-height: 46px;
        padding: 12px 24px;
        font-size: 1rem;
        -webkit-tap-highlight-color: rgba(255, 165, 0, 0.2);
    }
    
    /* Improved navigation */
    nav ul li a {
        padding: 12px 15px;
        min-height: 46px;
        border-radius: var(--border-radius);
    }
    
    /* Better gallery layout */
    .gallery-grid {
        gap: 16px;
    }
    
    .gallery-item {
        height: 230px;
    }
    
    /* Enhanced testimonial display */
    .testimonial-card {
        padding: 20px;
        margin: 0 14px;
        width: 350px;
    }
    
    /* Better footer spacing */
    .footer-content {
        gap: 25px;
    }
    
    /* Improved touch scrolling */
    body {
        -webkit-overflow-scrolling: touch;
    }
    
    /* Better mobile menu animation */
    nav ul {
        -webkit-transition: left 0.3s ease-out;
        -moz-transition: left 0.3s ease-out;
        -o-transition: left 0.3s ease-out;
        transition: left 0.3s ease-out;
    }
    
    .link-container {
        flex-direction: column;
    }
    
    #share-link {
        min-width: 100%;
        margin-bottom: 10px;
    }
    
    #copy-link-btn {
        width: 100%;
    }
    
    nav ul {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: linear-gradient(135deg, var(--light-color) 0%, #f5f5f5 100%);
        width: 100%;
        text-align: center;
        transition: var(--transition);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        padding: 20px 0;
        margin-top: 0;
        border-top: 1px solid var(--border-color);
    }
    
    nav ul.active {
        left: 0;
    }
    
    nav ul li {
        margin: 8px 0;
    }
    
    header .container {
        flex-direction: row;
        align-items: center;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    section h2 {
        font-size: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .room-types,
    .facility-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--spacing-md);
    }
    
    .footer-links ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-main,
    .affiliate-section {
        align-items: center;
    }
    
    .footer-logo,
    .affiliate-logo {
        align-items: center;
    }
}

@media (max-width: 576px) {
    .hero {
        height: 80vh;
    }
    
    /* Enhanced touch interactions */
    input, select, textarea, button {
        min-height: 44px;
        padding: 12px 15px;
    }
    
    /* Better form spacing */
    .form-group {
        margin-bottom: 22px;
    }
    
    /* Enhanced buttons */
    .btn-primary, .btn-secondary {
        min-height: 46px;
        padding: 12px 22px;
        font-size: 0.95rem;
        -webkit-tap-highlight-color: rgba(255, 165, 0, 0.3);
    }
    
    /* Improved navigation */
    nav ul li a {
        padding: 12px 0;
        min-height: 46px;
    }
    
    /* Better gallery layout */
    .gallery-grid {
        gap: 18px;
    }
    
    .gallery-item {
        height: 220px;
    }
    
    /* Enhanced testimonial display */
    .testimonial-card {
        padding: 22px;
        margin: 0 12px;
    }
    
    /* Better footer spacing */
    .footer-content {
        gap: 28px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    section h2 {
        font-size: 1.8rem;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .room-card,
    .facility-item {
        margin-bottom: 20px;
    }
    
    .logo h1 {
        font-size: 1.5rem;
    }
    
    .logo img {
        height: 40px;
    }
    
    nav ul li {
        margin: 3px 5px;
    }
    
    nav ul li a {
        font-size: 0.9rem;
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    .scroll-to-top {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* Extra small devices (phones, 480px and down) */
@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    /* Enhanced touch targets for better mobile UX */
    input, select, textarea, button {
        min-height: 44px; /* Minimum touch target size */
        padding: 12px 15px;
    }
    
    /* Better spacing for mobile forms */
    .form-group {
        margin-bottom: 25px;
    }
    
    /* Enhanced button touch areas */
    .btn-primary, .btn-secondary {
        min-height: 48px;
        padding: 14px 25px;
        font-size: 1rem;
        /* Add visual feedback for touch */
        -webkit-tap-highlight-color: rgba(255, 165, 0, 0.3);
    }
    
    /* Improved navigation touch targets */
    nav ul li a {
        padding: 15px 0;
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Better spacing for mobile gallery */
    .gallery-grid {
        gap: 15px;
    }
    
    .gallery-item {
        height: 200px;
    }
    
    /* Enhanced testimonial cards for mobile */
    .testimonial-card {
        padding: 25px;
        margin: 0 10px;
    }
    
    /* Better mobile footer layout */
    .footer-content {
        gap: var(--spacing-md);
    }
    
    .footer-main,
    .affiliate-section {
        align-items: center;
    }
    
    .footer-logo,
    .affiliate-logo {
        align-items: center;
    }
    
    /* Improved mobile hero section */
    .hero {
        padding: 20px 0;
    }
    
    .hero-content {
        padding: 0 10px;
    }
    
    .video-series {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .video-container {
        height: 200px;
    }
    
    .hero-content {
        padding: 0 15px;
    }
    
    .hero h1 {
        font-size: 1.6rem;
    }
    
    section h2 {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }
    
    section {
        padding: 50px 0;
    }
    
    .room-types,
    .facility-grid,
    .services-grid,
    .testimonial-grid,
    .gallery-grid {
        gap: 15px;
    }
    
    .price {
        font-size: 1.5rem;
    }
    
    #booking-form,
    .contact-info,
    #contact-form {
        padding: 20px;
    }
    
    .form-group {
        margin-bottom: 15px;
    }
    
    input, select, textarea {
        padding: 10px;
        font-size: 0.9rem;
    }
    
    label {
        font-size: 0.9rem;
    }
}

/* Large desktops (1400px and up) */
@media (min-width: 1400px) {
    .container {
        max-width: 1300px;
    }
    
    .hero h1 {
        font-size: 4rem;
    }
    
    .hero p {
        font-size: 1.8rem;
    }
    
    section h2 {
        font-size: 3rem;
    }
    
    .room-types,
    .facility-grid,
    .services-grid {
        gap: 30px;
    }
}

/* Confirmation Page */
.confirmation {
    background-color: var(--light-color);
    padding: 100px 0;
}

.confirmation-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background-color: var(--light-color);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.confirmation-icon {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.confirmation-content h2 {
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.confirmation-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--text-color);
}

.booking-details {
    background-color: var(--accent-color);
    padding: 30px;
    border-radius: 8px;
    margin: 30px 0;
    text-align: left;
}

.booking-details h3 {
    color: var(--secondary-color);
    margin-bottom: 20px;
    text-align: center;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}

.detail-item:last-child {
    border-bottom: none;
}

.label {
    font-weight: bold;
    color: var(--secondary-color);
}

.confirmation-message {
    background-color: #e8f4e8;
    padding: 20px;
    border-radius: 8px;
    margin: 30px 0;
}

.confirmation-message p {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.confirmation-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.confirmation-actions .btn-primary,
.confirmation-actions .btn-secondary {
    min-width: 200px;
}

/* Videos Section */
.videos {
    background-color: var(--light-color);
    padding: 80px 0;
}

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

.video-item {
    background-color: var(--accent-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.video-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
}

.video-item h3 {
    padding: 20px;
    background-color: var(--primary-color);
    color: var(--light-color);
    text-align: center;
    margin: 0;
}

.video-container {
    width: 100%;
    height: 250px;
    border-radius: 0 0 8px 8px;
    overflow: hidden;
}

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

/* Motivational Videos Section */
.motivational-videos {
    background-color: var(--light-color);
    padding: 60px 0;
}

.motivational-videos .container {
    max-width: 1200px;
}

.motivational-videos h2 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--secondary-color);
}

.video-section {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.video-section .video-container {
    width: 100%;
    height: 250px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
}

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

.video-section .video-container:hover {
    transform: scale(1.03);
    transition: var(--transition);
}

.video-section .video-container:hover .expand-btn {
    opacity: 1;
}

.flyer-download {
    text-align: center;
    margin-top: 30px;
}

.flyer-download .btn-primary {
    margin-right: 15px;
}

/* Flyer Section */
.flyer-section {
    text-align: center;
    padding: 40px 20px;
    background-color: var(--accent-color);
    border-radius: 8px;
    margin-top: 30px;
}

.flyer-section h3 {
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.flyer-preview {
    margin-top: 20px;
}

.flyer-preview img {
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.flyer-preview img:hover {
    transform: scale(1.02);
}

/* Multi-step Booking Form Styles */
.booking-progress {
    margin-bottom: 30px;
    padding: 20px;
    background-color: var(--accent-color);
    border-radius: 8px;
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-bottom: 20px;
}

.progress-steps::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #ddd;
    z-index: 1;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    flex: 1;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #ddd;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.step-label {
    font-size: 0.85rem;
    color: #666;
    text-align: center;
    transition: all 0.3s ease;
}

.step.active .step-number {
    background-color: var(--primary-color);
    color: white;
}

.step.active .step-label {
    color: var(--primary-color);
    font-weight: bold;
}

.step.completed .step-number {
    background-color: #4CAF50;
    color: white;
}

.step.completed .step-label {
    color: #4CAF50;
}

.progress-bar {
    height: 6px;
    background-color: #ddd;
    border-radius: 3px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background-color: var(--primary-color);
    border-radius: 3px;
    transition: width 0.3s ease;
}

.booking-step {
    display: none;
}

.booking-step.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

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

.step-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.review-summary {
    background-color: var(--accent-color);
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 25px;
}

.review-section {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.review-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.review-section h4 {
    color: var(--secondary-color);
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.review-section p {
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.review-section strong {
    color: var(--secondary-color);
}

/* Mobile responsiveness for multi-step form */
@media (max-width: 768px) {
    .booking-progress {
        padding: 15px;
        margin-bottom: 25px;
    }
    
    .progress-steps {
        margin-bottom: 15px;
    }
    
    .step-label {
        font-size: 0.75rem;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .step-navigation {
        flex-direction: column;
        gap: 15px;
    }
    
    .step-navigation button {
        width: 100%;
        margin: 0;
    }
    
    .review-summary {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .booking-progress {
        padding: 12px;
    }
    
    .step-label {
        font-size: 0.7rem;
    }
    
    .step-number {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
    
    .review-section h4 {
        font-size: 1rem;
    }
    
    .review-section p {
        font-size: 0.9rem;
    }
}

/* Page Hero Section */
.page-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('main-flyer.jpeg') center/cover no-repeat;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-bottom: 60px;
}

.page-hero .hero-content h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-hero .hero-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.section-header p {
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Filter Controls */
.filter-controls {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.filter-btn {
    padding: 10px 20px;
    background-color: #f0f0f0;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn.active,
.filter-btn:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Booking Options Container */
.booking-options-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.booking-option-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.booking-option-card:hover {
    transform: translateY(-5px);
}

.booking-option-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.booking-option-card .option-note {
    font-style: italic;
    color: #666;
    margin-top: 15px;
}

/* Direct Booking Section */
.direct-booking-section {
    background: var(--accent-color);
    padding: 40px;
    border-radius: 10px;
    margin-bottom: 50px;
}

.direct-booking-section h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
}

/* Booking Progress */
.booking-progress {
    background: white;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
}

.progress-steps::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #ddd;
    z-index: 1;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    flex: 1;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #ddd;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.step-label {
    font-size: 0.85rem;
    color: #666;
    text-align: center;
    transition: all 0.3s ease;
}

.step.active .step-number {
    background-color: var(--primary-color);
    color: white;
}

.step.active .step-label {
    color: var(--primary-color);
    font-weight: bold;
}

.progress-bar {
    height: 6px;
    background-color: #ddd;
    border-radius: 3px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background-color: var(--primary-color);
    border-radius: 3px;
    transition: width 0.3s ease;
}

.booking-step {
    display: none;
}

.booking-step.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.step-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.review-summary {
    background-color: var(--accent-color);
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 25px;
}

.review-section {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.review-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.review-section h4 {
    color: var(--secondary-color);
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.review-section p {
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.review-section strong {
    color: var(--secondary-color);
}

/* Room Types */
.room-filters {
    margin-bottom: 30px;
}

.room-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.room-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

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

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

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

.room-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.room-info {
    padding: 25px;
}

.room-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 15px 0;
}

.feature {
    background-color: #f8f9fa;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.room-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.room-actions .btn-primary,
.room-actions .btn-secondary {
    flex: 1;
}

/* Gallery Grid */
.gallery-filters {
    margin-bottom: 30px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    height: 250px;
}

.gallery-item img,
.gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    border-radius: calc(var(--border-radius) - 2px);
}

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

.expand-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: var(--transition);
    opacity: 0;
    font-size: 1rem;
    backdrop-filter: blur(5px);
}

.gallery-item:hover .expand-btn {
    opacity: 1;
}

.expand-btn:hover {
    background: rgba(255, 165, 0, 0.9);
    transform: scale(1.1);
}



.flyer-download-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 20px;
    text-align: center;
}

.flyer-download-container h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.contact-info h3 {
    color: var(--primary-color);
    margin-bottom: 30px;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    gap: 15px;
}

.contact-icon {
    font-size: 1.5rem;
    min-width: 30px;
}

.contact-details h4 {
    margin: 0 0 5px 0;
    color: var(--primary-color);
}

.contact-details p {
    margin: 0;
    line-height: 1.6;
}

.contact-details a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

.contact-form-container {
    background: var(--accent-color);
    padding: 30px;
    border-radius: 10px;
}

.contact-form-container h3 {
    color: var(--primary-color);
    margin-bottom: 25px;
    text-align: center;
}

/* Map Container */
.map-container {
    margin: 40px 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.directions h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Emergency Contact */
.emergency-contact {
    background: var(--accent-color);
    padding: 50px 0;
    margin: 50px 0;
}

.emergency-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.emergency-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.emergency-icon {
    font-size: 2rem;
}

.emergency-info h4 {
    margin: 0 0 5px 0;
    color: var(--primary-color);
}

.emergency-info p {
    margin: 0;
    color: #666;
}

/* About Content */
.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.about-text h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.story-highlights {
    margin-top: 30px;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
    padding: 20px;
    background: var(--accent-color);
    border-radius: 8px;
}

.highlight-icon {
    font-size: 1.5rem;
    min-width: 30px;
}

.highlight-item h3 {
    margin: 0 0 10px 0;
    color: var(--primary-color);
}

.highlight-item p {
    margin: 0;
    color: #555;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.team-member {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.member-image {
    height: 200px;
    overflow: hidden;
}

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

.member-info {
    padding: 20px;
}

.member-info h3 {
    color: var(--primary-color);
    margin: 15px 0 10px 0;
}

.contact-info {
    margin-top: 15px;
}

.contact-info p {
    margin: 5px 0;
    color: #666;
}

/* Awards Section */
.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.award-item {
    text-align: center;
    padding: 30px;
    background: var(--accent-color);
    border-radius: 10px;
}

.award-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.award-item h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.award-item p {
    color: #666;
    margin: 0;
}

/* Booking Benefits */
.booking-benefits {
    background: var(--accent-color);
    padding: 50px 0;
    margin: 50px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-card {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.benefit-card h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.benefit-card p {
    color: #666;
    margin: 0;
}

/* Gallery Features */
.gallery-features {
    background: var(--accent-color);
    padding: 50px 0;
    margin: 50px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.feature-card h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.feature-card p {
    color: #666;
    margin: 0;
}

/* Rooms Preview Section */
.rooms-preview {
    padding: 80px 0;
    background-color: var(--light-color);
}

.rooms-preview .section-header {
    margin-bottom: 40px;
}

.rooms-preview .section-header a {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.rooms-preview .section-header a:hover {
    background-color: #e69500;
}

/* Gallery Preview Section */
.gallery-preview {
    padding: 80px 0;
    background-color: white;
}

.gallery-preview .section-header {
    margin-bottom: 40px;
}

.gallery-preview .section-header a {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.gallery-preview .section-header a:hover {
    background-color: #e69500;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: var(--spacing-xl) 0;
    margin: var(--spacing-xl) 0;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: var(--spacing-sm);
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-content p {
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto var(--spacing-lg);
    opacity: 0.95;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

/* Responsive adjustments for new sections */
@media (max-width: 768px) {
    .page-hero {
        height: 300px;
    }
    
    .page-hero .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .booking-options-container {
        grid-template-columns: 1fr;
    }
    
    .room-types {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .cta {
        padding: var(--spacing-lg) 0;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .section-header {
        text-align: center;
        margin-bottom: var(--spacing-lg);
    }
    
    .section-header h2 {
        font-size: 2.2rem;
        margin-bottom: var(--spacing-sm);
    }
    
    .section-header p {
        font-size: 1.1rem;
    }
    
    .filter-controls {
        gap: var(--spacing-xs);
    }
    
    .filter-btn {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .page-hero {
        height: 250px;
    }
    
    .page-hero .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .page-hero .hero-content p {
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .filter-controls {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-btn {
        width: 100%;
        max-width: 200px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
}

/* Responsive Footer Adjustments */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-main {
        gap: 20px;
    }
    
    .affiliate-section {
        order: 2;
    }
    
    .footer-links {
        order: 3;
    }
}

@media (max-width: 480px) {
    .footer-content {
        gap: 15px;
    }
    
    .affiliate-social h4::after {
        width: 30px;
    }
    
    .footer-main {
        gap: 15px;
    }
}

/* Payment Page Styles */
.payment-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

.payment-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.progress-steps {
    display: flex;
    background: #f8f9fa;
    padding: 20px;
    border-bottom: 1px solid #e9ecef;
}

.step {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 0 20px;
}

.step:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    height: 2px;
    background: #e9ecef;
    z-index: 1;
}

.step.completed::after {
    background: #28a745;
}

.step.completed .step-number {
    background: #28a745;
    color: white;
}

.step.active .step-number {
    background: #ff6b35;
    color: white;
}

.step .step-number {
    display: inline-block;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #6c757d;
    color: white;
    line-height: 30px;
    font-weight: bold;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.step .step-label {
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 500;
}

.step.completed .step-label {
    color: #28a745;
}

.step.active .step-label {
    color: #ff6b35;
}

.payment-content {
    padding: 40px;
    position: relative;
}

.payment-header {
    text-align: center;
    margin-bottom: 40px;
}

.payment-header h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 10px;
    font-weight: 700;
}

.payment-header p {
    color: #666;
    font-size: 1.1rem;
}

.payment-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.payment-summary {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #28a745;
}

.payment-summary h3 {
    color: #28a745;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #e9ecef;
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-item .label {
    color: #666;
    font-weight: 500;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    margin-top: 15px;
    border-top: 2px solid #dee2e6;
    font-weight: bold;
    font-size: 1.1rem;
}

.amount {
    color: #28a745;
    font-size: 1.2rem;
}

.payment-options {
    background: #fff;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    overflow: hidden;
}

.payment-options h3 {
    background: #f8f9fa;
    padding: 15px 25px;
    margin: 0;
    color: #333;
    border-bottom: 1px solid #e9ecef;
}

.payment-option {
    border-bottom: 1px solid #e9ecef;
    transition: all 0.3s ease;
    cursor: pointer;
}

.payment-option:last-child {
    border-bottom: none;
}

.payment-option:hover {
    background: #f8f9fa;
}

.payment-option.active {
    background: #e8f5e8;
    border-left: 4px solid #28a745;
}

.option-header {
    padding: 20px 25px;
    display: flex;
    align-items: center;
}

.option-header input[type="radio"] {
    margin-right: 15px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.option-header label {
    display: flex;
    align-items: center;
    cursor: pointer;
    flex: 1;
}

.option-icon {
    margin-right: 15px;
    width: 40px;
    height: 40px;
    background: #f1f3f4;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.option-info h4 {
    margin: 0 0 5px 0;
    color: #333;
    font-size: 1.1rem;
}

.option-info p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

.option-details {
    padding: 0 25px 20px 25px;
    display: none;
}

.payment-option.active .option-details {
    display: block;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.security-badge {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: #28a745;
    font-size: 0.9rem;
}

.accepted-cards {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.accepted-cards span {
    background: #e9ecef;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    color: #495057;
}

.bank-details p {
    margin: 5px 0;
    font-size: 0.95rem;
}

.warning-message {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 5px;
    padding: 12px;
    color: #856404;
    font-size: 0.9rem;
}

.payment-actions {
    grid-column: 1 / -1;
    margin-top: 30px;
}

.payment-security {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.security-feature {
    display: flex;
    align-items: center;
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.security-feature:hover {
    transform: translateY(-2px);
}

.feature-icon {
    font-size: 1.5rem;
    margin-right: 12px;
    flex-shrink: 0;
}

.feature-info h4 {
    margin: 0 0 3px 0;
    color: #333;
    font-size: 1rem;
}

.feature-info p {
    margin: 0;
    color: #666;
    font-size: 0.85rem;
}

.payment-buttons {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 25px;
}

.payment-buttons .btn {
    flex: 1;
    justify-content: center;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 15px 20px;
    font-size: 1rem;
}

.btn-icon {
    font-size: 1.2rem;
}

.payment-help {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.payment-help p {
    margin: 5px 0;
    color: #666;
}

.contact-info {
    color: #007bff;
    font-weight: 500;
}

.loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.loading-content h3 {
    margin: 15px 0 5px 0;
    color: #333;
}

.loading-content p {
    color: #666;
    margin: 0;
}

/* Responsive Payment Page Styles */
@media (max-width: 768px) {
    .payment-section {
        padding: 20px 0;
    }
    
    .payment-content {
        padding: 20px;
    }
    
    .payment-header h2 {
        font-size: 1.8rem;
    }
    
    .payment-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .payment-security {
        grid-template-columns: 1fr;
    }
    
    .payment-buttons {
        flex-direction: column;
    }
    
    .payment-buttons .btn {
        width: 100%;
    }
}

/* PWA Installation Modal Styles */
.install-modal, .ios-modal {
    background-color: #fff;
    color: var(--text-color);
}

.install-modal .modal-header, .ios-modal .modal-header {
    border-bottom: 2px solid var(--primary-color);
}

.install-modal .modal-header h2, .ios-modal .modal-header h2 {
    color: var(--secondary-color);
    font-size: 1.6rem;
    margin: 10px 0 0 0;
}

.install-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 25px 0;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: var(--accent-color);
    border-radius: 8px;
    text-align: left;
}

.benefit-icon {
    font-size: 1.5rem;
}

.install-btn {
    width: 100%;
    padding: 15px;
    margin: 15px 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.ios-instructions {
    text-align: left;
    margin: 20px 0;
}

.instruction-step {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    padding: 12px;
    background: var(--accent-color);
    border-radius: 8px;
}

.step-number {
    background: var(--primary-color);
    color: white;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 3px;
}

.ios-share-icon {
    display: inline-block;
    background: #007AFF;
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.9rem;
    margin: 0 5px;
}

.ios-visual-guide {
    margin: 20px 0;
    text-align: center;
}

.ios-visual-guide img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

#install-menu-item {
    transition: all 0.3s ease;
}

#install-menu-item:hover {
    transform: translateY(-2px);
}

#install-menu-item a {
    background: linear-gradient(45deg, var(--primary-color), var(--primary-dark));
    color: white !important;
    padding: 8px 15px !important;
    border-radius: 20px;
    font-weight: 600;
    transition: all 0.3s ease;
}

#install-menu-item a:hover {
    background: linear-gradient(45deg, var(--primary-dark), var(--primary-color));
    box-shadow: 0 4px 15px rgba(255, 165, 0, 0.4);
}

/* Responsive styles for installation modals */
@media (max-width: 768px) {
    .install-benefits {
        grid-template-columns: 1fr;
    }
    
    .instruction-step {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .step-number {
        margin: 0 auto;
    }
    
    .modal-content {
        width: 95%;
        margin: 5% auto;
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .install-benefits {
        gap: 10px;
    }
    
    .benefit-item {
        padding: 8px;
        font-size: 0.9rem;
    }
    
    .modal-header h2 {
        font-size: 1.4rem;
    }
    
    .install-btn {
        padding: 12px;
        font-size: 1rem;
    }
}

/* iOS Guide Placeholder Styles */
.ios-guide-placeholder {
    background: var(--accent-color);
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    text-align: center;
}

.ios-guide-placeholder p {
    margin-bottom: 15px;
    color: var(--secondary-color);
    font-weight: 600;
}

.ios-guide-steps {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 10px;
}

.guide-step {
    background: var(--primary-color);
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    min-width: 100px;
}

@media (max-width: 768px) {
    .ios-guide-steps {
        flex-direction: column;
        align-items: center;
    }
    
    .guide-step {
        min-width: 150px;
    }
}
