
    /* ===== CSS VARIABLES ===== */
    :root {
      --green: #53ca71;
      --mint: #bcd5b3;
      --dark: #001f17;
      --light: #b1fbc4;
      --white: #f5fff7;
      --text: #1a3a2a;
      --muted: #3a6652;
      --overlay: rgba(0, 31, 23, 0.55);
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--white);
      color: var(--text);
      overflow-x: hidden;
    }

    /* ===== SCROLLBAR ===== */
    ::-webkit-scrollbar { width: 6px; }
    ::-webkit-scrollbar-track { background: var(--dark); }
    ::-webkit-scrollbar-thumb { background: var(--green); border-radius: 3px; }

    /* ===== NAV ===== */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 18px 40px;
      background: transparent;
      transition: background 0.4s, box-shadow 0.4s;
    }
    nav.scrolled {
      background: rgba(0, 31, 23, 0.95);
      box-shadow: 0 4px 30px rgba(0,0,0,0.3);
      backdrop-filter: blur(12px);
    }
    .nav-logo {
      font-family: 'Playfair Display', serif;
      font-size: 1.5rem;
      color: var(--light);
      letter-spacing: 0.5px;
      text-decoration: none;
    }
    .nav-logo span { color: var(--green); }
    .nav-links {
      display: flex;
      gap: 32px;
      list-style: none;
    }
    .nav-links a {
      color: rgba(177,251,196,0.85);
      text-decoration: none;
      font-size: 0.9rem;
      font-weight: 500;
      letter-spacing: 0.5px;
      transition: color 0.2s;
      position: relative;
    }
    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -4px; left: 0;
      width: 0; height: 2px;
      background: var(--green);
      transition: width 0.3s;
    }
    .nav-links a:hover { color: var(--light); }
    .nav-links a:hover::after { width: 100%; }

    /* Hamburger */
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      background: none;
      border: none;
      padding: 4px;
    }
    .hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--light);
      border-radius: 2px;
      transition: all 0.3s;
    }
    .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* ===== HERO ===== */
    #home {
      position: relative;
      height: 100vh;
      min-height: 600px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background:
        linear-gradient(to bottom, rgba(0,31,23,0.3) 0%, rgba(0,31,23,0.6) 100%),
        url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1800&q=80') center/cover no-repeat;
      transform: scale(1.05);
      animation: heroZoom 20s ease-in-out infinite alternate;
    }
    @keyframes heroZoom {
      from { transform: scale(1.0); }
      to   { transform: scale(1.08); }
    }

    /* Mountain silhouette SVG overlay */
    .mountain-silhouette {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      z-index: 2;
    }

    .hero-content {
      position: relative;
      z-index: 3;
      text-align: center;
      padding: 0 20px;
      max-width: 800px;
      animation: fadeUp 1s ease 0.3s both;
    }
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(40px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    .hero-tag {
      display: inline-block;
      background: rgba(83,202,113,0.2);
      border: 1px solid var(--green);
      color: var(--light);
      font-size: 0.78rem;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      padding: 6px 18px;
      border-radius: 100px;
      margin-bottom: 20px;
    }
    .hero-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 7vw, 4.8rem);
      color: var(--white);
      line-height: 1.1;
      margin-bottom: 16px;
    }
    .hero-title em {
      color: var(--green);
      font-style: italic;
    }
    .hero-sub {
      font-size: 1rem;
      color: var(--mint);
      font-weight: 300;
      margin-bottom: 20px;
      line-height: 1.6;
    }
    .hero-btns {
      display: flex;
      gap: 14px;
      justify-content: center;
      flex-wrap: wrap;
    }
    .btn-primary {
      background: var(--green);
      color: var(--dark);
      padding: 14px 32px;
      border-radius: 100px;
      text-decoration: none;
      font-weight: 600;
      font-size: 0.95rem;
      transition: all 0.3s;
      border: 2px solid var(--green);
    }
    .btn-primary:hover {
      background: var(--light);
      border-color: var(--light);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(83,202,113,0.4);
    }
    .btn-ghost {
      background: transparent;
      color: var(--light);
      padding: 14px 32px;
      border-radius: 100px;
      text-decoration: none;
      font-weight: 500;
      font-size: 0.95rem;
      border: 2px solid rgba(177,251,196,0.4);
      transition: all 0.3s;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .btn-ghost:hover {
      border-color: var(--mint);
      background: rgba(177,251,196,0.1);
      transform: translateY(-2px);
    }
    .whatsapp-icon { font-size: 1.1rem; }

    /* Hero quick info bar */
    .hero-bar {
      position: absolute;
      bottom: 20px; left: 25%;
      transform: translateX(-50%);
      z-index: 3;
      display: flex;
      gap: 0;
      background: rgba(0,31,23,0.7);
      backdrop-filter: blur(12px);
      border: 1px solid rgba(83,202,113,0.3);
      border-radius: 16px;
      overflow: hidden;
      animation: fadeUp 1s ease 0.7s both;
      white-space: nowrap;
    }
    .hero-bar-item {
      padding: 14px 24px;
      text-align: center;
      border-right: 1px solid rgba(83,202,113,0.2);
    }
    .hero-bar-item:last-child { border-right: none; }
    .hero-bar-item .label {
      font-size: 0.68rem;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--mint);
      display: block;
      margin-bottom: 4px;
    }
    .hero-bar-item .value {
      font-size: 0.92rem;
      font-weight: 600;
      color: var(--light);
    }

    /* ===== SECTIONS ===== */
    section { padding: 90px 40px; }

    .section-label {
      font-size: 0.75rem;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--green);
      font-weight: 600;
      margin-bottom: 12px;
      display: block;
    }
    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 4vw, 3rem);
      color: var(--dark);
      line-height: 1.2;
      margin-bottom: 20px;
    }
    .section-text {
      font-size: 1rem;
      line-height: 1.75;
      color: var(--muted);
      max-width: 580px;
    }

    /* ===== ABOUT ===== */
    #about {
      background: var(--dark);
      padding: 90px 40px;
    }
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 70px;
      max-width: 1100px;
      margin: 0 auto;
      align-items: center;
    }
    .about-imgs {
      position: relative;
      height: 500px;
    }
    .about-img-main {
      position: absolute;
      top: 0; left: 0;
      width: 75%;
      height: 80%;
      object-fit: cover;
      border-radius: 16px;
      box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    }
    .about-img-accent {
      position: absolute;
      bottom: 0; right: 0;
      width: 55%;
      height: 55%;
      object-fit: cover;
      border-radius: 16px;
      box-shadow: 0 20px 60px rgba(0,0,0,0.5);
      border: 4px solid var(--dark);
    }
    .about-badge {
      position: absolute;
      top: 50%; left: 60%;
      transform: translate(-50%,-50%);
      background: var(--green);
      color: var(--dark);
      border-radius: 50%;
      width: 90px; height: 90px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 0.75rem;
      text-align: center;
      line-height: 1.3;
      box-shadow: 0 8px 24px rgba(0,0,0,0.3);
      z-index: 2;
    }
    .about-badge strong { font-size: 1.5rem; display: block; }
    .about-text .section-title { color: var(--light); }
    .about-text .section-text { color: var(--mint); max-width: 100%; }
    .feature-pills {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 28px;
    }
    .pill {
      background: rgba(83,202,113,0.12);
      border: 1px solid rgba(83,202,113,0.3);
      color: var(--light);
      padding: 7px 16px;
      border-radius: 100px;
      font-size: 0.82rem;
    }

    /* ===== ACCOMMODATION ===== */
    #accommodation {
      background: var(--white);
    }
    .acc-header {
      text-align: center;
      max-width: 600px;
      margin: 0 auto 60px;
    }
    .acc-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 28px;
      max-width: 1100px;
      margin: 0 auto;
    }
    .room-card {
      border-radius: 20px;
      overflow: hidden;
      background: #fff;
      box-shadow: 0 8px 40px rgba(0,31,17,0.08);
      transition: transform 0.3s, box-shadow 0.3s;
    }
    .room-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 60px rgba(0,31,17,0.14);
    }
    .room-img {
      position: relative;
      height: 220px;
      overflow: hidden;
    }
    .room-img img {
      width: 100%; height: 100%;
      object-fit: cover;
      transition: transform 0.5s;
    }
    .room-card:hover .room-img img { transform: scale(1.07); }
    .room-tag {
      position: absolute;
      top: 14px; left: 14px;
      background: var(--green);
      color: var(--dark);
      font-size: 0.72rem;
      letter-spacing: 1px;
      text-transform: uppercase;
      font-weight: 700;
      padding: 5px 12px;
      border-radius: 100px;
    }
    .room-body { padding: 24px; }
    .room-body h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.3rem;
      color: var(--dark);
      margin-bottom: 8px;
    }
    .room-body p {
      font-size: 0.88rem;
      color: var(--muted);
      line-height: 1.6;
      margin-bottom: 16px;
    }
    .room-amenities {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin-bottom: 20px;
    }
    .amenity {
      background: #f0faf3;
      color: var(--muted);
      font-size: 0.75rem;
      padding: 4px 10px;
      border-radius: 6px;
    }
    .room-cta {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      color: var(--green);
      font-weight: 600;
      font-size: 0.88rem;
      text-decoration: none;
      transition: gap 0.2s;
    }
    .room-cta:hover { gap: 10px; }

    /* ===== GALLERY ===== */
    #gallery {
      background: var(--dark);
    }
    .gallery-header {
      text-align: center;
      max-width: 600px;
      margin: 0 auto 50px;
    }
    .gallery-header .section-title { color: var(--light); }
    .gallery-header .section-text { color: var(--mint); margin: 0 auto; }
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      grid-template-rows: 240px 240px;
      gap: 12px;
      max-width: 1100px;
      margin: 0 auto;
    }
    .gallery-item {
      overflow: hidden;
      border-radius: 12px;
      cursor: pointer;
      position: relative;
    }
    .gallery-item:nth-child(1) { grid-column: 1 / 3; grid-row: 1 / 2; }
    .gallery-item:nth-child(5) { grid-column: 3 / 5; grid-row: 2 / 3; }
    .gallery-item img {
      width: 100%; height: 100%;
      object-fit: cover;
      transition: transform 0.5s;
      display: block;
    }
    .gallery-item:hover img { transform: scale(1.07); }
    .gallery-overlay {
      position: absolute;
      inset: 0;
      background: rgba(0,31,23,0);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.3s;
    }
    .gallery-item:hover .gallery-overlay {
      background: rgba(0,31,23,0.4);
    }
    .gallery-overlay span {
      color: white;
      font-size: 1.5rem;
      opacity: 0;
      transition: opacity 0.3s;
    }
    .gallery-item:hover .gallery-overlay span { opacity: 1; }

    /* ===== CONTACT ===== */
    #contact {
      background: #f0faf3;
    }
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      max-width: 1100px;
      margin: 0 auto;
      align-items: start;
    }
    .contact-info .section-title { color: var(--dark); }
    .contact-details {
      margin-top: 32px;
      display: flex;
      flex-direction: column;
      gap: 20px;
    }
    .contact-item {
      display: flex;
      align-items: flex-start;
      gap: 14px;
    }
    .contact-icon {
      width: 44px; height: 44px;
      background: var(--dark);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      flex-shrink: 0;
    }
    .contact-item-text strong {
      display: block;
      font-size: 0.8rem;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: var(--green);
      margin-bottom: 3px;
    }
    .contact-item-text span {
      font-size: 0.95rem;
      color: var(--text);
      line-height: 1.5;
    }
    .contact-item-text a {
      color: var(--text);
      text-decoration: none;
      transition: color 0.2s;
    }
    .contact-item-text a:hover { color: var(--green); }

    /* WhatsApp float */
    .whatsapp-float {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: #25D366;
      color: white;
      padding: 12px 24px;
      border-radius: 100px;
      text-decoration: none;
      font-weight: 600;
      font-size: 0.9rem;
      margin-top: 28px;
      transition: all 0.3s;
      box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    }
    .whatsapp-float:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 30px rgba(37,211,102,0.5);
    }

    /* Map */
    .map-container {
      border-radius: 20px;
      overflow: hidden;
      height: 400px;
      box-shadow: 0 16px 50px rgba(0,31,17,0.12);
    }
    .map-container iframe {
      width: 100%;
      height: 100%;
      border: none;
    }

    /* Contact Form */
    .contact-form-wrap {
      background: white;
      border-radius: 20px;
      padding: 36px;
      box-shadow: 0 8px 40px rgba(0,31,17,0.08);
    }
    .contact-form-wrap h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.4rem;
      color: var(--dark);
      margin-bottom: 24px;
    }
    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }
    .form-group {
      margin-bottom: 16px;
    }
    .form-group label {
      display: block;
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 0.5px;
      color: var(--muted);
      margin-bottom: 6px;
      text-transform: uppercase;
    }
    .form-group input,
    .form-group textarea,
    .form-group select {
      width: 100%;
      padding: 12px 16px;
      border: 1.5px solid #d1e8d9;
      border-radius: 10px;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.92rem;
      color: var(--text);
      background: #f8fdf9;
      transition: border 0.2s, box-shadow 0.2s;
      outline: none;
    }
    .form-group input:focus,
    .form-group textarea:focus,
    .form-group select:focus {
      border-color: var(--green);
      box-shadow: 0 0 0 3px rgba(83,202,113,0.15);
      background: #fff;
    }
    .form-group textarea { resize: vertical; min-height: 100px; }
    .btn-submit {
      width: 100%;
      background: var(--dark);
      color: var(--light);
      padding: 14px;
      border: none;
      border-radius: 10px;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.95rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s;
      letter-spacing: 0.5px;
    }
    .btn-submit:hover {
      background: var(--green);
      color: var(--dark);
      transform: translateY(-1px);
      box-shadow: 0 6px 20px rgba(83,202,113,0.35);
    }

    /* ===== FOOTER ===== */
    .footer {
  background: #0f1a17;
  color: #ccc;
  text-align: center;
  padding: 50px 20px 25px;
}

