/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #f0f4f8;
    color: #1e293b;
    line-height: 1.7;
    scroll-behavior: smooth;
}

.language-switcher {
    display: flex;
    gap: 0.3rem;
    align-items: center;
}

.language-switcher a {
    font-weight: 600;
    color: #1a365d;
    padding: 0.2rem 0.7rem;
    border-radius: 4px;
    transition: all 0.2s;
    font-size: 0.85rem;
    text-decoration: none;
    border: 1px solid transparent;
}

.language-switcher a:hover {
    background: #e8f0fe;
}

.language-switcher .lang-active {
    background: #1a365d;
    color: #fff;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ===== HEADER ===== */
header {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    padding: 0.6rem 0;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.8rem 1.5rem;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-area img {
    height: 54px;
    width: auto;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    font-size: 2rem;
    letter-spacing: -0.5px;
    color: #1a365d;
}

.logo-text span {
    color: #2b6cb0;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    font-weight: 600;
    font-size: 0.95rem;
    align-items: center;
    flex-wrap: wrap;
}

.nav-links a {
    color: #1e293b;
    transition: color 0.2s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 2px;
    background: #2b6cb0;
    transition: width 0.25s;
}

.nav-links a:hover {
    color: #2b6cb0;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: #1a365d;
    color: #fff !important;
    padding: 0.5rem 1.6rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: #2b6cb0;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(26, 54, 93, 0.25);
    color: #fff !important;
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #1a365d;
}

/* ===== HERO ===== */
/* ===== HERO ===== */
.hero-banner {
    position: relative;
    border-radius: 0 0 40px 40px;
    padding: 5rem 2rem 4rem;
    margin: 0 0 2rem 0;
    text-align: center;
    color: #fff;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Default hero image (fallback) */
.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('banner4.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0.8) saturate(1.4);
    z-index: 0;
}

/* Homepage hero image */
.hero-home::before {
    background-image: url('banner4.jpg');
}

/* Activities page hero image */
.hero-activity::before {
    background-image: url('banner-sun.jpg');
}

/* Rooms page hero image */
.hero-rooms::before {
    background-image: url('bungalow-night2.jpg');
}

/* Gallery page hero image */
.hero-gallery::before {
    background-image: url('beach-celebes2.jpg');
}

.hero-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.2) 0%, rgba(43, 108, 176, 0.1) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-banner h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 0.8rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.hero-banner p {
    font-size: 1.2rem;
    opacity: 0.95;
    max-width: 620px;
    margin: 0 auto 0;
    font-weight: 400;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(6px);
    padding: 0.4rem 1.8rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    margin-bottom: 0.8rem;
}

/* ===== SECTION TITLES ===== */
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 1.8rem;
    letter-spacing: -0.5px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: #2b6cb0;
    border-radius: 4px;
    margin-top: 0.4rem;
}

.section-title-center {
    text-align: center;
}

.section-title-center::after {
    margin: 0.4rem auto 0;
}

/* ===== WELCOME ===== */
.welcome {
    background: #fff;
    padding: 2.5rem 2.5rem;
    border-radius: 24px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.04);
    margin-bottom: 2.5rem;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.welcome p {
    font-size: 1.05rem;
    color: #334155;
    max-width: 800px;
}

/* ===== FEATURE CARDS ===== */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.8rem;
    margin-bottom: 3rem;
}

@media (max-width: 1024px) {
    .feature-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 720px) {
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.feature-card {
    background: #fff;
    border-radius: 20px;
    padding: 1.8rem 1.5rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 34px rgba(26, 54, 93, 0.08);
    border-color: #d0dce8;
}

.feature-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 14px;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 0.3rem;
}

.feature-card h3 small {
    display: block;
    font-weight: 400;
    font-size: 0.85rem;
    color: #2b6cb0;
}

.feature-card p {
    font-size: 0.92rem;
    color: #475569;
    margin-top: 0.4rem;
}

/* ===== ACTIVITY PAGE ===== */
.activity-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin: 2rem 0 3rem;
}

