/* ===== Jhala Resort — MAIN STYLESHEET ===== */

:root {
    --green-dark:  #111b3d;
    --green:       #143f24;
    --green-mid:   #1f6536;
    --green-light: #2f7f45;
    --gold:        #f2a334;
    --gold-light:  #ffc45a;
    --gold-pale:   #fff3d5;
    --magenta:     #c91d5a;
    --magenta-dark:#991646;
    --saffron:     #f47622;
    --white:       #ffffff;
    --off-white:   #fbf8f2;
    --text:        #17213f;
    --text-light:  #666666;
    --border:      #eadcc7;
    --shadow:      rgba(17,27,61,0.16);
    --overlay:     rgba(17,27,61,0.58);
    --font-serif:  'Playfair Display', Georgia, serif;
    --font-sans:   'Lato', sans-serif;
    --radius:      8px;
    --radius-lg:   16px;
    --transition:  0.35s cubic-bezier(0.4,0,0.2,1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: var(--font-sans);
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul { list-style: none; }

/* ===== TOPBAR ===== */
.topbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1100;
    background: var(--green-dark);
    border-bottom: 1px solid rgba(200,169,110,0.22);
    color: rgba(255,255,255,0.78);
    font-size: 0.78rem;
}
.topbar-container {
    max-width: 1300px;
    height: 38px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}
.topbar-left,
.topbar-right {
    display: flex;
    align-items: center;
    gap: 1.3rem;
}
.topbar a,
.topbar span { color: rgba(255,255,255,0.78); }
.topbar i { color: var(--gold); margin-right: 6px; }
.topbar-right a {
    color: var(--gold-light);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 38px; left: 0; right: 0;
    z-index: 1000;
    padding: 0 2rem;
    transition: all var(--transition);
    background: transparent;
}
.navbar.scrolled {
    background: var(--green-dark);
    box-shadow: 0 2px 30px var(--shadow);
    padding: 0 2rem;
}
.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 13px;
    color: var(--white);
}
.site-logo-img {
    width: 62px;
    height: 62px;
    object-fit: contain;
    flex-shrink: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.96);
    padding: 4px;
    box-shadow: 0 8px 28px rgba(0,0,0,0.22);
}
.logo-icon {
    font-size: 1.8rem;
    color: var(--gold);
    line-height: 1;
}
.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}
.logo-name {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.5px;
}
.logo-tag {
    font-size: 0.65rem;
    color: var(--gold-light);
    letter-spacing: 2px;
    text-transform: uppercase;
}
.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.nav-link {
    color: rgba(255,255,255,0.88);
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    padding-bottom: 3px;
    border-bottom: 2px solid transparent;
    transition: all var(--transition);
}
.nav-link:hover,
.nav-link.active {
    color: var(--gold-light);
    border-bottom-color: var(--magenta);
}
.nav-btn {
    background: var(--magenta);
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: 3px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-bottom: none !important;
    transition: background var(--transition), transform var(--transition);
}
.nav-btn:hover { background: var(--saffron); transform: translateY(-1px); }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
}
.hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1582719508461-905c673771fd?w=1800&auto=format&fit=crop') center/cover no-repeat;
    transform: scale(1.05);
    transition: transform 8s ease-out;
}
.hero-bg.loaded { transform: scale(1); }
.hero-slider,
.hero-slide {
    position: absolute;
    inset: 0;
}
.hero-slide {
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.08);
    transition: opacity 1s ease, transform 6s ease;
}
.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(17,27,61,0.68) 0%, rgba(20,63,36,0.38) 50%, rgba(17,27,61,0.78) 100%);
}
.hero-content {
    position: relative;
    text-align: center;
    color: var(--white);
    padding: 0 1.5rem;
    max-width: 800px;
    animation: fadeUp 1s ease both 0.3s;
}
.hero-content.is-changing {
    animation: none;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}
.hero-badge {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold-light);
    border: 1px solid rgba(255,196,90,0.8);
    padding: 6px 20px;
    margin-bottom: 1.5rem;
}
.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.8rem, 7vw, 5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.2rem;
    text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.hero-title em { color: var(--gold-light); font-style: italic; }
