/* ===== PAHADI RESORT - Main Stylesheet ===== */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&family=Jost:wght@300;400;500;600&display=swap');

:root {
    --forest: #1a2e1a;
    --pine: #2d4a2d;
    --moss: #4a6741;
    --sage: #7a9e6e;
    --mist: #c5d9b8;
    --snow: #f5f7f2;
    --gold: #c9a84c;
    --warm: #8b6914;
    --stone: #6b6b5e;
    --cream: #faf8f2;
    --white: #ffffff;
    --dark: #0f1a0f;
    --shadow: rgba(26,46,26,0.15);
    --shadow-deep: rgba(26,46,26,0.3);
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Jost', sans-serif;
    --radius: 4px;
    --radius-lg: 12px;
    --transition: all 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-body);
    font-weight: 400;
    color: var(--forest);
    background: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
}

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

/* ===== TOP BAR ===== */
.top-bar {
    background: var(--forest);
    color: var(--mist);
    padding: 8px 0;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.03em;
}
.top-bar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.top-bar a { color: var(--mist); }
.top-bar a:hover { color: var(--gold); }
.top-bar-contacts { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.top-bar-contacts a { display: flex; align-items: center; gap: 6px; }

/* ===== HEADER ===== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 2px 20px var(--shadow);
    transition: var(--transition);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
}
.logo { display: flex; align-items: center; gap: 14px; }
.logo-img { height: 54px; width: auto; }
.logo-text h1 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; color: var(--forest); line-height: 1.2; }
.logo-text span { font-size: 0.72rem; color: var(--stone); font-weight: 400; letter-spacing: 0.12em; text-transform: uppercase; }

/* NAV */
.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav a {
    padding: 8px 16px;
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--forest);
    border-radius: var(--radius);
    position: relative;
    white-space: nowrap;
}
.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 4px; left: 16px; right: 16px;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transition: var(--transition);
}
.main-nav a:hover::after, .main-nav a.active::after { transform: scaleX(1); }
.main-nav a:hover, .main-nav a.active { color: var(--moss); }
.nav-book-btn {
    background: var(--gold) !important;
    color: var(--white) !important;
    padding: 10px 24px !important;
    border-radius: 2px !important;
    font-weight: 600 !important;
    letter-spacing: 0.08em !important;
}
.nav-book-btn::after { display: none !important; }
.nav-book-btn:hover { background: var(--warm) !important; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(201,168,76,0.35) !important; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--forest); transition: var(--transition); border-radius: 2px; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== CONTAINER ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 24px; }

/* ===== HERO SLIDER ===== */
.hero-slider {
    position: relative;
    height: 100vh;
    min-height: 580px;
    max-height: 800px;
    overflow: hidden;
}
.slider-track { display: flex; height: 100%; transition: transform 0.8s cubic-bezier(0.77,0,0.175,1); }
.slide {
    min-width: 100%;
    position: relative;
    overflow: hidden;
}
.slide-bg {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    transition: transform 8s ease;
}
.slide.active .slide-bg { transform: scale(1); }
.slide-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(15,26,15,0.65) 0%, rgba(26,46,26,0.35) 60%, transparent 100%);
}
.slide-content {
    position: relative; z-index: 2;
    height: 100%;
    display: flex; align-items: center;
    padding: 0 5%;
}
.slide-text { max-width: 640px; color: var(--white); }
.slide-label {
    display: inline-block;
    font-size: 0.75rem; font-weight: 600;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
    opacity: 0; transform: translateY(20px);
    transition: all 0.6s 0.2s ease;
}
.slide.active .slide-label { opacity: 1; transform: translateY(0); }
.slide-title {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 6vw, 4.5rem);
    font-weight: 600; line-height: 1.15;
    margin-bottom: 20px;
    opacity: 0; transform: translateY(30px);
    transition: all 0.7s 0.35s ease;
}
.slide.active .slide-title { opacity: 1; transform: translateY(0); }
.slide-sub {
    font-size: 1.05rem; font-weight: 300;
    color: rgba(255,255,255,0.88);
    margin-bottom: 36px;
    opacity: 0; transform: translateY(20px);
    transition: all 0.6s 0.5s ease;
}
.slide.active .slide-sub { opacity: 1; transform: translateY(0); }
.slide-actions {
    display: flex; gap: 14px; flex-wrap: wrap;
    opacity: 0; transform: translateY(20px);
    transition: all 0.6s 0.65s ease;
}
.slide.active .slide-actions { opacity: 1; transform: translateY(0); }

