@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
    --primary-navy: #0b1329;
    --secondary-navy: #1c2541;
    --dark-blue: #0f172a;
    --gold: #b4975a;
    --gold-light: #c5a880;
    --gold-dark: #8e7343;
    --gold-hover: #d4af37;
    --bg-light: #f8fafc;
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --text-light: #f8fafc;
    --border-color: #e2e8f0;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 20px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

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

input, select, button, textarea {
    font-family: inherit;
    font-size: inherit;
    outline: none;
    border: none;
}

/* Common Layout Components */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

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

.section-subtitle {
    font-family: 'Inter', sans-serif;
    color: var(--gold);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}

.section-title {
    font-size: 36px;
    color: var(--primary-navy);
    margin-bottom: 15px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background-color: var(--gold);
    margin: 15px auto 0;
}

.section-description {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 50px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-gold {
    background-color: var(--gold);
    color: #ffffff;
}

.btn-gold:hover {
    background-color: var(--gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(180, 151, 90, 0.4);
}

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

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

.btn-dark {
    background-color: var(--primary-navy);
    color: #ffffff;
}

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

/* Top Bar */
.top-bar {
    background-color: var(--primary-navy);
    color: var(--text-light);
    font-size: 13px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-info {
    display: flex;
    gap: 20px;
}

.top-bar-info span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar-info svg {
    width: 14px;
    height: 14px;
    fill: var(--gold-light);
}

.top-bar-social {
    display: flex;
    align-items: center;
    gap: 15px;
}

.top-bar-social a:hover {
    color: var(--gold-light);
}

.top-bar-social svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

.lang-select {
    background: transparent;
    color: inherit;
    border: none;
    cursor: pointer;
    font-weight: 500;
}

.lang-select option {
    background-color: var(--primary-navy);
    color: white;
}

/* Header */
header {
    position: absolute;
    top: 45px;
    left: 0;
    width: 100%;
    z-index: 100;
    transition: var(--transition-smooth);
}

header.sticky {
    position: fixed;
    top: 0;
    background-color: var(--primary-navy);
    box-shadow: var(--shadow-md);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    width: 180px;
    height: auto;
}

.logo img {
    height: 50px;
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    color: #ffffff;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.5px;
    position: relative;
    padding: 8px 0;
}

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

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

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

/* Mobile Nav Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: #ffffff;
    transition: var(--transition-smooth);
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    color: #ffffff;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(11, 19, 41, 0.7), rgba(11, 19, 41, 0.4));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding-top: 80px;
}

.hero-subtitle {
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--gold-light);
    margin-bottom: 15px;
    display: block;
}

.hero h1 {
    font-size: 56px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 35px;
    max-width: 600px;
    color: rgba(255, 255, 255, 0.9);
}

/* Booking Bar */
.booking-bar-wrapper {
    position: absolute;
    bottom: -45px;
    left: 0;
    width: 100%;
    z-index: 10;
}

.booking-bar {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    padding: 25px;
    display: grid;
    grid-template-columns: repeat(4, 1fr) auto;
    gap: 20px;
    align-items: flex-end;
}

.booking-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.booking-field label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 1px;
}

.booking-input-wrapper {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 10px 15px;
    gap: 10px;
}

.booking-input-wrapper svg {
    width: 16px;
    height: 16px;
    fill: var(--gold);
}

.booking-input-wrapper input,
.booking-input-wrapper select {
    width: 100%;
    background: transparent;
    color: var(--text-dark);
    font-weight: 500;
}

.booking-bar button {
    height: 48px;
    white-space: nowrap;
    padding: 0 35px;
}

/* About Section */
.about-section {
    padding-top: 130px; /* offset the overlapping booking bar */
}

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

.about-images {
    position: relative;
}

.about-img-main {
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.about-content-inner {
    padding-left: 20px;
}

.about-content-inner .section-title {
    text-align: left;
}

.about-content-inner .section-title::after {
    margin: 15px 0 0;
}

.about-description {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 10px;
    margin-bottom: 40px;
}

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

.feature-icon-wrapper {
    width: 45px;
    height: 45px;
    background-color: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.feature-item:hover .feature-icon-wrapper {
    background-color: var(--gold-light);
    border-color: var(--gold-light);
}

.feature-icon-wrapper svg {
    width: 20px;
    height: 20px;
    fill: var(--gold-dark);
    transition: var(--transition-smooth);
}

.feature-item:hover .feature-icon-wrapper svg {
    fill: #ffffff;
}

.feature-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-navy);
}

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

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

.room-card {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition-smooth);
    border: 1px solid var(--border-color);
}

.room-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold-light);
}

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