.hero-subtitle {
    font-size: 1.1rem;
    font-weight: 300;
    color: rgba(255,255,255,0.85);
    margin-bottom: 2.5rem;
    letter-spacing: 0.5px;
}
.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
.btn-primary {
    background: var(--magenta);
    color: var(--white);
    padding: 15px 36px;
    font-family: var(--font-sans);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    display: inline-block;
}
.btn-primary:hover {
    background: var(--saffron);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(244,118,34,0.35);
}
.btn-outline {
    background: transparent;
    color: var(--white);
    padding: 14px 34px;
    font-size: 0.88rem;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: 1px solid rgba(255,255,255,0.6);
    cursor: pointer;
    transition: all var(--transition);
    display: inline-block;
}
.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold-light);
}
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.6);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: bounce 2s infinite;
}
.hero-scroll i { font-size: 1rem; }
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255,255,255,0.45);
    background: rgba(15,35,24,0.25);
    color: var(--white);
    cursor: pointer;
    transition: all var(--transition);
}
.hero-arrow:hover {
    background: var(--magenta);
    color: var(--white);
    border-color: var(--magenta);
}
.hero-prev { left: 34px; }
.hero-next { right: 34px; }
.hero-dots {
    position: absolute;
    left: 50%;
    bottom: 95px;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 4;
}
.hero-dots button {
    width: 34px;
    height: 3px;
    border: 0;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: background var(--transition), width var(--transition);
}
.hero-dots button.active {
    width: 52px;
    background: var(--magenta);
}
.hero-booking-panel {
    position: absolute;
    right: 4rem;
    bottom: 4rem;
    z-index: 5;
    width: 280px;
    background: rgba(255,255,255,0.94);
    border: 1px solid rgba(200,169,110,0.55);
    padding: 1.6rem;
    box-shadow: 0 24px 70px rgba(0,0,0,0.25);
}
.hero-booking-panel span {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-light);
}
.hero-booking-panel strong {
    display: block;
    font-family: var(--font-serif);
    font-size: 2.2rem;
    color: var(--green-dark);
    line-height: 1.1;
    margin: 0.3rem 0;
}
.hero-booking-panel p {
    font-size: 0.86rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}
.hero-booking-panel a {
    color: var(--green);
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.78rem;
}

/* ===== HOME ABOUT ===== */
.home-about-section {
    background: var(--white);
}
.home-about-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 5rem;
    align-items: center;
}
.home-about-media {
    position: relative;
    min-height: 520px;
}
.home-about-media img {
    width: 88%;
    height: 520px;
    object-fit: cover;
}
.home-about-card {
    position: absolute;
    right: 0;
    bottom: 42px;
    width: 230px;
    background: var(--green-dark);
    border: 1px solid rgba(200,169,110,0.45);
    color: var(--white);
    padding: 1.6rem;
    box-shadow: 0 18px 45px var(--shadow);
}
.home-about-card strong {
    display: block;
    font-family: var(--font-serif);
    color: var(--gold-light);
    font-size: 3rem;
    line-height: 1;
}
.home-about-card span {
    display: block;
    color: rgba(255,255,255,0.75);
    font-size: 0.85rem;
    margin-top: 0.5rem;
}
.home-about-copy .section-desc {
    margin-bottom: 2rem;
}
.home-about-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.9rem;
    margin-bottom: 2rem;
}
.home-about-points div {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--off-white);
    border: 1px solid var(--border);
    padding: 0.9rem 1rem;
    color: var(--text-light);
    font-size: 0.9rem;
}
.home-about-points i {
    color: var(--gold);
    flex-shrink: 0;
}

/* ===== SECTIONS ===== */
section { padding: 100px 2rem; }
.container { max-width: 1200px; margin: 0 auto; }