/* Slider controls */
.slider-controls {
    position: absolute; bottom: 32px; left: 50%;
    transform: translateX(-50%);
    z-index: 10; display: flex; gap: 10px;
}
.slider-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.45);
    cursor: pointer; transition: var(--transition);
    border: none; padding: 0;
}
.slider-dot.active { background: var(--gold); width: 28px; border-radius: 4px; }
.slider-arrow {
    position: absolute; top: 50%; z-index: 10;
    transform: translateY(-50%);
    width: 50px; height: 50px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 50%;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    color: var(--white); font-size: 1.3rem;
    transition: var(--transition);
}
.slider-arrow:hover { background: var(--gold); border-color: var(--gold); }
.slider-prev { left: 24px; }
.slider-next { right: 24px; }

/* ===== BOOKING BAR ===== */
.booking-bar {
    background: var(--white);
    box-shadow: 0 8px 40px var(--shadow-deep);
    position: relative;
    z-index: 50;
    margin: -1px 0 0;
}
.booking-bar-inner {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr auto;
    gap: 0;
}
.booking-field {
    padding: 22px 24px;
    border-right: 1px solid rgba(26,46,26,0.1);
    cursor: pointer;
    transition: var(--transition);
}
.booking-field:hover { background: var(--snow); }
.booking-field label {
    display: block;
    font-size: 0.7rem; font-weight: 600;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--stone); margin-bottom: 6px;
}
.booking-field input, .booking-field select {
    width: 100%;
    border: none; outline: none;
    font-family: var(--font-body);
    font-size: 0.95rem; font-weight: 500;
    color: var(--forest);
    background: transparent;
    cursor: pointer;
}
.booking-submit {
    background: var(--gold);
    border: none;
    padding: 22px 36px;
    font-family: var(--font-body);
    font-size: 0.9rem; font-weight: 600;
    letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}
.booking-submit:hover { background: var(--warm); }

/* ===== SECTIONS ===== */
.section { padding: 90px 0; }
.section-sm { padding: 60px 0; }
.section-dark { background: var(--forest); color: var(--snow); }
.section-muted { background: var(--snow); }

