/* ========== Variables & Reset ========== */
:root {
    --teal: #007178;
    --navy: #0C4DA2;
    --dark: #1a1a2e;
    --dark-bg: #222222;
    --gold: #c9a96e;
    --accent: #5fa9a5;
    --white: #ffffff;
    --light: #f5f5f5;
    --gray: #6c757d;
    --light-gray: #e9ecef;
    --font-primary: 'Roboto', sans-serif;
    --font-heading: 'Spectral', serif;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-hover: 0 8px 30px rgba(0,0,0,0.15);
    --radius: 4px;
    --transition: all 0.3s ease;
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: #333;
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul { list-style: none; }

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========== Navbar ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(5px);
    transition: background 0.5s ease, box-shadow 0.5s ease;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.95);
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

/* Logo */
.logo {
    flex-shrink: 0;
}

.logo img {
    height: 45px;
    width: auto;
}

/* Nav Links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    font-size: 0.85rem;
    font-weight: 400;
    color: rgba(255,255,255,0.85);
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--white);
}

.lang-toggle {
    display: flex;
    align-items: center;
    gap: 4px;
}

.lang-toggle img {
    width: 16px;
    height: 11px;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: -10px;
    background: var(--dark-bg);
    box-shadow: var(--shadow-hover);
    padding: 8px 0;
    min-width: 240px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 8px 20px;
    font-size: 0.8rem !important;
    text-transform: none !important;
}

.dropdown-menu a:hover {
    background: rgba(255,255,255,0.1);
}

/* Book Button */
.btn-book {
    background: var(--teal);
    color: var(--white);
    padding: 10px 24px;
    border: 1px solid var(--white);
    border-radius: 0;
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.4s ease;
    display: inline-block;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn-book::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transition: width 0.6s ease, height 0.6s ease, top 0.6s ease, left 0.6s ease;
}

.btn-book:hover::after {
    width: 300px;
    height: 300px;
    top: -100px;
    left: -100px;
}

.btn-book:hover {
    background: var(--white);
    border-color: var(--teal);
    color: var(--teal);
}

.btn-outline {
    display: inline-block;
    padding: 12px 32px;
    border: 1px solid var(--teal);
    color: var(--teal);
    font-weight: 400;
    font-size: 0.85rem;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-outline:hover {
    background: var(--teal);
    color: var(--white);
}

/* Mobile Nav Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
    border-radius: 2px;
}

/* ========== Hero ========== */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

/* Slideshow */
.hero-slideshow {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slideshow .slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease;
}

.hero-slideshow .slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.1) 40%, rgba(0,113,120,0.4) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    margin-bottom: 80px;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 400;
    letter-spacing: 3px;
    color: var(--white);
    text-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.hero-arrow {
    margin: 30px auto 0;
    width: 30px;
    opacity: 0.7;
    cursor: pointer;
    transition: var(--transition);
    animation: float 3s ease-in-out infinite;
}

.hero-arrow:hover {
    opacity: 1;
}

@keyframes float {
    0%, 100% { transform: translateY(0); opacity: 0.7; }
    50% { transform: translateY(10px); opacity: 1; }
}

/* ========== Booking Bar ========== */
.booking-bar {
    position: relative;
    z-index: 10;
    background: linear-gradient(180deg, #1a1a1a 0%, #2a2a2a 100%);
    border-bottom: 2px solid var(--gold);
    padding: 20px 0;
}

.booking-form {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 15px;
    max-width: 900px;
    margin: 0 auto;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.form-group label {
    font-size: 0.75rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group select {
    padding: 10px 14px;
    border: 1px solid rgba(255,255,255,0.2);
    background: var(--white) !important;
    color: #000 !important;
    font-family: var(--font-primary);
    font-size: 0.9rem;
    min-width: 120px;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--teal);
}

.booking-form .btn-book {
    white-space: nowrap;
    padding: 10px 24px;
}

/* ========== Sections ========== */
.section {
    padding: 0;
}

.section-full {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
}

.section-full.reverse {
    direction: rtl;
}

.section-full.reverse > * {
    direction: ltr;
}

.section-image {
    overflow: hidden;
}

.section-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 80px;
}

.section-text h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--teal);
    font-weight: 400;
    margin-bottom: 4px;
    font-style: italic;
}