.section-label {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.8rem;
}
.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--green-dark);
    line-height: 1.2;
    margin-bottom: 1rem;
}
.section-title::after,
.page-hero-content h1::after {
    content: "";
    display: block;
    width: min(230px, 70vw);
    height: 30px;
    margin: 1.05rem 0 1.15rem;
    background: url("data:image/svg+xml,%3Csvg width='230' height='30' viewBox='0 0 230 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 15h66M152 15h66' stroke='%23f2a334' stroke-width='1.7'/%3E%3Cpath d='M83 15c11-11 23-11 32 0-9 11-21 11-32 0ZM147 15c-11-11-23-11-32 0 9 11 21 11 32 0Z' stroke='%23c91d5a' stroke-width='1.6'/%3E%3Cpath d='M115 8l7 7-7 7-7-7Z' fill='%23f2a334' stroke='%23f2a334' stroke-width='1'/%3E%3Cpath d='M103 9c4 4 6 8 5 13M127 9c-4 4-6 8-5 13' stroke='%23143f24' stroke-width='1.4'/%3E%3Ccircle cx='88' cy='15' r='2.3' fill='%23f2a334'/%3E%3Ccircle cx='142' cy='15' r='2.3' fill='%23f2a334'/%3E%3Ccircle cx='6' cy='15' r='2' fill='%23111b3d'/%3E%3Ccircle cx='224' cy='15' r='2' fill='%23111b3d'/%3E%3C/g%3E%3C/svg%3E") center / contain no-repeat;
}
.section-head.center .section-title::after,
.page-hero-content h1::after {
    margin-left: auto;
    margin-right: auto;
}
.section-title[style*="var(--white)"]::after,
.testimonials-section .section-title::after,
.cta-section .section-title::after,
.page-hero-content h1::after {
    color: var(--gold);
}
.section-desc {
    color: var(--text-light);
    font-size: 1rem;
    max-width: 580px;
    line-height: 1.8;
}
.section-head { margin-bottom: 60px; }
.section-head.center { text-align: center; }
.section-head.center .section-desc { margin: 0 auto; }
.divider {
    display: none;
}
.divider.center { display: none; }

/* ===== STATS BAR ===== */
.stats-bar {
    background: var(--green);
    padding: 50px 2rem;
}

/* ===== BOOKING STRIP ===== */
.booking-strip-section {
    padding: 0 2rem;
    background: linear-gradient(180deg, var(--green) 0%, var(--white) 100%);
}
.booking-strip {
    position: relative;
    z-index: 5;
    margin-top: -42px;
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: 0 18px 45px var(--shadow);
    padding: 1.2rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr) auto;
    gap: 1rem;
    align-items: end;
}
.booking-strip label {
    display: block;
    font-size: 0.72rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 5px;
}
.booking-strip input,
.booking-strip select {
    width: 100%;
    border: 1px solid var(--border);
    background: var(--off-white);
    color: var(--text);
    padding: 12px 14px;
    min-height: 46px;
    font-family: var(--font-sans);
    outline: none;
}
.booking-strip input:focus,
.booking-strip select:focus { border-color: var(--gold); }
.booking-strip .btn-primary {
    min-height: 46px;
    padding: 12px 24px;
}
.stats-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}
.stat-item {
    text-align: center;
    color: var(--white);
    padding: 1rem;
    border-right: 1px solid rgba(255,255,255,0.15);
}
.stat-item:last-child { border-right: none; }
.stat-num {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    display: block;
}
.stat-label {
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    margin-top: 8px;
    display: block;
}

/* ===== ROOMS ===== */
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2rem;
}
.room-card {
    background: var(--white);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all var(--transition);
    position: relative;
}
.room-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px var(--shadow);
}
.room-img {
    position: relative;
    overflow: hidden;
    height: 240px;
}
.room-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.room-card:hover .room-img img { transform: scale(1.08); }
.room-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--gold);
    color: var(--green-dark);
    padding: 4px 14px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.room-body { padding: 1.8rem; }
.room-name {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--green-dark);
    margin-bottom: 0.5rem;
}
.room-meta {
    display: flex;
    gap: 1.2rem;
    margin: 0.8rem 0 1rem;
    font-size: 0.82rem;
    color: var(--text-light);
}
.room-meta span { display: flex; align-items: center; gap: 5px; }
.room-meta i { color: var(--gold); }
.room-desc {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1.4rem;
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.room-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1.2rem;
    border-top: 1px solid var(--border);
}
.room-price { font-family: var(--font-serif); }
.room-price .amount {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--green-dark);
}
.room-price .per { font-size: 0.8rem; color: var(--text-light); }
.room-link {
    background: var(--green);
    color: var(--white);
    padding: 10px 20px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: background var(--transition);
}
.room-link:hover { background: var(--gold); color: var(--green-dark); }