.footer-logo {
  font-size: 24px;
  font-weight: 600;
  color: #8fd3b6;
  margin-bottom: 10px;
}

.footer-logo span {
  color: #ffffff;
}

.footer-tagline {
  font-size: 14px;
  margin-bottom: 25px;
  color: #aaa;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.footer-links a {
  text-decoration: none;
  color: #ccc;
  font-size: 14px;
  transition: 0.3s ease;
}

.footer-links a:hover {
  color: #8fd3b6;
}

.footer-divider {
  border: none;
  height: 1px;
  background: #2a2a2a;
  margin: 20px auto;
  width: 80%;
}

.footer-copy {
  font-size: 13px;
  color: #888;
}

    /* ===== SCROLL UP BTN ===== */
    .scroll-up {
      position: fixed;
      bottom: 30px; right: 30px;
      z-index: 90;
      width: 46px; height: 46px;
      background: var(--green);
      color: var(--dark);
      border: none;
      border-radius: 50%;
      font-size: 1.2rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 6px 20px rgba(83,202,113,0.4);
      transition: all 0.3s;
      opacity: 0;
      transform: translateY(20px);
    }
    .scroll-up.visible { opacity: 1; transform: translateY(0); }
    .scroll-up:hover { background: var(--light); transform: translateY(-3px); }

    /* ===== MOBILE ===== */
    @media (max-width: 900px) {
      nav { padding: 16px 24px; }
      .nav-links {
        display: none;
        position: fixed;
        top: 0; right: 0;
        height: 100vh;
        width: 260px;
        background: var(--dark);
        flex-direction: column;
        gap: 0;
        padding-top: 80px;
        box-shadow: -10px 0 40px rgba(0,0,0,0.3);
        z-index: 99;
      }
      .nav-links.open { display: flex; }
      .nav-links li { border-bottom: 1px solid rgba(177,251,196,0.06); }
      .nav-links a {
        display: block;
        padding: 18px 32px;
        font-size: 1.05rem;
      }
      .hamburger { display: flex; z-index: 101; }
      .hero-bar { display: none; }
      .hero-btns { flex-direction: column; align-items: center; }
      section { padding: 70px 24px; }
      #about { padding: 70px 24px; }
      .about-grid { grid-template-columns: 1fr; gap: 40px; }
      .about-imgs { height: 320px; }
      .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(3, 200px);
      }
      .gallery-item:nth-child(1) { grid-column: 1 / 3; grid-row: 1; }
      .gallery-item:nth-child(5) { grid-column: 1 / 3; grid-row: 3; }
      .contact-grid { grid-template-columns: 1fr; gap: 40px; }
      .form-row { grid-template-columns: 1fr; }
      footer { padding: 40px 24px 24px; }
      .scroll-up { bottom: 20px; right: 20px; }
    }
    @media (max-width: 520px) {
      .hero-title { font-size: 2rem; }
      .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
      }
      .gallery-item:nth-child(1), .gallery-item:nth-child(5) {
        grid-column: 1; grid-row: auto;
      }
      .gallery-item { height: 200px; }
      .contact-form-wrap { padding: 24px 20px; }
    }