.activity-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.02);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.activity-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.activity-card .image-wrap {
    overflow: hidden;
    min-height: 280px;
}

.activity-card .image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.activity-card:hover .image-wrap img {
    transform: scale(1.03);
}

.activity-card .content-wrap {
    padding: 2rem 2rem 2rem 1.8rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.activity-card .content-wrap h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: #1a365d;
    margin-bottom: 0.5rem;
}

.activity-card .content-wrap h3 i {
    color: #2b6cb0;
    margin-right: 0.5rem;
    font-size: 1.3rem;
}

.activity-card .content-wrap p {
    color: #475569;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.activity-card .content-wrap .price-tag {
    display: inline-block;
    background: #e8f0fe;
    color: #1a365d;
    padding: 0.2rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 0.3rem;
    align-self: flex-start;
}

.activity-card .content-wrap .contact-info {
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid #e8edf3;
}

.activity-card .content-wrap .contact-info a {
    color: #2b6cb0;
    font-weight: 600;
}

.activity-card .content-wrap .contact-info a:hover {
    text-decoration: underline;
}

.activity-card.reverse {
    direction: rtl;
}

.activity-card.reverse .content-wrap {
    direction: ltr;
}

.activity-card.reverse .image-wrap {
    direction: ltr;
}

/* Activity Page Responsive */
@media (max-width: 820px) {
    .activity-card {
        grid-template-columns: 1fr;
    }
    .activity-card.reverse {
        direction: ltr;
    }
    .activity-card .image-wrap {
        min-height: 200px;
        max-height: 280px;
    }
    .activity-card .content-wrap {
        padding: 1.5rem;
    }
    .activity-card .content-wrap h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .activity-card .image-wrap {
        min-height: 160px;
    }
    .activity-card .content-wrap {
        padding: 1.2rem;
    }
    .activity-card .content-wrap h3 {
        font-size: 1.1rem;
    }
    .activity-card .content-wrap p {
        font-size: 0.9rem;
    }
}

/* ===== RATES & INFO ===== */
.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.info-box {
    background: #fff;
    border-radius: 20px;
    padding: 1.8rem 2rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.info-box h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #1a365d;
    margin-bottom: 0.8rem;
    border-bottom: 2px solid #e8edf3;
    padding-bottom: 0.5rem;
}

.info-box p {
    margin-bottom: 0.35rem;
    font-size: 0.95rem;
}

.info-box strong {
    color: #1a365d;
}

.info-box a {
    color: #2b6cb0;
    font-weight: 600;
    transition: color 0.2s;
}

.info-box a:hover {
    color: #1a365d;
    text-decoration: underline;
}

.notice {
    background: #fef9e7;
    border-left: 4px solid #d4a02b;
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    font-size: 0.92rem;
    color: #5f4a1a;
    margin-top: 0.6rem;
}

/* ===== ROOM FEATURES SECTION ===== */
.room-features-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

/* ===== BOOKING SECTION ===== */
.booking-section {
    background: #fff;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.04);
    margin: 2rem 0;
    border: 1px solid rgba(0, 0, 0, 0.02);
    scroll-margin-top: 100px;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
    max-width: 700px;
    margin: 1.5rem auto;
}

.calendar-header {
    font-weight: 700;
    color: #1a365d;
    text-align: center;
    padding: 0.5rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s;
    background: #f8fafc;
    cursor: default;
    position: relative;
    padding: 0.2rem;
}

.calendar-day .day-number {
    font-size: 0.9rem;
    font-weight: 600;
}

.calendar-day .availability-badge {
    font-size: 0.55rem;
    font-weight: 500;
    margin-top: 0.1rem;
    padding: 0.1rem 0.3rem;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.7);
}

.calendar-day.available {
    background: #e8f0fe;
    color: #1a365d;
    cursor: pointer;
}

.calendar-day.available:hover {
    background: #2b6cb0;
    color: #fff;
    transform: scale(1.05);
}