/* ===== SIGNATURE EXPERIENCES ===== */
.signature-section {
    background: linear-gradient(180deg, var(--white) 0%, var(--off-white) 100%);
}
.signature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.signature-card {
    background: var(--white);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
}
.signature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 45px var(--shadow);
}
.signature-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}
.signature-card div { padding: 1.6rem; }
.signature-card span {
    color: var(--gold);
    font-size: 0.72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.signature-card h3 {
    font-family: var(--font-serif);
    color: var(--green-dark);
    font-size: 1.25rem;
    margin: 0.35rem 0 0.5rem;
}
.signature-card p { color: var(--text-light); font-size: 0.9rem; }

/* ===== OFFERS ===== */
.offers-section { background: var(--white); }
.offers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.offer-card {
    position: relative;
    background: var(--off-white);
    border: 1px solid var(--border);
    padding: 2rem;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    transition: all var(--transition);
}
.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 45px var(--shadow);
}
.offer-card.featured {
    background: var(--green-dark);
    border-color: rgba(200,169,110,0.45);
    color: var(--white);
}
.offer-tag {
    align-self: flex-start;
    background: var(--gold-pale);
    color: var(--green);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 10px;
    margin-bottom: 1.2rem;
}
.offer-card.featured .offer-tag {
    background: rgba(200,169,110,0.18);
    color: var(--gold-light);
}
.offer-card h3 {
    font-family: var(--font-serif);
    color: var(--green-dark);
    font-size: 1.45rem;
    margin-bottom: 0.8rem;
}
.offer-card.featured h3 { color: var(--white); }
.offer-card p {
    color: var(--text-light);
    font-size: 0.93rem;
    margin-bottom: 1.5rem;
}
.offer-card.featured p { color: rgba(255,255,255,0.72); }
.offer-card strong {
    margin-top: auto;
    font-family: var(--font-serif);
    color: var(--gold);
    font-size: 1.45rem;
}
.offer-card a {
    margin-top: 1.2rem;
    color: var(--green);
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.offer-card.featured a { color: var(--gold-light); }

/* ===== DESTINATION ===== */
.destination-section {
    background: var(--off-white);
}
.destination-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4rem;
    align-items: center;
}
.destination-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
    margin: 2rem 0;
}
.destination-list span {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 0.9rem 1rem;
    color: var(--text-light);
    font-size: 0.9rem;
}
.destination-list i {
    color: var(--gold);
    margin-right: 8px;
}
.destination-media {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 1rem;
    align-items: end;
}
.destination-media img {
    width: 100%;
    height: 520px;
    object-fit: cover;
}
.destination-media img:last-child {
    height: 360px;
    margin-bottom: -2rem;
    border: 8px solid var(--white);
    box-shadow: 0 20px 50px var(--shadow);
}

/* ===== WHY US ===== */
.why-section { background: var(--off-white); }
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
.why-img-wrap {
    position: relative;
}
.why-img-main {
    width: 100%;
    height: 520px;
    object-fit: cover;
}
.why-img-accent {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 200px;
    height: 200px;
    object-fit: cover;
    border: 6px solid var(--white);
    box-shadow: 0 10px 30px var(--shadow);
}
.why-features { margin-top: 2rem; }
.why-feature {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 1.8rem;
    padding-bottom: 1.8rem;
    border-bottom: 1px solid var(--border);
}
.why-feature:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.why-icon {
    width: 52px;
    height: 52px;
    background: var(--green);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.why-feature h4 {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    color: var(--green-dark);
    margin-bottom: 0.3rem;
}
.why-feature p { font-size: 0.88rem; color: var(--text-light); }

/* ===== GALLERY PREVIEW ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 12px;
}
.gallery-item {
    overflow: hidden;
    position: relative;
    cursor: pointer;
}
.gallery-item:first-child {
    grid-row: span 2;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    min-height: 180px;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10,25,15,0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition);
    color: var(--white);
    font-size: 1.5rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-cta { text-align: center; margin-top: 3rem; }

/* ===== AMENITIES ===== */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.5rem;
}
.amenity-card {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 2.5rem 1.5rem;
    text-align: center;
    transition: all var(--transition);
}
.amenity-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px var(--shadow);
}
.amenity-icon {
    width: 64px;
    height: 64px;
    background: var(--gold-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    font-size: 1.4rem;
    color: var(--green);
    transition: all var(--transition);
}
.amenity-card:hover .amenity-icon {
    background: var(--green);
    color: var(--gold);
}
.amenity-card h4 {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    color: var(--green-dark);
    margin-bottom: 0.5rem;
}
.amenity-card p { font-size: 0.85rem; color: var(--text-light); }

/* ===== TESTIMONIALS ===== */
.testimonials-section { background: var(--green-dark); }
.testimonials-section .section-title { color: var(--white); }
.testimonials-section .section-label { color: var(--gold); }
.testimonials-section .divider { background: var(--gold); }
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}
.testimonial-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(200,169,110,0.2);
    padding: 2.5rem;
    transition: all var(--transition);
}
.testimonial-card:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--gold);
}
.stars { color: var(--gold); margin-bottom: 1rem; font-size: 0.9rem; }
.testimonial-text {
    color: rgba(255,255,255,0.8);
    font-style: italic;
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}
.testimonial-author { display: flex; align-items: center; gap: 1rem; }
.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold);
}
.author-name {
    font-weight: 700;
    color: var(--white);
    font-size: 0.9rem;
}
.author-loc { color: var(--gold); font-size: 0.8rem; }