.section-text h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--dark);
    font-weight: 600;
    margin-bottom: 4px;
    letter-spacing: 0.5px;
}

.section-text h1 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--dark);
    font-weight: 600;
    margin-bottom: 20px;
}

.section-text p {
    color: #555;
    margin-bottom: 24px;
    font-size: 0.95rem;
    line-height: 1.9;
}

.section-text .btn-outline {
    align-self: flex-start;
}

/* Section backgrounds */
.bg-light {
    background: var(--light);
}

.bg-dark {
    background: var(--dark-bg);
}

.bg-dark .section-text h3 {
    color: var(--accent);
}

.bg-dark .section-text h2,
.bg-dark .section-text h1 {
    color: var(--white);
}

.bg-dark .section-text p {
    color: rgba(255,255,255,0.7);
}

.bg-dark .btn-outline {
    border-color: var(--white);
    color: var(--white);
}

.bg-dark .btn-outline:hover {
    background: var(--white);
    color: var(--dark-bg);
}

/* ========== ESPA Banner ========== */
.espa-section {
    padding: 30px 0;
    text-align: center;
}

.espa-section a {
    display: inline-block;
}

.espa-section img {
    max-width: 100%;
    height: auto;
}

/* ========== Footer ========== */
.footer {
    background: linear-gradient(180deg, #1a1a2e 0%, #0f0f1a 100%);
    color: rgba(255,255,255,0.75);
    padding: 50px 0 20px;
    text-align: center;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    height: 50px;
    margin: 0 auto;
}

.footer-description {
    max-width: 600px;
    margin: 0 auto 30px;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Footer room links */
.footer-rooms {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 20px;
    margin-bottom: 15px;
}

.footer-rooms a {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
}

.footer-rooms a:hover {
    color: var(--white);
}

/* Footer extra links */
.footer-extra {
    margin-bottom: 15px;
}

.footer-extra a {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
}

.footer-extra a:hover {
    color: var(--white);
}

/* Footer contact */
.footer-contact {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 20px;
    margin-bottom: 15px;
}

.footer-contact a,
.footer-contact span {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
}

.footer-contact a:hover {
    color: var(--white);
}

/* Footer social */
.footer-social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-social span {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
}

.footer-social a {
    color: var(--accent);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.8rem;
}

.footer-social a:hover {
    color: var(--white);
}

.footer-social svg {
    width: 20px;
    height: 20px;
}

.footer-credit {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 15px;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
}

.footer-credit a {
    color: rgba(255,255,255,0.4);
    transition: var(--transition);
}

.footer-credit a:hover {
    color: var(--white);
}

/* ========== Page Header (subpages) ========== */
.page-header {
    position: relative;
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 160px 20px 80px;
    text-align: center;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
}

.page-header * {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.page-header p {
    opacity: 0.8;
    font-size: 1.05rem;
}

/* ========== Room Detail ========== */
.room-detail {
    padding: 60px 0;
    border-bottom: 1px solid var(--light-gray);
}

.room-detail:nth-child(even) {
    background: var(--light);
}

.room-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.room-detail h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: 12px;
    font-weight: 600;
}

.room-specs {
    font-family: var(--font-ui, 'Inter', sans-serif);
    font-size: 0.82rem;
    color: var(--teal, #007178);
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.room-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 16px 0 24px;
}

.amenity-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: var(--light);
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--gray);
    transition: all 0.2s ease;
    cursor: default;
}

.amenity-tag:hover {
    background: var(--teal);
    color: var(--white);
    transform: translateY(-1px);
}

.room-detail:nth-child(even) .amenity-tag {
    background: var(--white);
}

.room-image {
    overflow: hidden;
}

.room-image img {
    width: 100%;
    border-radius: var(--radius);
    transition: transform 0.6s ease;
}

.room-image:hover img,
.room-detail:hover .room-image img {
    transform: scale(1.05);
}

.room-thumbs {
    display: flex;
    gap: 6px;
    margin-top: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
}
.room-thumbs .thumb {
    width: 60px;
    height: 45px;
    object-fit: cover;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s ease, border-color 0.3s ease;
    border: 2px solid transparent;
    border-radius: 4px;
    flex-shrink: 0;
}
.room-thumbs .thumb:hover,
.room-thumbs .thumb.active {
    opacity: 1;
    border-color: var(--teal);
}

/* ========== Discover Page ========== */
.discover-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.discover-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.discover-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.discover-card-image {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    color: white;
    font-size: 1.2rem;
    background-size: cover;
    background-position: center;
}

.discover-card-body {
    padding: 24px;
}

.discover-card-body h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 8px;
}