.calendar-day.available:hover .availability-badge {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.calendar-day.booked {
    background: #fee2e2;
    color: #991b1b;
    cursor: not-allowed;
    opacity: 0.7;
}

.calendar-day.booked .availability-badge {
    color: #991b1b;
    background: rgba(255, 255, 255, 0.5);
}

.calendar-day.booked::after {
    content: '?';
    position: absolute;
    top: -4px;
    right: -2px;
    font-size: 0.6rem;
    color: #991b1b;
}

.calendar-day.today {
    border: 2px solid #2b6cb0;
}

.calendar-day.past {
    opacity: 0.3;
    cursor: not-allowed;
}

.calendar-day.selected {
    background: #1a365d;
    color: #fff;
    transform: scale(1.05);
}

.calendar-day.selected .availability-badge {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.calendar-day.range-start {
    background: #1a365d;
    color: #fff;
    border-radius: 12px 0 0 12px;
}

.calendar-day.range-start .availability-badge {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.calendar-day.range-end {
    background: #1a365d;
    color: #fff;
    border-radius: 0 12px 12px 0;
}

.calendar-day.range-end .availability-badge {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.calendar-day.range-middle {
    background: #bfd7f5;
    color: #1a365d;
    border-radius: 0;
}

.calendar-day.range-middle .availability-badge {
    background: rgba(255, 255, 255, 0.5);
}

.calendar-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 700px;
    margin: 0 auto 1rem;
}

.calendar-nav button {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: #1a365d;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.2s;
    font-weight: 600;
}

.calendar-nav button:hover {
    background: #e8f0fe;
    color: #2b6cb0;
}

.calendar-nav .month-label {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a365d;
}

.calendar-legend {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
    font-size: 0.85rem;
}

.calendar-legend span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.legend-dot {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    display: inline-block;
}

.legend-dot.available-dot {
    background: #e8f0fe;
    border: 1px solid #2b6cb0;
}

.legend-dot.booked-dot {
    background: #fee2e2;
    border: 1px solid #991b1b;
}

.legend-dot.selected-dot {
    background: #1a365d;
}

.legend-dot.range-dot {
    background: #bfd7f5;
    border: 1px solid #2b6cb0;
}

/* ===== BOOKING FORM ===== */
.booking-form {
    max-width: 600px;
    margin: 1.5rem auto 0;
    padding-top: 1.5rem;
    border-top: 2px solid #e8edf3;
}

.selected-date-display {
    text-align: center;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
    padding: 0.5rem;
    background: #f8fafc;
    border-radius: 12px;
}

.booking-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.booking-form .form-row-full {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid #e8edf3;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: all 0.2s;
    background: #fafbfc;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    outline: none;
    border-color: #2b6cb0;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(43, 108, 176, 0.1);
}

.booking-form textarea {
    resize: vertical;
    min-height: 80px;
}

.booking-form .btn-submit {
    background: #1a365d;
    color: #fff;
    padding: 0.9rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
}

.booking-form .btn-submit:hover {
    background: #2b6cb0;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(26, 54, 93, 0.25);
}

.booking-form .btn-submit i {
    margin-right: 0.5rem;
}

/* Contact Method Selection */
.contact-method {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin: 0.5rem 0 1rem;
    padding: 0.8rem;
    background: #f8fafc;
    border-radius: 12px;
    border: 2px solid #e8edf3;
}

.contact-method label {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    cursor: pointer;
    font-weight: 500;
    padding: 0.3rem 1rem;
    border-radius: 8px;
    transition: all 0.2s;
}

.contact-method label:hover {
    background: #e8f0fe;
}

.contact-method input[type="radio"] {
    accent-color: #1a365d;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.contact-method .whatsapp-label {
    color: #075e54;
}

.contact-method .whatsapp-label i {
    color: #25D366;
    font-size: 1.2rem;
}

.contact-method .email-label {
    color: #1a365d;
}

.contact-method .email-label i {
    color: #2b6cb0;
    font-size: 1.2rem;
}

/* WhatsApp field - hidden by default, shown when WhatsApp is selected */
.whatsapp-field {
    display: none;
}

.whatsapp-field.visible {
    display: block;
}

/* ===== CONFIRMATION POPUP ===== */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.popup-overlay.active {
    display: flex;
}

.popup {
    background: #fff;
    border-radius: 30px;
    padding: 3rem 2.5rem;
    max-width: 480px;
    width: 90%;
    text-align: center;
    animation: popupSlide 0.4s ease;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

@keyframes popupSlide {
    0% {
        transform: scale(0.8) translateY(20px);
        opacity: 0;
    }
    100% {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

.popup .popup-icon {
    font-size: 4rem;
    color: #22c55e;
    margin-bottom: 0.5rem;
}

.popup h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #1a365d;
    margin-bottom: 0.5rem;
}

.popup p {
    color: #64748b;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.popup .booking-details {
    background: #f8fafc;
    border-radius: 12px;
    padding: 1rem;
    text-align: left;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.popup .booking-details strong {
    color: #1a365d;
}

.popup .btn-close-popup {
    background: #1a365d;
    color: #fff;
    padding: 0.8rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.popup .btn-close-popup:hover {
    background: #2b6cb0;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(26, 54, 93, 0.25);
}

/* ===== MAP ===== */
.map-wrap {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    margin: 1.2rem 0;
}

.map-wrap iframe {
    width: 100%;
    height: 350px;
    border: none;
    display: block;
}

/* ===== BOTTOM LINKS ===== */
.bottom-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.2rem 2.5rem;
    padding: 2rem 0 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    margin-top: 1.5rem;
}

.bottom-links a {
    font-weight: 600;
    color: #1a365d;
    transition: color 0.2s;
    position: relative;
}

.bottom-links a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0%;
    height: 2px;
    background: #2b6cb0;
    transition: width 0.25s;
}

.bottom-links a:hover {
    color: #2b6cb0;
}

.bottom-links a:hover::after {
    width: 100%;
}

/* ===== FOOTER ===== */
.footer {
    background: #1a365d;
    color: #d9e2ef;
    padding: 2rem 1.5rem;
    border-radius: 40px 40px 0 0;
    margin-top: 2.5rem;
    text-align: center;
}

.footer .social-icons {
    display: flex;
    justify-content: center;
    gap: 1.4rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.footer .social-icons a {
    display: inline-block;
    transition: transform 0.2s, opacity 0.2s;
    opacity: 0.75;
}

.footer .social-icons a:hover {
    transform: scale(1.08) translateY(-2px);
    opacity: 1;
}

.footer .social-icons img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    background: rgba(255, 255, 255, 0.06);
    padding: 6px;
}

.footer p {
    font-size: 0.85rem;
    opacity: 0.7;
    margin-top: 0.3rem;
}

/* ===== SCROLL TO TOP ===== */
#start {
    scroll-margin-top: 80px;
}

/* ===== RESPONSIVE ===== */

/* ===== ROOM FEATURES RESPONSIVE ===== */
@media (max-width: 820px) {
    .room-features-section {
        grid-template-columns: 1fr !important;
    }
    .room-features-section div:first-child {
        max-height: 280px;
    }
    .room-features-section div:last-child {
        padding: 1.5rem !important;
    }
    .room-features-section div:last-child h3 {
        font-size: 1.5rem !important;
    }
    .room-features-section div:last-child .grid-2col {
        grid-template-columns: 1fr !important;
        gap: 0.5rem !important;
    }
}

@media (max-width: 480px) {
    .room-features-section div:first-child {
        max-height: 200px;
    }
    .room-features-section div:last-child {
        padding: 1rem !important;
    }
    .room-features-section div:last-child h3 {
        font-size: 1.2rem !important;
    }
    .room-features-section div:last-child p {
        font-size: 0.9rem !important;
    }
    .room-features-section div:last-child .grid-2col {
        gap: 0.3rem !important;
    }
    .room-features-section div:last-child .grid-2col div {
        font-size: 0.85rem !important;
    }
    .room-features-section div:last-child a {
        max-width: 100% !important;
        padding: 0.6rem 1rem !important;
        font-size: 0.9rem !important;
    }
}

@media (max-width: 820px) {
    .info-grid {
        grid-template-columns: 1fr;
    }
    .booking-form .form-row {
        grid-template-columns: 1fr;
    }
    .contact-method {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }
    .logo-text {
        font-size: 1.5rem;
    }
}

@media (max-width: 720px) {
    .nav-inner {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 0.5rem;
        position: relative;
    }

    .logo-area {
        order: 0;
        flex: 0 0 auto;
        gap: 0.4rem;
    }

    .logo-area img {
        height: 36px;
    }

    .logo-text {
        font-size: 1rem;
    }

    .hamburger {
        display: block;
        order: 2;
        font-size: 1.3rem;
        padding: 0.2rem 0.5rem;
        background: none;
        border: none;
        cursor: pointer;
        color: #1a365d;
    }

    .language-switcher {
        order: 1;
        flex: 0 0 auto;
        justify-content: flex-end;
        padding-top: 0;
        border-top: none;
        gap: 0.2rem;
    }

    .language-switcher a {
        padding: 0.2rem 0.5rem;
        font-size: 0.75rem;
    }

    /* FIX: Make the menu take full width when open */
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background: #fff;
        padding: 1.5rem;
        border-radius: 16px;
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
        gap: 0.8rem;
        order: 3;
        margin-top: 0.5rem;
        text-align: center;
    }
    .nav-links.open {
        display: flex;
    }

    .nav-links li {
        list-style: none;
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 0.6rem 0;
        font-size: 1rem;
        text-align: center;
        border-bottom: 1px solid #e8edf3;
    }

    .nav-links li:last-child a {
        border-bottom: none;
    }

    /* Book Now button inside mobile menu */
    .nav-links .nav-cta {
        display: inline-block;
        margin: 0.5rem auto 0;
        padding: 0.6rem 2rem;
        text-align: center;
        background: #1a365d;
        color: #fff !important;
        border-radius: 50px;
        border-bottom: none !important;
    }

    .hero-banner {
        padding: 3rem 1.2rem 2.5rem;
        min-height: 300px;
        border-radius: 0 0 28px 28px;
    }
    .hero-banner h1 {
        font-size: 2.1rem;
    }
    .hero-banner p {
        font-size: 1rem;
    }
    .section-title {
        font-size: 1.7rem;
    }
    .map-wrap iframe {
        height: 250px;
    }
    .calendar-grid {
        gap: 0.1rem;
    }
    .calendar-day {
        font-size: 0.5rem;
        border-radius: 7px;
    }
    .calendar-day .availability-badge {
        font-size: 0.3rem;
    }
    .booking-section {
        padding: 1.5rem;
    }
    .popup {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .feature-grid {
        grid-template-columns: 1fr;
    }
    .welcome {
        padding: 1.5rem;
    }
    .info-box {
        padding: 1.2rem;
    }
    .container {
        padding: 0 1rem;
    }
    .hero-banner h1 {
        font-size: 1.8rem;
    }
    .calendar-grid {
        gap: 0.2rem;
    }
    .calendar-day {
        font-size: 0.5rem;
        border-radius: 6px;
        padding: 0.1rem;
    }
    .calendar-day .availability-badge {
        font-size: 0.3rem;
    }
    .logo-text {
        font-size: 1.1rem;
    }
    .logo-area img {
        height: 36px;
    }
}

/* FORCE FIX FOR ROOM FEATURES */
.room-features-section {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 2rem !important;
    margin-bottom: 2.5rem !important;
    background: #fff !important;
    border-radius: 24px !important;
    overflow: hidden !important;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.04) !important;
    border: 1px solid rgba(0, 0, 0, 0.02) !important;
}