/* ===== CTA BANNER ===== */
.cta-section {
    background: url('https://images.unsplash.com/photo-1520250497591-112f2f40a3f4?w=1600&auto=format&fit=crop') center/cover no-repeat;
    position: relative;
    text-align: center;
    padding: 120px 2rem;
}
.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10,25,15,0.7);
}
.cta-content { position: relative; max-width: 700px; margin: 0 auto; }
.cta-section .section-title { color: var(--white); }
.cta-section .section-label { color: var(--gold); }
.cta-section p { color: rgba(255,255,255,0.8); margin-bottom: 2.5rem; font-size: 1.05rem; }

/* ===== CONTACT ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 4rem;
    align-items: start;
}
.contact-info h3 {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    color: var(--green-dark);
    margin-bottom: 1rem;
}
.contact-info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}
.contact-info-icon {
    width: 44px;
    height: 44px;
    background: var(--green);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 50%;
}
.contact-info-text strong { display: block; font-size: 0.82rem; letter-spacing: 1px; text-transform: uppercase; color: var(--text-light); margin-bottom: 3px; }
.contact-info-text span { color: var(--text); font-size: 0.95rem; }
.contact-form { background: var(--off-white); padding: 2.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    background: var(--white);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--text);
    outline: none;
    transition: border-color var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-success {
    background: #d4edda;
    color: #155724;
    padding: 12px 18px;
    margin-bottom: 1rem;
    border-left: 4px solid #28a745;
    font-size: 0.9rem;
}
.form-error {
    background: #f8d7da;
    color: #721c24;
    padding: 12px 18px;
    margin-bottom: 1rem;
    border-left: 4px solid #dc3545;
    font-size: 0.9rem;
}

/* ===== ABOUT PAGE ===== */
.page-hero {
    height: 420px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}
.page-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}
.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10,25,15,0.65);
}
.page-hero-content {
    position: relative;
    color: var(--white);
}
.page-hero-content .section-label { justify-content: center; display: flex; }
.page-hero-content h1 {
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin: 0.5rem 0;
}
.breadcrumb {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    margin-top: 0.8rem;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,0.5); }

/* ===== ROOM DETAIL ===== */
.room-detail-hero {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: end;
    justify-content: center;
    overflow: hidden;
    padding: 0 2rem 4rem;
}
.room-detail-hero > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.room-detail-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(10,25,15,0.25), rgba(10,25,15,0.8));
}
.room-detail-title {
    position: relative;
    color: var(--white);
    text-align: center;
    max-width: 900px;
}
.room-detail-title h1 {
    font-family: var(--font-serif);
    font-size: clamp(2.6rem, 6vw, 4.6rem);
    line-height: 1.1;
}
.room-detail-section { background: var(--white); }
.room-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 3rem;
    align-items: start;
}
.room-detail-gallery {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 12px;
    margin-bottom: 3rem;
}
.room-detail-gallery img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}
.room-detail-gallery img:first-child {
    grid-row: span 2;
    height: 452px;
}
.room-detail-content { margin-bottom: 2.5rem; }
.room-detail-content p {
    color: var(--text-light);
    font-size: 1.02rem;
    line-height: 1.9;
}
.room-feature-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid var(--border);
    margin-bottom: 3rem;
}
.room-feature-strip div {
    padding: 1.4rem;
    border-right: 1px solid var(--border);
}
.room-feature-strip div:last-child { border-right: 0; }
.room-feature-strip i {
    color: var(--gold);
    margin-bottom: 0.55rem;
    display: block;
}
.room-feature-strip strong {
    color: var(--green-dark);
    display: block;
    font-family: var(--font-serif);
    font-size: 1.2rem;
}
.room-feature-strip span {
    color: var(--text-light);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.room-amenities-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
}
.room-amenities-list span {
    border: 1px solid var(--border);
    padding: 0.8rem 1rem;
    color: var(--text-light);
    background: var(--off-white);
}
.room-amenities-list i { color: var(--gold); margin-right: 8px; }
.booking-card {
    position: sticky;
    top: 110px;
    background: var(--green-dark);
    color: var(--white);
    padding: 2rem;
    border: 1px solid rgba(200,169,110,0.35);
    box-shadow: 0 18px 55px var(--shadow);
}
.booking-card > span {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.75rem;
}
.booking-price {
    font-family: var(--font-serif);
    font-size: 2.7rem;
    color: var(--gold-light);
    margin: 0.5rem 0 1rem;
}
.booking-price small {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
}
.booking-card p {
    color: rgba(255,255,255,0.72);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}
