/* Root Variables */
:root {
    --primary-color: #1a1a1a;
    --accent-color: #FF9F1C;
    --accent-hover: #e88f19;
    --blue-accent: #4FB5FF;
    --text-color: #333;
    --light-bg: #f9f9f9;
    --gray-light: #f5f5f5;
    --gray-medium: #666;
    --transition-smooth: all 0.3s ease;
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 15px 40px rgba(0, 0, 0, 0.15);
    --container-width: 1400px;
    --header-height: 80px;
}



/* Navigation Core Styles */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition-smooth);
}

.main-nav.scrolled {
    box-shadow: var(--shadow-sm);
}

.main-nav.nav-hidden {
    transform: translateY(-100%);
}

.nav-container {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    max-width: var(--container-width);
    margin: 0 auto;
}

/* Logo Styles */
.logo {
    padding: 0.5rem 0;
}

.logo a {
    text-decoration: none;
    display: block;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 2px;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.logo-accent {
    font-size: 1.2rem;
    color: var(--accent-color);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    padding: 0 0.3rem;
}

/* Navigation Links */
.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    color: var(--primary-color);
    text-decoration: none;
}

.nav-links a:not(.primary-btn)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: var(--transition-smooth);
}

.nav-links a:not(.primary-btn):hover::after {
    width: 100%;
}

/* Primary Button */
.nav-links .primary-btn {
    background: var(--accent-color);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.nav-links .primary-btn:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

/* Language Selector */
.language-selector {
    position: relative;
    padding: 0 1rem;
}

.current-lang {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 0.5rem;
    gap: 0.5rem;
}

.current-lang img {
    width: 24px;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.current-lang .fa-chevron-down {
    font-size: 12px;
    color: var(--primary-color);
    transition: transform 0.2s ease;
}

.language-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    min-width: 180px;
    z-index: 1000;
    padding: 0.5rem;
    border: 1px solid #eee;
}

.language-selector:hover .language-dropdown {
    display: block;
}

.language-selector:hover .fa-chevron-down {
    transform: rotate(180deg);
}

.language-dropdown li {
    list-style: none;
}

.language-dropdown li a {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    gap: 0.75rem;
    color: var(--primary-color);
    transition: all 0.2s ease;
    border-radius: 8px;
}

.language-dropdown li a:hover {
    background-color: var(--gray-light);
}

.language-dropdown li a.active {
    background-color: var(--gray-light);
}

.language-dropdown img {
    width: 24px;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.language-dropdown span {
    font-size: 0.95rem;
    font-weight: 500;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
    border: none;
    background: transparent;
    margin-left: auto;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--primary-color);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 1rem;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem;
        height: calc(100vh - var(--header-height));
        overflow-y: auto;
        z-index: 1000;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a:not(.primary-btn) {
        display: block;
        padding: 1rem 0;
        width: 100%;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    /* Language selector mobile adjustments */
    .language-selector {
        width: 100%;
        padding: 0;
    }

    .language-dropdown {
        position: static;
        width: 100%;
        box-shadow: none;
        border-radius: 0;
        background: transparent;
        display: none;
        border: none;
        padding: 0;
    }

    .language-dropdown li a {
        padding: 1rem;
        border-radius: 0;
    }

    /* Primary button mobile adjustments */
    .nav-links .primary-btn {
        width: 100%;
        text-align: center;
        margin-top: 1rem;
        display: block;
    }

    /* Show nav-links when .active is added */
.nav-links.active {
    display: flex !important; /* Ensure it overrides any previous display settings */
    flex-direction: column;
}

/* Transform the mobile menu button into a close icon */
.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

}


/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    font-family: 'Raleway', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: white;
}

img {
    max-width: 100%;
    height: auto;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.section-header p {
    font-size: 1.2rem;
    color: var(--gray-medium);
    max-width: 600px;
    margin: 0 auto;
}

/* Layout & Container */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 6rem 0;
}

/* Welcome Section */
.welcome {
    padding: 6rem 0;
    background-color: white;
}

.welcome-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.welcome-title {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 400;
}

.welcome-subtitle {
    font-size: 1.4rem;
    color: var(--gray-medium);
    margin-bottom: 2rem;
    font-weight: 300;
}

.welcome-description {
    font-size: 1.1rem;
    color: var(--gray-medium);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.welcome-features {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    text-align: left;
}

.feature-item i {
    font-size: 1.5rem;
    color: var(--accent-color);
    background: rgba(255, 159, 28, 0.1);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.feature-text h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.feature-text p {
    font-size: 1rem;
    color: var(--gray-medium);
    margin: 0;
}

/* Owners Section */
.owners-section {
    padding: 8rem 0;
    background-color: white;
    overflow: hidden;
}

.owners-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.accent-subtitle {
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
    display: block;
}

.owners-intro h2 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.location-tag {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--light-bg);
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--gray-medium);
}

.owners-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.owners-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.owners-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.owners-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.owners-card:hover .owners-image img {
    transform: scale(1.05);
}

.owners-message {
    padding: 2rem;
    background: white;
    position: relative;
}

.message-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-medium);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.signature {
    display: block;
    color: var(--accent-color);
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
}

.destination-info {
    padding: 2rem;
}

.info-box {
    background: var(--light-bg);
    padding: 2.5rem;
    border-radius: 20px;
}

.info-box h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.info-box p {
    color: var(--gray-medium);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.travel-info {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
}

.travel-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 10px;
}

.travel-item i {
    color: var(--accent-color);
    font-size: 1.5rem;
}

.travel-item div {
    display: flex;
    flex-direction: column;
}

.airport {
    font-weight: 500;
    color: var(--primary-color);
}