.discover-card-body p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.6;
}

/* ========== Contact Page ========== */
.contact-section {
    padding: 60px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-form label {
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--dark);
    margin-bottom: 4px;
    display: block;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--light-gray);
    font-family: var(--font-primary);
    font-size: 0.95rem;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--teal);
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-info-block {
    padding: 30px;
    background: var(--light);
}

.contact-info-block h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--dark);
    margin-bottom: 20px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
}

.contact-info-item svg {
    flex-shrink: 0;
    color: var(--teal);
    margin-top: 2px;
}

.contact-info-item strong {
    display: block;
    margin-bottom: 2px;
    color: var(--dark);
}

.contact-info-item span,
.contact-info-item a {
    color: var(--gray);
    font-size: 0.95rem;
}

.contact-info-item a:hover {
    color: var(--teal);
}

.map-container {
    margin-top: 40px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-container iframe {
    width: 100%;
    height: 350px;
    border: 0;
}

/* ========== Activities Page ========== */
.activities-section {
    padding: 60px 0;
}

.activity-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--light-gray);
}

.activity-detail:nth-child(even) {
    direction: rtl;
}

.activity-detail:nth-child(even) > * {
    direction: ltr;
}

.activity-detail:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.activity-detail h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--dark);
    margin-bottom: 12px;
}

.activity-detail p {
    color: #555;
    line-height: 1.7;
}

/* Page sections */
.page-section {
    padding: 80px 0;
}

.page-section.bg-alt {
    background: var(--light);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--dark);
    margin-bottom: 8px;
    text-align: center;
}

.title-line {
    width: 60px;
    height: 2px;
    background: var(--teal);
    margin: 0 auto 30px;
}

/* CTA */
.cta-section {
    position: relative;
    background: linear-gradient(135deg, var(--dark) 0%, #16213e 50%, var(--teal) 100%);
    color: var(--white);
    text-align: center;
    padding: 80px 0;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.03) 0%, transparent 70%);
    animation: pulse-bg 8s ease-in-out infinite;
}