.booking-card .btn-primary { width: 100%; text-align: center; }
.booking-secondary {
    display: block;
    text-align: center;
    margin: 1rem 0 1.4rem;
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 700;
}
.booking-card ul {
    border-top: 1px solid rgba(255,255,255,0.12);
    padding-top: 1rem;
}
.booking-card li {
    color: rgba(255,255,255,0.72);
    font-size: 0.86rem;
    margin-bottom: 0.7rem;
}
.booking-card li i { color: var(--gold); margin-right: 8px; }

/* ===== GALLERY PAGE ===== */
.gallery-full {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 16px;
}
.gallery-full .gallery-item { height: 240px; }
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}
.lightbox.active { display: flex; }
.lightbox-img { max-width: 90vw; max-height: 88vh; object-fit: contain; }
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s;
}
.lightbox-close:hover { opacity: 1; }

/* ===== FOOTER ===== */
.footer { background: var(--green-dark); color: rgba(255,255,255,0.75); }
.footer-top { padding: 80px 2rem; }
.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
}
.footer-brand h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}
.footer-brand h3 .logo-icon { color: var(--gold); margin-right: 8px; }

/* Footer Logo */
.footer-logo-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
}
.footer-logo-img {
    width: 58px !important;
    height: 58px !important;
    max-width: 58px !important;
    object-fit: contain;
    border-radius: 50%;
    background: #ffffff;
    padding: 6px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.25);
    flex-shrink: 0;
    display: block;
}
.footer-logo-text {
    display: flex;
    flex-direction: column;
}
.footer-logo-name {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--white);
    font-weight: 600;
    line-height: 1.2;
}
.footer-logo-tag {
    font-size: 0.7rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
}
.footer-tagline {
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}
.footer-brand p { font-size: 0.88rem; line-height: 1.8; margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: 0.8rem; }
.footer-social a {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    transition: all var(--transition);
}
.footer-social a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--green-dark);
}
.footer-col h4 {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    color: var(--white);
    margin-bottom: 1.2rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid rgba(200,169,110,0.3);
}
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.65);
    transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-contact-info p {
    font-size: 0.85rem;
    margin-bottom: 0.8rem;
    line-height: 1.6;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}
.footer-contact-info i { color: var(--gold); margin-top: 3px; flex-shrink: 0; }
.footer-contact-info a { color: rgba(255,255,255,0.65); }
.footer-contact-info a:hover { color: var(--gold); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
    font-size: 0.82rem;
}
.footer-bottom a { color: var(--gold); }