.section-header { text-align: center; margin-bottom: 56px; }
.section-label {
    display: inline-block;
    font-size: 0.72rem; font-weight: 600;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 14px;
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600; color: var(--forest);
    line-height: 1.25;
}
.section-dark .section-title { color: var(--snow); }
.section-divider {
    width: 50px; height: 2px;
    background: var(--gold);
    margin: 18px auto 20px;
}
.section-sub { font-size: 1rem; color: var(--stone); max-width: 580px; margin: 0 auto; font-weight: 300; }
.section-dark .section-sub { color: var(--mist); }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 0.88rem; font-weight: 600;
    letter-spacing: 0.08em; text-transform: uppercase;
    border: 2px solid transparent;
    border-radius: 2px;
    cursor: pointer; transition: var(--transition);
    white-space: nowrap;
}
.btn-primary { background: var(--gold); color: var(--white); }
.btn-primary:hover { background: var(--warm); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(201,168,76,0.4); }
.btn-outline { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--forest); }
.btn-forest { background: var(--forest); color: var(--white); }
.btn-forest:hover { background: var(--pine); transform: translateY(-2px); }
.btn-sm { padding: 10px 22px; font-size: 0.8rem; }
.btn-wa { background: #25d366; color: var(--white) !important; }
.btn-wa:hover { background: #128c7e; }

/* ===== ROOMS GRID ===== */
.rooms-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; }
.room-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 24px var(--shadow);
    transition: var(--transition);
    display: flex; flex-direction: column;
}
.room-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px var(--shadow-deep); }
.room-card-img {
    position: relative;
    height: 230px;
    overflow: hidden;
}
.room-card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.room-card:hover .room-card-img img { transform: scale(1.06); }
.room-badge {
    position: absolute; top: 14px; left: 14px;
    background: var(--gold);
    color: var(--white);
    padding: 5px 12px;
    font-size: 0.72rem; font-weight: 700;
    letter-spacing: 0.08em; text-transform: uppercase;
    border-radius: 2px;
}
.room-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.room-card-title {
    font-family: var(--font-display);
    font-size: 1.35rem; font-weight: 600;
    color: var(--forest); margin-bottom: 8px;
}
.room-card-desc { font-size: 0.88rem; color: var(--stone); margin-bottom: 16px; line-height: 1.6; flex: 1; }
.room-amenities { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px; }
.amenity-tag {
    background: var(--snow);
    color: var(--stone);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.73rem; font-weight: 500;
}
.room-card-footer {
    display: flex; align-items: center; justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--mist);
}
.room-price { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--forest); }
.room-price span { font-size: 0.78rem; font-weight: 400; color: var(--stone); font-family: var(--font-body); }
.room-capacity { font-size: 0.8rem; color: var(--stone); display: flex; align-items: center; gap: 5px; }

/* ===== ABOUT SECTION ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-images { position: relative; }
.about-main-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 480px;
}
.about-main-img img { width: 100%; height: 100%; object-fit: cover; }
.about-float {
    position: absolute;
    bottom: -24px; right: -24px;
    width: 220px; height: 220px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 6px solid var(--white);
    box-shadow: 0 8px 32px var(--shadow-deep);
}
.about-float img { width: 100%; height: 100%; object-fit: cover; }
.about-text .section-title { text-align: left; }
.about-text .section-label { display: inline-block; }
.about-text .section-divider { margin: 18px 0; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 32px; }
.about-feature { display: flex; align-items: flex-start; gap: 12px; }
.about-feature-icon {
    width: 42px; height: 42px; min-width: 42px;
    background: rgba(201,168,76,0.12);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.15rem;
}
.about-feature-text h4 { font-size: 0.88rem; font-weight: 600; color: var(--forest); margin-bottom: 3px; }
.about-feature-text p { font-size: 0.8rem; color: var(--stone); line-height: 1.5; }

/* ===== STATS BAR ===== */
.stats-bar { background: var(--gold); padding: 40px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stat-item { color: var(--white); }
.stat-num { font-family: var(--font-display); font-size: 2.8rem; font-weight: 700; line-height: 1; margin-bottom: 6px; }
.stat-label { font-size: 0.8rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.88; }

/* ===== SERVICES ===== */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 28px; }
.service-card {
    background: var(--white);
    padding: 36px 28px;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid transparent;
    transition: var(--transition);
    box-shadow: 0 2px 16px var(--shadow);
}
.service-card:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: 0 12px 40px var(--shadow-deep); }
.service-icon { font-size: 2.2rem; margin-bottom: 18px; display: block; }
.service-title { font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; color: var(--forest); margin-bottom: 12px; }
.service-desc { font-size: 0.87rem; color: var(--stone); line-height: 1.65; }