@keyframes pulse-bg {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.cta-section h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.cta-section p {
    opacity: 0.7;
    margin-bottom: 30px;
    font-size: 1rem;
}

/* ========== Animations ========== */
@keyframes fadeDown {
    from { opacity: 0; transform: translate3d(0,-30px,0); }
    to { opacity: 1; transform: none; }
}

@keyframes fadeLeft {
    from { opacity: 0; transform: translate3d(-30px,0,0); }
    to { opacity: 1; transform: none; }
}

@keyframes fadeRight {
    from { opacity: 0; transform: translate3d(30px,0,0); }
    to { opacity: 1; transform: none; }
}

@keyframes fadeUp {
    from { opacity: 0; transform: translate3d(0,30px,0); }
    to { opacity: 1; transform: none; }
}

.animate {
    opacity: 0;
}

.animate.visible {
    animation-duration: 0.8s;
    animation-fill-mode: both;
}

.animate.fadeInLeft.visible { animation-name: fadeLeft; }
.animate.fadeInRight.visible { animation-name: fadeRight; }
.animate.fadeInUp.visible { animation-name: fadeUp; }
.animate.fadeIn.visible { animation-name: fadeDown; }

/* Delay classes */
.delay-300.visible { animation-delay: 0.3s; }
.delay-600.visible { animation-delay: 0.6s; }

/* Stagger animations for cards */
.animate.visible:nth-child(2) { animation-delay: 0.15s; }
.animate.visible:nth-child(3) { animation-delay: 0.3s; }
.animate.visible:nth-child(4) { animation-delay: 0.45s; }
.animate.visible:nth-child(5) { animation-delay: 0.6s; }
.animate.visible:nth-child(6) { animation-delay: 0.75s; }
.animate.visible:nth-child(7) { animation-delay: 0.9s; }

/* ========== Wave Dividers ========== */
.wave-divider {
    position: relative;
    margin-top: -1px;
}

.wave-divider svg {
    display: block;
    width: 100%;
    height: 60px;
}

/* ========== Image Loading Shimmer ========== */
.room-image, .section-image {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.room-image img, .section-image img {
    position: relative;
    z-index: 1;
}

/* ========== Cookie Banner ========== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #333;
    color: #fff;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    z-index: 9999;
    font-size: 0.85rem;
}

.cookie-banner.hidden {
    display: none;
}

.cookie-banner p {
    max-width: 700px;
}

.cookie-banner button {
    background: var(--navy);
    color: white;
    border: none;
    padding: 8px 20px;
    cursor: pointer;
    font-family: var(--font-primary);
    font-size: 0.85rem;
    white-space: nowrap;
}

.cookie-banner button:hover {
    background: #0a3d82;
}

/* ========== Responsive ========== */
@media (max-width: 1024px) {
    .section-full {
        grid-template-columns: 1fr;
    }

    .section-full.reverse {
        direction: ltr;
    }

    .section-text {
        padding: 40px 30px;
    }

    .section-image {
        min-height: 300px;
    }

    .room-grid,
    .contact-grid,
    .activity-detail {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .activity-detail:nth-child(even) {
        direction: ltr;
    }

    .hero h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        backdrop-filter: blur(20px);
        background: rgba(0,0,0,0.9);
        flex-direction: column;
        padding: 20px;
        transform: translateY(-120%);
        transition: var(--transition);
    }

    .nav-links.open {
        transform: translateY(0);
    }

    .nav-links > li {
        opacity: 0;
        transform: translateX(-20px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .nav-links.open > li {
        opacity: 1;
        transform: translateX(0);
    }

    .nav-links.open > li:nth-child(1) { transition-delay: 0.05s; }
    .nav-links.open > li:nth-child(2) { transition-delay: 0.1s; }
    .nav-links.open > li:nth-child(3) { transition-delay: 0.15s; }
    .nav-links.open > li:nth-child(4) { transition-delay: 0.2s; }
    .nav-links.open > li:nth-child(5) { transition-delay: 0.25s; }
    .nav-links.open > li:nth-child(6) { transition-delay: 0.3s; }

    .nav-book {
        display: none;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        padding-left: 16px;
        background: transparent;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .booking-form {
        flex-direction: column;
        padding: 0 20px;
    }

    .form-group {
        width: 100%;
    }

    .form-group input,
    .form-group select {
        width: 100%;
    }

    .footer-rooms,
    .footer-contact {
        flex-direction: column;
        gap: 8px;
    }

    .discover-grid {
        grid-template-columns: 1fr;
    }

    .cookie-banner {
        flex-direction: column;
        text-align: center;
    }

    .page-header h1 {
        font-size: 2rem;
    }
}

/* ========== Sticky Mobile Book Button ========== */
.mobile-book-btn {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 998;
    background: var(--teal);
    color: var(--white);
    text-align: center;
    padding: 14px;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    transition: var(--transition);
}
.mobile-book-btn:hover { background: #005a60; }
@media (max-width: 768px) {
    .mobile-book-btn { display: block; }
    .cookie-banner { bottom: 50px; }
    .footer { padding-bottom: 60px; }
}

/* ========== WhatsApp Floating Button ========== */
.whatsapp-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 997;
    width: 56px;
    height: 56px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    transition: all 0.3s ease;
    cursor: pointer;
}
.whatsapp-btn:hover { transform: scale(1.1); box-shadow: 0 6px 20px rgba(0,0,0,0.3); }
.whatsapp-btn svg { width: 28px; height: 28px; fill: white; }
@media (max-width: 768px) {
    .whatsapp-btn { bottom: 70px; right: 16px; }
}

/* ========== Back to Top Button ========== */
.back-to-top {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 997;
    width: 44px;
    height: 44px;
    background: rgba(0,0,0,0.6);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--teal); }
@media (max-width: 768px) {
    .back-to-top { bottom: 70px; left: 16px; }
}

/* ========== Photo Lightbox ========== */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0,0,0,0.92);
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.lightbox.active { display: flex; }
.lightbox img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 0 40px rgba(0,0,0,0.5);
}
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    background: none;
    border: none;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    line-height: 1;
    opacity: 0.7;
    transition: opacity 0.3s;
}
.lightbox-close:hover { opacity: 1; }
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: white;
    font-size: 3rem;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s;
    padding: 10px;
}
.lightbox-nav:hover { opacity: 1; }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    font-family: var(--font-primary);
}