.room-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

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

.room-details {
    padding: 25px;
}

.room-details h3 {
    font-size: 20px;
    color: var(--primary-navy);
    margin-bottom: 15px;
}

.room-meta {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 15px;
    margin-bottom: 20px;
    font-size: 12px;
    color: var(--text-muted);
}

.room-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.room-meta svg {
    width: 14px;
    height: 14px;
    fill: var(--gold);
}

.room-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.room-actions .btn {
    width: 100%;
    text-align: center;
}

.rooms-action-wrapper {
    margin-top: 50px;
}

/* Services Section */
.services-section {
    background-color: var(--primary-navy);
    color: #ffffff;
}

.services-section .section-title {
    color: #ffffff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 15px;
}

.service-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 20px 10px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-smooth);
}

.service-card:hover {
    background-color: var(--gold);
    transform: translateY(-5px);
    border-color: var(--gold);
}

.service-icon-wrapper {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon-wrapper {
    background-color: #ffffff;
}

.service-icon-wrapper svg {
    width: 24px;
    height: 24px;
    fill: var(--gold-light);
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon-wrapper svg {
    fill: var(--primary-navy);
}

.service-card h4 {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Gallery Section */
.gallery-section {
    background-color: #ffffff;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.filter-btn {
    background-color: var(--bg-light);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

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

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

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    height: 250px;
    cursor: pointer;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(11, 19, 41, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

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

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay svg {
    width: 35px;
    height: 35px;
    fill: var(--gold-light);
}

.gallery-action {
    margin-top: 40px;
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--primary-navy);
    background-image: linear-gradient(135deg, var(--primary-navy) 0%, var(--secondary-navy) 100%);
    color: white;
    position: relative;
}

.testimonials-section .section-title {
    color: white;
}

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

.testimonials-slider {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-slide {
    min-width: 100%;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background-color: #ffffff;
    color: var(--text-dark);
    padding: 35px 25px;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.testimonial-card svg.quote-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 25px;
    height: 25px;
    fill: rgba(180, 151, 90, 0.15);
}

.testimonial-rating {
    color: var(--gold);
    margin-bottom: 15px;
}

.testimonial-rating svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

.testimonial-text {
    font-size: 14px;
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.testimonial-author {
    font-weight: 700;
    color: var(--primary-navy);
    font-size: 15px;
}

.testimonials-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.dot {
    width: 10px;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.dot.active {
    background-color: var(--gold);
    width: 25px;
    border-radius: 5px;
}

/* Footer Section */
footer {
    background-color: #070c1a;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-top {
    padding: 80px 0 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-col h3 {
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.footer-about .footer-logo {
    width: 160px;
    margin-bottom: 20px;
}

.footer-about p {
    margin-bottom: 25px;
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
}

.footer-social a:hover {
    background-color: var(--gold);
    color: var(--primary-navy);
    border-color: var(--gold);
}

.footer-social svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

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

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

.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    line-height: 1.5;
}

.footer-contact svg {
    width: 18px;
    height: 18px;
    fill: var(--gold-light);
    flex-shrink: 0;
}

.footer-map-col {
    display: flex;
    flex-direction: column;
}

.footer-map-container {
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid var(--gold-light);
    box-shadow: var(--shadow-md);
    height: 180px;
    width: 100%;
}

.footer-bottom {
    padding: 25px 0;
    font-size: 13px;
}

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

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a:hover {
    color: white;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    cursor: pointer;
    transition: var(--transition-smooth);
    animation: bounce 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #128c7e;
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: currentColor;
}

.whatsapp-tooltip {
    position: absolute;
    right: 75px;
    background-color: #ffffff;
    color: var(--text-dark);
    padding: 8px 15px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: var(--shadow-md);
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
    border: 1px solid var(--border-color);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 10px;
    height: 10px;
    background-color: #ffffff;
    border-top: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
}

/* Lightbox Modal */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(11, 19, 41, 0.95);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    max-width: 80%;
    max-height: 80%;
    position: relative;
}

.lightbox-content img {
    border-radius: 8px;
    border: 3px solid var(--gold-light);
    box-shadow: var(--shadow-lg);
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 30px;
    cursor: pointer;
}

/* Booking Success Modal */
.booking-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(11, 19, 41, 0.8);
    z-index: 1001;
    display: none;
    align-items: center;
    justify-content: center;
}

.booking-modal-content {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    border-top: 5px solid var(--gold);
    box-shadow: var(--shadow-lg);
    position: relative;
}

.booking-modal-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(37, 211, 102, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.booking-modal-icon svg {
    width: 30px;
    height: 30px;
    fill: #25d366;
}

.booking-modal-content h3 {
    font-size: 24px;
    color: var(--primary-navy);
    margin-bottom: 15px;
}

.booking-modal-content p {
    color: var(--text-muted);
    margin-bottom: 25px;
    font-size: 14px;
}

/* Animations */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-12px);
    }
    60% {
        transform: translateY(-6px);
    }
}

/* SEO Subpage Specific CSS styles */
.seo-article {
    max-width: 800px;
    margin: 0 auto;
    font-size: 16px;
    color: #334155;
    line-height: 1.8;
}

.seo-article h2 {
    font-size: 28px;
    color: var(--primary-navy);
    margin: 40px 0 20px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
}

.seo-article p {
    margin-bottom: 20px;
}

.seo-article ul {
    margin-bottom: 20px;
    padding-left: 20px;
    list-style: disc;
}

.seo-article li {
    margin-bottom: 10px;
}

.seo-faq {
    margin-top: 50px;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
}

.faq-question {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
}

.faq-answer {
    color: var(--text-muted);
    font-size: 15px;
}

/* Media Queries for Responsiveness */
@media (max-width: 1200px) {
    .rooms-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-col:first-child {
        grid-column: span 2;
    }
}

@media (max-width: 1024px) {
    .booking-bar {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .booking-bar button {
        grid-column: span 2;
        width: 100%;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-slide {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    header {
        top: 0;
        background-color: var(--primary-navy);
    }
    
    .nav-container {
        padding: 10px 15px;
    }

    .logo img {
        height: 35px;
    }

    .nav-container .btn-outline {
        padding: 6px 12px;
        font-size: 11px;
    }
    
    .top-bar {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 60px);
        background-color: var(--primary-navy);
        flex-direction: column;
        align-items: center;
        padding: 40px 0;
        transition: var(--transition-smooth);
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links a {
        font-size: 18px;
    }

    .hero {
        height: auto;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 120px 0 60px;
    }
    
    .hero h1 {
        font-size: 38px;
    }
    
    .booking-bar-wrapper {
        position: relative;
        bottom: 0;
        margin-top: 30px;
        padding: 0 15px;
    }
    
    .booking-bar {
        grid-template-columns: 1fr;
    }
    
    .booking-bar button {
        grid-column: span 1;
    }
    
    .about-section {
        padding-top: 50px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-col:first-child {
        grid-column: span 1;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}