/* ===== NEARBY PLACES ===== */
.places-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.place-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    display: flex; align-items: flex-start; gap: 18px;
    box-shadow: 0 2px 16px var(--shadow);
    border-left: 3px solid var(--gold);
    transition: var(--transition);
}
.place-card:hover { transform: translateX(4px); box-shadow: 0 8px 32px var(--shadow-deep); }
.place-icon { font-size: 2rem; min-width: 44px; }
.place-info h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; color: var(--forest); margin-bottom: 4px; }
.place-dist { font-size: 0.75rem; font-weight: 600; color: var(--gold); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 8px; }
.place-info p { font-size: 0.84rem; color: var(--stone); line-height: 1.55; }

/* ===== REVIEWS ===== */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.review-card {
    background: var(--white);
    padding: 28px;
    border-radius: var(--radius-lg);
    box-shadow: 0 2px 16px var(--shadow);
    transition: var(--transition);
    position: relative;
}
.review-card::before {
    content: '"';
    position: absolute; top: 16px; right: 20px;
    font-family: var(--font-display);
    font-size: 5rem; color: var(--mist);
    line-height: 1;
}
.review-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px var(--shadow-deep); }
.review-stars { color: #f5a623; font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 14px; }
.review-text { font-size: 0.9rem; color: var(--stone); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
    width: 44px; height: 44px;
    background: linear-gradient(135deg, var(--moss), var(--gold));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; font-weight: 700; color: var(--white);
    font-family: var(--font-display);
}
.review-name { font-weight: 600; font-size: 0.92rem; color: var(--forest); }
.review-loc { font-size: 0.75rem; color: var(--stone); }
.review-source { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); display: inline-flex; align-items: center; gap: 4px; margin-top: 2px; }
.add-review-box {
    background: linear-gradient(135deg, var(--forest), var(--pine));
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
    color: var(--white);
    margin-top: 48px;
}
.add-review-box h3 { font-family: var(--font-display); font-size: 1.6rem; margin-bottom: 12px; }
.add-review-box p { color: var(--mist); margin-bottom: 24px; font-size: 0.9rem; }
.review-links { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== REVIEW FORM ===== */
.review-form-section { background: var(--snow); padding: 50px 0; }
.review-form {
    max-width: 640px; margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: 0 4px 24px var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--forest); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--mist);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 0.92rem;
    color: var(--forest);
    background: var(--cream);
    transition: var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.star-rating { display: flex; gap: 6px; }
.star-rating input { display: none; }
.star-rating label { font-size: 1.6rem; cursor: pointer; color: #ddd; transition: var(--transition); }
.star-rating input:checked ~ label,
.star-rating label:hover,
.star-rating label:hover ~ label { color: #f5a623; }
.star-rating { flex-direction: row-reverse; }

/* ===== PAYMENT SECTION ===== */
.payment-section { background: var(--snow); padding: 50px 0; }
.payment-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.payment-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    text-align: center;
    box-shadow: 0 2px 16px var(--shadow);
}
.payment-card h3 { font-family: var(--font-display); font-size: 1.2rem; margin-bottom: 16px; color: var(--forest); }
.payment-card p { font-size: 0.85rem; color: var(--stone); margin-bottom: 4px; }
.payment-card strong { color: var(--forest); }
.qr-img { width: 140px; height: 140px; margin: 16px auto; border: 2px solid var(--mist); border-radius: 8px; }

/* ===== MAP ===== */
.map-section { }
.map-section iframe { width: 100%; height: 420px; border: none; display: block; }

/* ===== CONTACT BAR ===== */
.contact-bar { background: var(--forest); color: var(--snow); padding: 60px 0; }
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 36px; }
.contact-item { text-align: center; }
.contact-item-icon { font-size: 2rem; margin-bottom: 14px; }
.contact-item h3 { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.contact-item p, .contact-item a { font-size: 0.9rem; color: var(--mist); }
.contact-item a:hover { color: var(--gold); }

/* ===== FOOTER ===== */
.site-footer { background: var(--dark); color: var(--mist); }
.footer-main { padding: 64px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; }
.footer-brand .logo { margin-bottom: 18px; }
.footer-brand .logo-text h1 { color: var(--snow); }
.footer-brand p { font-size: 0.87rem; color: rgba(197,217,184,0.7); line-height: 1.7; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 10px; }
.social-btn {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    display: flex; align-items: center; justify-content: center;
    color: var(--mist); font-size: 0.9rem;
    transition: var(--transition);
}
.social-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }
.footer-col h4 { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--snow); margin-bottom: 20px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.87rem; color: rgba(197,217,184,0.7); transition: var(--transition); }
.footer-links a:hover { color: var(--gold); padding-left: 6px; }
.footer-contact-item { display: flex; gap: 10px; margin-bottom: 12px; font-size: 0.87rem; color: rgba(197,217,184,0.7); }
.footer-contact-item span:first-child { color: var(--gold); min-width: 18px; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.07);
    padding: 20px 0;
    display: flex; justify-content: space-between; align-items: center;
    font-size: 0.78rem; color: rgba(197,217,184,0.5);
    flex-wrap: wrap; gap: 10px;
}
.footer-bottom a { color: rgba(197,217,184,0.5); }
.footer-bottom a:hover { color: var(--gold); }