/* ========== Breadcrumbs ========== */
.breadcrumbs {
    padding: 12px 0;
    font-size: 0.8rem;
    color: var(--gray);
    font-family: var(--font-primary);
}
.breadcrumbs a { color: var(--teal); transition: color 0.2s; }
.breadcrumbs a:hover { color: #005a60; }
.breadcrumbs span { margin: 0 6px; opacity: 0.5; }

/* ========== Page Loading ========== */
.page-loader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.4s ease;
}
.page-loader.hidden { opacity: 0; pointer-events: none; }
.loader-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--light-gray);
    border-top-color: var(--teal);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ========== Share Buttons ========== */
.share-buttons {
    display: flex;
    gap: 8px;
    margin-top: 16px;
}
.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    transition: all 0.3s ease;
    cursor: pointer;
}
.share-btn.facebook { background: #1877f2; color: white; }
.share-btn.whatsapp-share { background: #25d366; color: white; }
.share-btn:hover { transform: translateY(-2px); opacity: 0.9; }
.share-btn svg { width: 18px; height: 18px; fill: currentColor; }

/* ========== USP Section (Why Choose Us) ========== */
.usp-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}
.usp-item {
    padding: 30px 15px;
}
.usp-icon {
    font-size: 0;
    margin-bottom: 12px;
    color: var(--teal);
}
.usp-icon svg { color: var(--teal); }
.usp-item h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    margin-bottom: 8px;
    color: var(--dark);
}
.usp-item p {
    font-size: 0.82rem;
    color: var(--gray);
}
@media (max-width: 768px) {
    .usp-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}

/* ========== Room Tab Bar (Sticky) ========== */
.room-tabs {
    position: sticky;
    top: 70px;
    z-index: 100;
    background: var(--white);
    border-bottom: 1px solid var(--light-gray);
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 0;
    overflow-x: auto;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.room-tabs a {
    display: block;
    padding: 12px 16px;
    font-family: var(--font-primary);
    font-size: 0.75rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}
.room-tabs a:hover,
.room-tabs a.active {
    color: var(--teal);
    border-bottom-color: var(--teal);
}

/* ========== FAQ Accordion ========== */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    border-bottom: 1px solid var(--light-gray);
}
.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 18px 0;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s;
}
.faq-question:hover { color: var(--teal); }
.faq-question::after {
    content: '+';
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--teal);
    transition: transform 0.3s;
}
.faq-item.open .faq-question::after {
    transform: rotate(45deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0;
}
.faq-item.open .faq-answer {
    max-height: 300px;
    padding-bottom: 18px;
}
.faq-answer p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.7;
}

/* ========== Animated Counter ========== */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background: var(--teal);
    color: var(--white);
    text-align: center;
}
.stat-item {
    padding: 30px 20px;
    border-right: 1px solid rgba(255,255,255,0.15);
}
.stat-item:last-child { border-right: none; }
.stat-number {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--gold);
}
.stat-label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
    margin-top: 4px;
}
@media (max-width: 768px) {
    .stats-bar { grid-template-columns: repeat(2, 1fr); }
    .stat-item:nth-child(2) { border-right: none; }
}

/* ========== Nearby Places ========== */
.nearby-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 16px;
}
.nearby-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.nearby-item:hover { transform: translateY(-2px); box-shadow: var(--shadow-hover); }
.nearby-icon {
    font-size: 0;
    flex-shrink: 0;
}
.nearby-item h4 {
    font-size: 0.9rem;
    margin-bottom: 2px;
    color: var(--dark);
}
.nearby-item p {
    font-size: 0.78rem;
    color: var(--teal);
    font-weight: 600;
}