.distance {
    font-size: 0.9rem;
    color: var(--gray-medium);
}

.attractions {
    margin-bottom: 2rem;
}

.attractions h4, 
.experience h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.attraction-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.attraction-tags span {
    padding: 0.5rem 1rem;
    background: white;
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--gray-medium);
}

.experience p {
    margin-bottom: 0;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    width: 100%;
    padding: 6rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('/assets/images/8831.JPEG');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -2;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: -1;
}

.hero-content {
    width: 100%;
    max-width: 1000px;
    text-align: center;
    padding: 3rem;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    margin-bottom: 2rem;
    z-index: 1;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: 1.5rem;
    font-weight: 400;
    letter-spacing: 2px;
    line-height: 1.2;
}

.hero-content p {
    font-size: clamp(1.1rem, 3vw, 1.4rem);
    margin-bottom: 2.5rem;
    font-weight: 300;
    letter-spacing: 1px;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: clamp(1.5rem, 3vw, 3rem);
    margin: 2.5rem 0;
    flex-wrap: wrap;
}

/* Quick Inquiry Form */
.quick-inquiry {
    width: 100%;
    max-width: 800px;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    z-index: 1;
    margin-top: 2rem;
}

.inquiry-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
    width: 100%;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 500;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    height: 44px;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 2px rgba(255, 159, 28, 0.1);
}

/* Buttons */
.primary-btn,
.secondary-btn {
    min-width: 140px;
    text-align: center;
    padding: 1rem 1.5rem;
    margin: 0;
}

.primary-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--accent-color);
    color: white;
    border-radius: 5px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-smooth);
    border: none;
    cursor: pointer;
}

.primary-btn:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.secondary-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: transparent;
    color: white;
    border: 2px solid white;
    border-radius: 5px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-smooth);
    margin-left: 1rem;
}

.secondary-btn:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: white;
    padding: 6rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* Button Groups */
.cta-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Amenities Section */
.amenities {
    background-color: var(--light-bg);
    padding: 8rem 0;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.amenity-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.amenity-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.amenity-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--gray-light);
}

.amenity-header i {
    font-size: 1.5rem;
    color: var(--accent-color);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 159, 28, 0.1);
    border-radius: 50%;
}

.amenity-list {
    list-style: none;
}

.amenity-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    color: var(--gray-medium);
}

.amenity-list li i {
    color: var(--accent-color);
}

/* Gallery Section */
.gallery {
    padding: 8rem 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    height: 300px;
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
    height: 615px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    padding: 2rem;
    color: white;
    opacity: 0;
    transition: var(--transition-smooth);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Location Section */
.location {
    background-color: var(--light-bg);
    padding: 8rem 0;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.location-map {
    height: 500px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.distance-item {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
}

.distance-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

/* Booking Section */
.booking {
    padding: 8rem 0;
}

.booking-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.rate-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.rate-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.rate-card.featured {
    background: var(--accent-color);
    color: white;
    transform: translateY(-10px);
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1100;
}

.modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
}

.modal img {
    max-height: 90vh;
    max-width: 90vw;
    object-fit: contain;
}

.modal .close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    z-index: 1110;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    transition: var(--transition-smooth);
}

.modal .close:hover {
    background: rgba(0, 0, 0, 0.8);
}

.modal .prev,
.modal .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 1rem;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition-smooth);
}

.modal .prev:hover,
.modal .next:hover {
    background: rgba(0, 0, 0, 0.8);
}

.modal .prev { left: 20px; }
.modal .next { right: 20px; }

.modal-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 1rem;
    text-align: center;
}

/* Loading States */
.loading {
    position: relative;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
}

.loading::before {
    content: '';
    width: 20px;
    height: 20px;
    border: 2px solid var(--accent-color);
    border-top-color: transparent;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: spin 1s linear infinite;
}

/* Utility Classes */
.text-center { text-align: center; }
.text-right { text-align: right; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.p-1 { padding: 1rem; }
.p-2 { padding: 2rem; }
.p-3 { padding: 3rem; }

/* Animations */
@keyframes spin {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(0);
    }
}

/* Notifications */
.notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 1rem 2rem;
    border-radius: 5px;
    background: white;
    box-shadow: var(--shadow-md);
    transform: translateY(100px);
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: 1200;
}

.notification.show {
    transform: translateY(0);
    opacity: 1;
}

.notification.success {
    background: #4CAF50;
    color: white;
}

.notification.error {
    background: #f44336;
    color: white;
}

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--light-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-hover);
}

/* Print Styles */
@media print {
    .quick-inquiry,
    .booking-form,
    .gallery-overlay,
    .modal {
        display: none !important;
    }

    body {
        color: black;
    }

    .hero {
        height: auto;
        background: none !important;
        color: black;
    }

    .hero-content {
        background: none;
        padding: 0;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-content h1 {
        font-size: 3.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .rate-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .location-content,
    .booking-content {
        grid-template-columns: 1fr;
    }
    
    .quick-inquiry {
        width: 95%;
    }
    
    .inquiry-form {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-content {
        padding: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .amenities-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item.large {
        grid-column: auto;
        grid-row: auto;
        height: 300px;
    }
    
    .location-map {
        height: 400px;
        order: -1;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .quick-inquiry {
        position: relative;
        transform: none;
        left: 0;
        margin: 2rem auto;
    }
}



@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .amenity-card,
    .distance-item {
        padding: 1.5rem;
    }
    
    .rate-cards {
        grid-template-columns: 1fr;
    }
    
    .primary-btn,
    .secondary-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .section-padding {
        padding: 4rem 0;
    }
}