/* ===== WHATSAPP FAB ===== */
.wa-fab {
    position: fixed; bottom: 28px; right: 28px;
    width: 60px; height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.7rem; color: var(--white);
    box-shadow: 0 6px 24px rgba(37,211,102,0.45);
    z-index: 500;
    animation: pulse 2.5s infinite;
    transition: var(--transition);
}
.wa-fab:hover { transform: scale(1.1); background: #128c7e; }
@keyframes pulse {
    0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,0.45); }
    50% { box-shadow: 0 6px 40px rgba(37,211,102,0.7); }
}

/* ===== BOOKING MODAL ===== */
.modal-overlay {
    display: none;
    position: fixed; inset: 0;
    background: rgba(15,26,15,0.75);
    backdrop-filter: blur(6px);
    z-index: 2000;
    align-items: center; justify-content: center;
    padding: 20px;
}
.modal-overlay.open { display: flex; }
.modal-box {
    background: var(--white);
    border-radius: var(--radius-lg);
    max-width: 680px; width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 24px 80px rgba(0,0,0,0.35);
}
.modal-header {
    padding: 28px 32px 20px;
    border-bottom: 1px solid var(--mist);
    display: flex; justify-content: space-between; align-items: center;
    position: sticky; top: 0; background: var(--white); z-index: 2;
}
.modal-header h2 { font-family: var(--font-display); font-size: 1.6rem; color: var(--forest); }
.modal-close {
    width: 36px; height: 36px;
    border: none; background: var(--snow);
    border-radius: 50%; cursor: pointer;
    font-size: 1.1rem; color: var(--stone);
    display: flex; align-items: center; justify-content: center;
    transition: var(--transition);
}
.modal-close:hover { background: var(--mist); color: var(--forest); }
.modal-body { padding: 28px 32px 32px; }

/* ===== PAGE HERO ===== */
.page-hero {
    background: linear-gradient(135deg, var(--forest) 0%, var(--pine) 100%);
    padding: 80px 0;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute; inset: 0;
    background: url('https://pahadiresort.com/wp-content/uploads/2025/12/20251014_151934-scaled.jpg') center/cover;
    opacity: 0.15;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 600; margin-bottom: 12px; }
.page-hero p { font-size: 1rem; color: rgba(255,255,255,0.8); }
.breadcrumb { display: flex; gap: 8px; justify-content: center; align-items: center; margin-top: 16px; font-size: 0.82rem; color: rgba(255,255,255,0.65); }
.breadcrumb a { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,0.4); }