/* ========== Seasonal Banner ========== */
.seasonal-banner {
    background: linear-gradient(135deg, var(--gold), #d4a843);
    color: var(--dark);
    text-align: center;
    padding: 12px 20px;
    font-size: 0.88rem;
    font-weight: 600;
    position: relative;
}
.seasonal-banner a { color: var(--dark); text-decoration: underline; }
.seasonal-banner .close-banner {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0.6;
}
.seasonal-banner .close-banner:hover { opacity: 1; }

/* ========== Image Blur Reveal ========== */
.blur-reveal {
    filter: blur(8px);
    transition: filter 0.6s ease;
}
.blur-reveal.revealed {
    filter: blur(0);
}

/* ========== Scroll Progress Bar ========== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--teal), var(--gold));
    z-index: 10001;
    width: 0%;
    transition: width 0.1s linear;
}

/* ========== Accessibility ========== */
.skip-link {
    position: absolute;
    top: -100px;
    left: 16px;
    background: var(--teal);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 0 0 var(--radius) var(--radius);
    z-index: 100000;
    font-size: 0.9rem;
    transition: top 0.3s;
}
.skip-link:focus {
    top: 0;
}

*:focus-visible {
    outline: 2px solid var(--teal);
    outline-offset: 2px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

/* ========== Page Transitions ========== */
.page-transition {
    animation: pageIn 0.4s ease-out;
}
@keyframes pageIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ========== Print Styles (Enhanced) ========== */
@media print {
    .navbar, .cookie-banner, .footer-social, .whatsapp-btn,
    .back-to-top, .mobile-book-btn, .seasonal-banner,
    .lightbox, .scroll-progress, .booking-bar, .room-tabs,
    .btn-book, .btn-outline, .page-loader { display: none !important; }

    .hero { min-height: auto !important; padding: 40px 20px !important; }
    .hero-slideshow, .hero-overlay { display: none !important; }
    .hero-content { position: static !important; }
    .hero h1 { color: #000 !important; text-shadow: none !important; font-size: 1.8rem !important; }

    body { font-size: 11pt !important; color: #000 !important; background: #fff !important; }
    .section { padding: 20px 0 !important; }
    .section-text, .room-grid, .contact-grid { display: block !important; }

    .room-detail { page-break-inside: avoid; border: 1px solid #ddd; margin: 10px 0; padding: 15px !important; }
    .room-image { max-width: 300px !important; }
    .room-image img { max-height: 200px !important; }
    .room-thumbs { display: none !important; }
    .amenity-tag { border: 1px solid #999 !important; background: none !important; color: #333 !important; }

    .footer { background: none !important; color: #333 !important; border-top: 2px solid #000; padding: 15px 0 !important; }
    .footer-col h4 { color: #000 !important; }

    a[href]::after { content: " (" attr(href) ")" !important; font-size: 0.8em; color: #666; }
    a[href^="#"]::after, a[href^="javascript"]::after, a[href^="mailto"]::after, a[href^="tel"]::after { content: "" !important; }

    .breadcrumbs { border-bottom: 1px solid #ddd; padding-bottom: 8px !important; }
}

/* ========== Dark Mode ========== */
.dark-mode-toggle {
    background: rgba(255,255,255,0.15);
    border: none;
    cursor: pointer;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all 0.3s;
    margin-left: 8px;
}
.dark-mode-toggle:hover { background: rgba(255,255,255,0.3); }

body.dark-mode {
    background: #121212;
    color: #e0e0e0;
}
body.dark-mode .navbar { background: rgba(18,18,18,0.95); }
body.dark-mode .section { background: #121212; }
body.dark-mode .section.bg-light,
body.dark-mode .section.bg-cream { background: #1a1a1a; }
body.dark-mode .section-text h2,
body.dark-mode .section-text h1,
body.dark-mode .section-title { color: #e0e0e0; }
body.dark-mode .section-text h3 { color: var(--gold); }
body.dark-mode .section-text p { color: #aaa; }
body.dark-mode .room-detail { background: #1a1a1a; border-color: #333; }
body.dark-mode .room-detail:nth-child(even) { background: #121212; }
body.dark-mode .room-detail h2 { color: #e0e0e0; }
body.dark-mode .amenity-tag { background: #2a2a2a; color: #ccc; }
body.dark-mode .amenity-tag:hover { background: var(--teal); color: white; }
body.dark-mode .room-tabs { background: #1a1a1a; border-color: #333; }
body.dark-mode .room-tabs a { color: #888; }
body.dark-mode .room-tabs a.active { color: var(--gold); border-color: var(--gold); }
body.dark-mode .footer { background: #0a0a0a; }
body.dark-mode .card, body.dark-mode .info-card { background: #1e1e1e; }
body.dark-mode .discover-card { background: #1e1e1e; }
body.dark-mode .discover-card-body h3 { color: #e0e0e0; }
body.dark-mode .contact-form input,
body.dark-mode .contact-form textarea { background: #1e1e1e; color: #e0e0e0; border-color: #333; }
body.dark-mode .contact-info-block { background: #1a1a1a; }
body.dark-mode .breadcrumbs { color: #888; }
body.dark-mode .faq-question { color: #e0e0e0; }
body.dark-mode .faq-item { border-color: #333; }
body.dark-mode .nearby-item { background: #1e1e1e; }
body.dark-mode .nearby-item h4 { color: #e0e0e0; }
body.dark-mode .usp-item h3 { color: #e0e0e0; }
body.dark-mode .usp-item p { color: #999; }
body.dark-mode .page-header::before { background: linear-gradient(180deg, rgba(18,18,18,0.8), rgba(18,18,18,0.9)); }
body.dark-mode .booking-bar { background: #0a0a0a; }
body.dark-mode .seasonal-banner { background: linear-gradient(135deg, #333, #444); color: #e0e0e0; }
body.dark-mode .page-loader { background: #121212; }
body.dark-mode .cookie-banner { background: #1e1e1e; color: #e0e0e0; }
body.dark-mode .scroll-progress { background: linear-gradient(90deg, var(--gold), var(--teal)); }
body.dark-mode .dark-mode-toggle { background: rgba(255,255,255,0.15); }
body.dark-mode .room-specs { color: var(--gold); }

/* ========== Room Comparison ========== */
.compare-check {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    font-size: 0.82rem;
    color: var(--gray);
    cursor: pointer;
}
.compare-check input { accent-color: var(--teal); width: 16px; height: 16px; cursor: pointer; }

.compare-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: white;
    padding: 12px 20px;
    display: none;
    align-items: center;
    justify-content: center;
    gap: 16px;
    z-index: 999;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    font-size: 0.9rem;
}
.compare-bar.visible { display: flex; }
.compare-bar button {
    background: var(--gold);
    color: var(--dark);
    border: none;
    padding: 8px 20px;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    font-size: 0.85rem;
}
.compare-bar .clear-compare {
    background: none;
    color: rgba(255,255,255,0.6);
    border: 1px solid rgba(255,255,255,0.3);
}

.compare-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10001;
    background: rgba(0,0,0,0.85);
    padding: 40px 20px;
    overflow-y: auto;
}
.compare-modal.active { display: flex; align-items: flex-start; justify-content: center; }
.compare-table {
    background: white;
    border-radius: var(--radius);
    max-width: 900px;
    width: 100%;
    overflow-x: auto;
    margin-top: 20px;
}
.compare-table table { width: 100%; border-collapse: collapse; font-size: 0.85rem; }
.compare-table th { background: var(--teal); color: white; padding: 12px; text-align: left; font-weight: 600; }
.compare-table td { padding: 10px 12px; border-bottom: 1px solid #eee; }
.compare-table tr:hover td { background: #f9f9f9; }
.compare-close {
    position: absolute;
    top: 20px;
    right: 30px;
    background: none;
    border: none;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
}
body.dark-mode .compare-table { background: #1e1e1e; }
body.dark-mode .compare-table td { border-color: #333; color: #ccc; }
body.dark-mode .compare-table tr:hover td { background: #252525; }

/* ========== Price Tag ========== */
.room-price {
    display: inline-block;
    background: var(--gold);
    color: var(--dark);
    padding: 4px 14px;
    border-radius: 20px;
    font-family: var(--font-primary);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 12px;
}
.room-price small {
    font-weight: 400;
    font-size: 0.75rem;
    opacity: 0.8;
}

/* ========== Interactive Map Section ========== */
.map-section {
    position: relative;
}
.map-section iframe {
    width: 100%;
    height: 400px;
    border: 0;
    border-radius: var(--radius);
}
.map-pins {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
    margin-top: 20px;
}
.map-pin {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: var(--white);
    border-radius: var(--radius);
    font-size: 0.82rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
}
.map-pin:hover { transform: translateY(-2px); box-shadow: var(--shadow-hover); }
.map-pin .pin-icon { font-size: 0; }
.map-pin .pin-name { font-weight: 600; color: var(--dark); }
.map-pin .pin-dist { color: var(--teal); font-size: 0.75rem; }