/* ===== SCROLL TOP ===== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    background: var(--gold);
    color: var(--green-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition);
    z-index: 500;
    box-shadow: 0 4px 20px rgba(200,169,110,0.4);
}
.scroll-top.visible { opacity: 1; pointer-events: auto; }
.scroll-top:hover { background: var(--gold-light); transform: translateY(-3px); }

/* ===== WHATSAPP WIDGET ===== */
.whatsapp-widget {
    position: fixed;
    bottom: 85px;
    right: 28px;
    width: 52px;
    height: 52px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(37,211,102,0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    animation: waPulse 2s infinite;
}
.whatsapp-widget:hover {
    transform: scale(1.12);
    box-shadow: 0 6px 28px rgba(37,211,102,0.7);
}
.wa-tooltip {
    position: absolute;
    right: 60px;
    background: #fff;
    color: #128C7E;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
    white-space: nowrap;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}
.whatsapp-widget:hover .wa-tooltip { opacity: 1; }
@keyframes waPulse {
    0%   { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
    70%  { box-shadow: 0 0 0 12px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* Footer phones */
.footer-phones {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin: 6px 0;
}
.footer-phones a {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.75);
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
}
.footer-phones a i { color: var(--gold); font-size: 0.75rem; }
.footer-phones a:hover { color: var(--gold); }

/* ===== ATTRACTIONS PAGE ===== */
.attractions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}
.attraction-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.attraction-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.14);
}
.attraction-img {
    position: relative;
    height: 210px;
    overflow: hidden;
}
.attraction-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.attraction-card:hover .attraction-img img { transform: scale(1.06); }
.attraction-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--gold);
    color: var(--green-dark);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: 20px;
}
.attraction-body {
    padding: 1.4rem 1.5rem 1.6rem;
}
.attraction-body h3 {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    color: var(--green-dark);
    margin-bottom: 0.4rem;
}
.attraction-dist {
    font-size: 0.8rem;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 0.7rem;
    display: flex;
    align-items: center;
    gap: 5px;
}
.attraction-body p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.75;
    margin-bottom: 1rem;
}
.attraction-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.attraction-tags span {
    font-size: 0.75rem;
    background: var(--off-white);
    color: var(--text-light);
    padding: 4px 10px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 4px;
}
.attraction-tags span i { color: var(--gold); }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(-8px); }
}
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .why-grid { grid-template-columns: 1fr; }
    .why-img-wrap { display: none; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .home-about-grid { grid-template-columns: 1fr; gap: 3rem; }
    .hero-booking-panel { display: none; }
    .signature-grid { grid-template-columns: 1fr; }
    .offers-grid { grid-template-columns: 1fr; }
    .booking-strip { grid-template-columns: 1fr 1fr; }
    .booking-strip .btn-primary { grid-column: 1 / -1; }
    .destination-grid { grid-template-columns: 1fr; }
    .destination-media { order: -1; }
    .room-detail-layout { grid-template-columns: 1fr; }
    .booking-card { position: static; }
}
@media (max-width: 768px) {
    .topbar { display: none; }
    .navbar { padding: 0 1.2rem; }
    .navbar { top: 0; }
    .nav-menu {
        position: fixed;
        top: 80px; left: 0; right: 0;
        background: var(--green-dark);
        flex-direction: column;
        padding: 2rem;
        gap: 1.2rem;
        transform: translateY(-110%);
        transition: transform 0.4s ease;
    }
    .nav-menu.open { transform: translateY(0); }
    .hamburger { display: flex; }
    section { padding: 70px 1.2rem; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .gallery-grid .gallery-item:first-child { grid-row: span 1; }
    .footer-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .form-row { grid-template-columns: 1fr; }
    .hero-actions { flex-direction: column; align-items: center; }
    .hero { min-height: 720px; }
    .hero-arrow { display: none; }
    .hero-dots { bottom: 74px; }
    .home-about-media { min-height: auto; }
    .home-about-media img { width: 100%; height: 320px; }
    .home-about-card {
        position: relative;
        right: auto;
        bottom: auto;
        width: 100%;
        margin-top: 1rem;
    }
    .home-about-points { grid-template-columns: 1fr; }
    .room-detail-gallery { grid-template-columns: 1fr; }
    .room-detail-gallery img,
    .room-detail-gallery img:first-child { height: 260px; grid-row: auto; }
    .room-feature-strip { grid-template-columns: repeat(2, 1fr); }
    .room-feature-strip div:nth-child(2) { border-right: 0; }
    .room-feature-strip div:nth-child(-n+2) { border-bottom: 1px solid var(--border); }
    .room-amenities-list { grid-template-columns: 1fr; }
    .booking-strip { grid-template-columns: 1fr; margin-top: -28px; }
    .destination-list { grid-template-columns: 1fr; }
    .destination-media { grid-template-columns: 1fr; }
    .destination-media img,
    .destination-media img:last-child {
        height: 280px;
        margin-bottom: 0;
        border: 0;
    }
}