/* ===== ROOM DETAIL ===== */
.room-gallery { display: grid; grid-template-columns: 2fr 1fr; gap: 4px; border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 40px; }
.room-gallery .main-img { height: 420px; overflow: hidden; }
.room-gallery .main-img img { width: 100%; height: 100%; object-fit: cover; }
.room-gallery-side { display: grid; grid-template-rows: 1fr 1fr; gap: 4px; }
.room-gallery-side img { width: 100%; height: 100%; object-fit: cover; }
.room-detail-grid { display: grid; grid-template-columns: 1fr 360px; gap: 40px; align-items: start; }

/* ===== BOOKING CARD ===== */
.booking-sticky {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px 28px;
    box-shadow: 0 4px 32px var(--shadow-deep);
    position: sticky; top: 90px;
}
.booking-sticky-price { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--forest); margin-bottom: 6px; }
.booking-sticky-price span { font-size: 0.9rem; font-weight: 400; color: var(--stone); font-family: var(--font-body); }

/* ===== ALERTS ===== */
.alert { padding: 14px 18px; border-radius: var(--radius); margin-bottom: 20px; font-size: 0.9rem; }
.alert-success { background: rgba(74,103,65,0.1); border: 1px solid var(--sage); color: var(--pine); }
.alert-error { background: rgba(180,50,50,0.1); border: 1px solid rgba(180,50,50,0.3); color: #7a2020; }
.alert-info { background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.3); color: var(--warm); }

/* ===== GALLERY PAGE ===== */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; }
.gallery-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    position: relative;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item-overlay {
    position: absolute; inset: 0;
    background: rgba(26,46,26,0.5);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: var(--transition);
    font-size: 1.5rem; color: var(--white);
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }

/* ===== BOOKING CONFIRMATION ===== */
.confirmation-card {
    max-width: 640px; margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 48px;
    box-shadow: 0 8px 40px var(--shadow);
    text-align: center;
}
.confirmation-icon { font-size: 4rem; margin-bottom: 20px; }
.confirmation-id { background: var(--snow); border-radius: var(--radius); padding: 14px 20px; margin: 20px 0; font-size: 1.1rem; font-weight: 600; letter-spacing: 0.08em; color: var(--forest); }
.confirmation-details { text-align: left; border-top: 1px solid var(--mist); padding-top: 24px; margin-top: 24px; }
.confirmation-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--snow); font-size: 0.9rem; }
.confirmation-row:last-child { border-bottom: none; }
.confirmation-row dt { color: var(--stone); }
.confirmation-row dd { font-weight: 600; color: var(--forest); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-float { display: none; }
    .room-detail-grid { grid-template-columns: 1fr; }
    .booking-sticky { position: static; }
}

@media (max-width: 768px) {
    .main-nav { display: none; position: fixed; top: 0; right: 0; bottom: 0; width: 280px; background: var(--white); flex-direction: column; align-items: flex-start; padding: 80px 28px 32px; box-shadow: -8px 0 32px var(--shadow-deep); transform: translateX(100%); transition: transform 0.4s ease; z-index: 999; overflow-y: auto; }
    .main-nav.open { display: flex; transform: translateX(0); }
    .hamburger { display: flex; z-index: 1000; }
    .booking-bar-inner { grid-template-columns: 1fr 1fr; }
    .booking-field:nth-child(3), .booking-field:nth-child(4) { border-top: 1px solid rgba(26,46,26,0.1); }
    .booking-submit { grid-column: span 2; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .form-row { grid-template-columns: 1fr; }
    .room-gallery { grid-template-columns: 1fr; }
    .room-gallery-side { display: none; }
    .rooms-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .top-bar .container { flex-direction: column; gap: 4px; }
    .hero-slider { height: 70vh; }
    .section { padding: 60px 0; }
}

@media (max-width: 480px) {
    .booking-bar-inner { grid-template-columns: 1fr; }
    .booking-submit { grid-column: span 1; }
    .booking-field { border-right: none; border-bottom: 1px solid rgba(26,46,26,0.1); }
    .slide-title { font-size: 2rem; }
    .review-form { padding: 24px; }
    .add-review-box { padding: 28px 20px; }
}
