/* ============ CSS VARIABLES ============ */
    :root {
      --forest-dark: #0d2010;
      --forest-deep: #1a3a1f;
      --forest-mid: #2d5a27;
      --forest-bright: #4a8c3f;
      --amber: #e8960c;
      --amber-light: #f5b731;
      --earth: #8b5e3c;
      --earth-light: #c4916a;
      --cream: #f9f3e8;
      --white: #ffffff;
      --text-dark: #1a1a1a;
      --text-muted: #5a5a5a;
      --shadow: 0 8px 40px rgba(0, 0, 0, 0.25);
      --radius: 16px;
      --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Nunito', sans-serif;
      color: var(--text-dark);
      background: var(--cream);
      overflow-x: hidden;
    }

    h1,
    h2,
    h3,
    h4 {
      font-family: 'Playfair Display', serif;
    }

    /* ============ LOADER ============ */
    #loader {
      position: fixed;
      inset: 0;
      background: var(--forest-dark);
      z-index: 9999;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      transition: opacity 0.6s ease, visibility 0.6s ease;
    }

    #loader.hidden {
      opacity: 0;
      visibility: hidden;
    }

    .loader-paw {
      font-size: 3.5rem;
      animation: pawBounce 0.8s infinite alternate;
      color: var(--amber);
    }

    .loader-text {
      color: var(--cream);
      font-family: 'Playfair Display', serif;
      font-size: 1.3rem;
      margin-top: 18px;
      letter-spacing: 3px;
      opacity: 0.85;
    }

    .loader-bar {
      width: 220px;
      height: 4px;
      background: rgba(255, 255, 255, 0.15);
      border-radius: 99px;
      margin-top: 22px;
      overflow: hidden;
    }

    .loader-bar-fill {
      height: 100%;
      background: linear-gradient(90deg, var(--amber), var(--forest-bright));
      border-radius: 99px;
      animation: loadFill 1.8s ease forwards;
    }

    @keyframes pawBounce {
      from {
        transform: scale(1) rotate(-10deg);
      }

      to {
        transform: scale(1.2) rotate(10deg);
      }
    }

    @keyframes loadFill {
      from {
        width: 0;
      }

      to {
        width: 100%;
      }
    }

    /* ============ STICKY HEADER ============ */
    #mainNav {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(13, 32, 16, 0.97);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.07);
      transition: var(--transition);
    }

    .navbar-brand {
      font-family: 'Playfair Display', serif;
      font-size: 1.4rem;
      color: var(--amber-light) !important;
      font-weight: 700;
    }

    .navbar-brand span {
      color: var(--white);
    }

    .nav-link {
      color: rgba(255, 255, 255, 0.85) !important;
      font-weight: 600;
      font-size: 0.92rem;
      letter-spacing: 0.5px;
      transition: var(--transition);
      padding: 8px 14px !important;
      border-radius: 8px;
    }

    .nav-link:hover {
      color: var(--amber-light) !important;
      background: rgba(255, 255, 255, 0.06);
    }

    .nav-cta {
      background: linear-gradient(135deg, var(--amber), #d4780a) !important;
      color: var(--white) !important;
      border-radius: 30px !important;
      padding: 8px 22px !important;
      font-weight: 700 !important;
    }

    .nav-cta:hover {
      transform: translateY(-1px);
      box-shadow: 0 4px 18px rgba(232, 150, 12, 0.45);
      background: rgba(0, 0, 0, 0) !important;
    }

    .navbar-toggler {
      border-color: rgba(255, 255, 255, 0.2);
    }

    .navbar-toggler-icon {
      filter: invert(1);
    }

    /* ============ HERO ============ */
    #hero {
      min-height: 100vh;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background:
        linear-gradient(to bottom, rgba(0, 0, 0, 0.55) 0%, rgba(13, 32, 16, 0.75) 100%),
        url('https://images.unsplash.com/photo-1561731216-c3a4d99437d5?w=1600&q=80') center/cover no-repeat;
      transform: scale(1.05);
      animation: heroZoom 8s ease-out forwards;
    }

    @keyframes heroZoom {
      to {
        transform: scale(1);
      }
    }

    .hero-overlay {
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at 60% 50%, transparent 40%, rgba(0, 0, 0, 0.5) 100%);
    }

    .hero-content {
      position: relative;
      z-index: 2;
      text-align: center;
      animation: heroFadeUp 1.2s ease 0.3s both;
    }

    @keyframes heroFadeUp {
      from {
        opacity: 0;
        transform: translateY(40px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .hero-badge {
      display: inline-block;
      background: rgba(232, 150, 12, 0.2);
      border: 1px solid rgba(232, 150, 12, 0.5);
      color: var(--amber-light);
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      padding: 7px 18px;
      border-radius: 30px;
      margin-bottom: 22px;
    }

    .hero-title {
      font-size: clamp(2.4rem, 6vw, 5rem);
      color: var(--white);
      line-height: 1.12;
      margin-bottom: 22px;
      text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    }

    .hero-title .accent {
      color: var(--amber-light);
    }

    .hero-subtitle {
      font-size: clamp(1rem, 2vw, 1.25rem);
      color: rgba(255, 255, 255, 0.82);
      max-width: 600px;
      margin: 0 auto 36px;
      line-height: 1.7;
    }

    .hero-btns {
      display: flex;
      gap: 16px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .btn-primary-custom {
      background: linear-gradient(135deg, var(--amber), #c47a08);
      color: var(--white);
      border: none;
      padding: 16px 38px;
      border-radius: 50px;
      font-size: 1.05rem;
      font-weight: 700;
      text-decoration: none;
      transition: var(--transition);
      box-shadow: 0 6px 28px rgba(232, 150, 12, 0.45);
      display: inline-flex;
      align-items: center;
      gap: 10px;
    }

    .btn-primary-custom:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 36px rgba(232, 150, 12, 0.55);
      color: var(--white);
    }

    .btn-outline-custom {
      background: rgba(255, 255, 255, 0.1);
      color: var(--white);
      border: 2px solid rgba(255, 255, 255, 0.5);
      padding: 14px 32px;
      border-radius: 50px;
      font-size: 1rem;
      font-weight: 700;
      text-decoration: none;
      transition: var(--transition);
      display: inline-flex;
      align-items: center;
      gap: 10px;
      backdrop-filter: blur(6px);
    }

    .btn-outline-custom:hover {
      background: rgba(255, 255, 255, 0.2);
      border-color: var(--white);
      color: var(--white);
      transform: translateY(-2px);
    }

    .hero-stats {
      display: flex;
      justify-content: center;
      gap: 40px;
      margin-top: 56px;
      flex-wrap: wrap;
    }

    .stat-item {
      text-align: center;
    }

    .stat-num {
      font-family: 'Playfair Display', serif;
      font-size: 2rem;
      font-weight: 900;
      color: var(--amber-light);
      display: block;
    }

    .stat-label {
      color: rgba(255, 255, 255, 0.65);
      font-size: 0.82rem;
      letter-spacing: 1px;
    }

    .hero-scroll {
      position: absolute;
      bottom: 30px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 2;
      color: rgba(255, 255, 255, 0.5);
      font-size: 0.78rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      animation: scrollBounce 2s infinite;
    }

    @keyframes scrollBounce {

      0%,
      100% {
        transform: translateX(-50%) translateY(0)
      }

      50% {
        transform: translateX(-50%) translateY(8px)
      }
    }

    /* ============ SECTION STYLES ============ */
    section {
      padding: 90px 0;
    }

    .section-label {
      display: inline-block;
      background: rgba(74, 140, 63, 0.12);
      color: var(--forest-bright);
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      padding: 6px 16px;
      border-radius: 30px;
      margin-bottom: 14px;
      border: 1px solid rgba(74, 140, 63, 0.25);
    }

    .section-title {
      font-size: clamp(1.8rem, 4vw, 2.8rem);
      color: var(--forest-dark);
      margin-bottom: 14px;
    }

    .section-sub {
      color: var(--text-muted);
      max-width: 560px;
      margin: 0 auto;
      line-height: 1.7;
    }

    .divider {
      width: 60px;
      height: 4px;
      background: linear-gradient(90deg, var(--amber), var(--forest-bright));
      border-radius: 99px;
      margin: 18px auto 0;
    }

    /* ============ PACKAGES ============ */
    #packages {
      background: var(--forest-dark);
    }

    #packages .section-title {
      color: var(--white);
    }

    #packages .section-sub {
      color: rgba(255, 255, 255, 0.65);
    }

    #packages .section-label {
      background: rgba(232, 150, 12, 0.15);
      color: var(--amber-light);
      border-color: rgba(232, 150, 12, 0.3);
    }

    .pkg-card {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: var(--radius);
      padding: 40px 34px;
      transition: var(--transition);
      position: relative;
      overflow: hidden;
      height: 100%;
    }

    .pkg-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--amber), var(--forest-bright));
      transform: scaleX(0);
      transition: transform 0.4s ease;
      transform-origin: left;
    }

    .pkg-card:hover::before {
      transform: scaleX(1);
    }

    .pkg-card:hover {
      transform: translateY(-8px);
      background: rgba(255, 255, 255, 0.09);
      border-color: rgba(232, 150, 12, 0.3);
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    }

    .pkg-card.featured {
      background: linear-gradient(145deg, rgba(232, 150, 12, 0.12), rgba(74, 140, 63, 0.1));
      border-color: rgba(232, 150, 12, 0.4);
    }

    .pkg-badge-popular {
      position: absolute;
      top: 20px;
      right: 20px;
      background: var(--amber);
      color: var(--white);
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      padding: 5px 12px;
      border-radius: 20px;
    }

    .pkg-icon {
      width: 64px;
      height: 64px;
      background: rgba(232, 150, 12, 0.15);
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.8rem;
      margin-bottom: 22px;
    }

    .pkg-name {
      font-size: 1.5rem;
      color: var(--white);
      margin-bottom: 6px;
    }

    .pkg-type {
      color: var(--amber-light);
      font-size: 0.85rem;
      font-weight: 600;
      letter-spacing: 1px;
      margin-bottom: 20px;
    }

    .pkg-price {
      font-family: 'Playfair Display', serif;
      font-size: 2.4rem;
      font-weight: 900;
      color: var(--amber-light);
      margin-bottom: 4px;
    }

    .pkg-price span {
      font-size: 1rem;
      font-weight: 400;
      color: rgba(255, 255, 255, 0.5);
    }

    .pkg-per {
      color: rgba(255, 255, 255, 0.45);
      font-size: 0.82rem;
      margin-bottom: 24px;
    }

    .pkg-features {
      list-style: none;
      padding: 0;
      margin-bottom: 30px;
    }

    .pkg-features li {
      color: rgba(255, 255, 255, 0.75);
      padding: 8px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
      font-size: 0.92rem;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .pkg-features li i {
      color: var(--forest-bright);
      font-size: 0.8rem;
      flex-shrink: 0;
    }

    .btn-pkg {
      display: block;
      width: 100%;
      background: linear-gradient(135deg, var(--amber), #c47a08);
      color: var(--white);
      border: none;
      padding: 14px;
      border-radius: 12px;
      font-weight: 700;
      text-align: center;
      text-decoration: none;
      transition: var(--transition);
      font-size: 0.95rem;
    }

    .btn-pkg:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(232, 150, 12, 0.45);
      color: var(--white);
    }

    .btn-pkg-outline {
      background: transparent;
      border: 2px solid rgba(255, 255, 255, 0.3);
      color: var(--white);
    }

    .btn-pkg-outline:hover {
      background: rgba(255, 255, 255, 0.08);
      border-color: var(--amber);
      color: var(--white);
    }

    /* Zone pills */
    .zone-pills {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 14px;
    }

    .zone-pill {
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.15);
      color: rgba(255, 255, 255, 0.7);
      font-size: 0.72rem;
      padding: 4px 10px;
      border-radius: 20px;
      font-weight: 600;
    }

    /* ============ BOOKING FORM ============ */
    #booking {
      background: var(--cream);
    }

    .form-card {
      background: var(--white);
      border-radius: 24px;
      box-shadow: 0 20px 80px rgba(0, 0, 0, 0.1);
      overflow: hidden;
    }

    .form-side {
      background: linear-gradient(160deg, var(--forest-deep), var(--forest-dark));
      padding: 50px 40px;
      color: var(--white);
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .form-side-title {
      font-size: 2rem;
      color: var(--white);
      margin-bottom: 12px;
    }

    .form-side-sub {
      color: rgba(255, 255, 255, 0.65);
      line-height: 1.7;
      margin-bottom: 32px;
    }

    .form-side-info {
      list-style: none;
      padding: 0;
    }

    .form-side-info li {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      margin-bottom: 22px;
      color: rgba(255, 255, 255, 0.8);
      font-size: 0.92rem;
    }

    .form-side-info li i {
      color: var(--amber-light);
      font-size: 1.1rem;
      margin-top: 2px;
      flex-shrink: 0;
    }

    .form-body {
      padding: 50px 40px;
    }

    .form-title {
      font-size: 1.8rem;
      color: var(--forest-dark);
      margin-bottom: 6px;
    }

    .form-sub {
      color: var(--text-muted);
      margin-bottom: 30px;
      font-size: 0.9rem;
    }

    .form-group {
      margin-bottom: 20px;
    }

    .form-label {
      font-weight: 700;
      font-size: 0.82rem;
      letter-spacing: 0.5px;
      color: var(--forest-dark);
      margin-bottom: 8px;
      display: block;
      text-transform: uppercase;
    }

    .form-control,
    .form-select {
      border: 2px solid #e8e8e8;
      border-radius: 12px;
      padding: 13px 16px;
      font-family: 'Nunito', sans-serif;
      font-size: 0.93rem;
      color: var(--text-dark);
      background: #fafafa;
      transition: var(--transition);
      width: 100%;
    }

    .form-control:focus,
    .form-select:focus {
      border-color: var(--forest-bright);
      background: var(--white);
      box-shadow: 0 0 0 4px rgba(74, 140, 63, 0.12);
      outline: none;
    }

    .form-control.is-invalid,
    .form-select.is-invalid {
      border-color: #e74c3c;
    }

    .invalid-feedback {
      font-size: 0.8rem;
      color: #e74c3c;
      margin-top: 5px;
      display: none;
    }

    .form-control.is-invalid~.invalid-feedback,
    .form-select.is-invalid~.invalid-feedback {
      display: block;
    }

    .btn-submit {
      background: linear-gradient(135deg, var(--forest-bright), var(--forest-mid));
      color: var(--white);
      border: none;
      padding: 16px 40px;
      border-radius: 50px;
      font-size: 1rem;
      font-weight: 700;
      width: 100%;
      transition: var(--transition);
      cursor: pointer;
      letter-spacing: 0.5px;
    }

    .btn-submit:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 28px rgba(74, 140, 63, 0.45);
    }

    .success-msg {
      display: none;
      text-align: center;
      padding: 40px;
    }

    .success-icon {
      width: 80px;
      height: 80px;
      background: linear-gradient(135deg, var(--forest-bright), var(--forest-mid));
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2rem;
      color: var(--white);
      margin: 0 auto 20px;
      animation: successPop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    @keyframes successPop {
      from {
        transform: scale(0);
      }

      to {
        transform: scale(1);
      }
    }

    .whatsapp-alt {
      margin-top: 18px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
    }

    .btn-whatsapp {
      background: #25D366;
      color: var(--white);
      border: none;
      padding: 14px 28px;
      border-radius: 50px;
      font-weight: 700;
      font-size: 0.95rem;
      text-decoration: none;
      transition: var(--transition);
      display: inline-flex;
      align-items: center;
      gap: 10px;
    }

    .btn-whatsapp:hover {
      background: #1db954;
      color: var(--white);
      transform: translateY(-2px);
      box-shadow: 0 6px 22px rgba(37, 211, 102, 0.4);
    }

    /* ============ WHY CHOOSE US ============ */
    #why {
      background: var(--white);
    }

    .trust-card {
      text-align: center;
      padding: 40px 30px;
      border-radius: var(--radius);
      transition: var(--transition);
      border: 1px solid transparent;
    }

    .trust-card:hover {
      border-color: rgba(74, 140, 63, 0.2);
      box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
      transform: translateY(-6px);
    }

    .trust-icon {
      width: 72px;
      height: 72px;
      background: linear-gradient(135deg, var(--forest-bright), var(--forest-mid));
      border-radius: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.8rem;
      color: var(--white);
      margin: 0 auto 22px;
      transition: var(--transition);
    }

    .trust-card:hover .trust-icon {
      border-radius: 50%;
      transform: scale(1.08);
    }

    .trust-title {
      font-size: 1.15rem;
      color: var(--forest-dark);
      margin-bottom: 10px;
    }

    .trust-desc {
      color: var(--text-muted);
      font-size: 0.9rem;
      line-height: 1.7;
    }

    /* ============ INSTRUCTIONS ============ */
    #instructions {
      background: var(--forest-dark);
    }

    #instructions .section-title {
      color: var(--white);
    }

    #instructions .section-label {
      background: rgba(232, 150, 12, 0.15);
      color: var(--amber-light);
      border-color: rgba(232, 150, 12, 0.3);
    }

    .instr-card {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: var(--radius);
      padding: 28px;
      transition: var(--transition);
    }

    .instr-card:hover {
      background: rgba(255, 255, 255, 0.08);
      transform: translateY(-4px);
    }

    .instr-num {
      width: 40px;
      height: 40px;
      background: linear-gradient(135deg, var(--amber), #c47a08);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Playfair Display', serif;
      font-size: 1.1rem;
      font-weight: 900;
      color: var(--white);
      flex-shrink: 0;
    }

    .instr-text {
      color: rgba(255, 255, 255, 0.8);
      font-size: 0.92rem;
      line-height: 1.6;
    }

    .instr-text strong {
      color: var(--amber-light);
      display: block;
      margin-bottom: 4px;
    }

    /* ============ GALLERY ============ */
    #gallery {
      background: var(--cream);
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      grid-template-rows: auto;
      gap: 16px;
    }

    .gallery-item {
      border-radius: 14px;
      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.5s ease;
      display: block;
    }

    .gallery-item:hover img {
      transform: scale(1.08);
    }

    .gallery-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 60%);
      opacity: 0;
      transition: var(--transition);
      display: flex;
      align-items: flex-end;
      padding: 18px;
    }

    .gallery-item:hover .gallery-overlay {
      opacity: 1;
    }

    .gallery-label {
      color: var(--white);
      font-weight: 700;
      font-size: 0.88rem;
    }

    .gallery-item:first-child {
      height: 420px;
    }

    .gallery-item:not(:first-child) {
      height: 200px;
    }

    /* ============ FAQ ============ */
    #faq {
      background: var(--white);
    }

    .accordion-item {
      border: 1px solid #e8e8e8;
      border-radius: 14px !important;
      margin-bottom: 12px;
      overflow: hidden;
    }

    .accordion-button {
      font-family: 'Nunito', sans-serif;
      font-weight: 700;
      font-size: 0.95rem;
      color: var(--forest-dark);
      background: var(--white);
      padding: 20px 24px;
    }

    .accordion-button:not(.collapsed) {
      color: var(--forest-bright);
      background: rgba(74, 140, 63, 0.05);
      box-shadow: none;
    }

    .accordion-button:focus {
      box-shadow: none;
    }

    .accordion-button::after {
      filter: hue-rotate(90deg);
    }

    .accordion-body {
      padding: 16px 24px 24px;
      color: var(--text-muted);
      line-height: 1.7;
      font-size: 0.92rem;
    }

    /* ============ MAP ============ */
    #map-section {
      background: var(--cream);
    }

    .map-wrap {
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    }

    .map-wrap iframe {
      display: block;
    }

    /* ============ FLOATING BUTTONS ============ */
    .float-btns {
      position: fixed;
      bottom: 30px;
      right: 24px;
      z-index: 900;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .float-btn {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.4rem;
      cursor: pointer;
      transition: var(--transition);
      text-decoration: none;
      box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
    }

    .float-btn:hover {
      transform: scale(1.12) translateY(-2px);
    }

    .float-wa {
      background: #25D366;
      color: var(--white);
    }

    .float-book {
      background: linear-gradient(135deg, var(--amber), #c47a08);
      color: var(--white);
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.5px;
      text-align: center;
      line-height: 1.2;
      width: auto;
      padding: 0 18px;
      border-radius: 30px;
      height: 48px;
    }

    .float-top {
      background: var(--forest-dark);
      color: rgba(255, 255, 255, 0.85);
    }

    .float-tooltip {
      position: absolute;
      right: 66px;
      background: var(--forest-dark);
      color: var(--white);
      font-size: 0.75rem;
      padding: 5px 10px;
      border-radius: 8px;
      white-space: nowrap;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.2s;
    }

    .float-btn:hover .float-tooltip {
      opacity: 1;
    }


    .float-call {
      background: #ffffff;
      border: 2px solid #1e88e5;
      /* blue border */
      color: #1e88e5;
      /* icon color */
      position: relative;
      overflow: hidden;
      border-radius: 50%;
      transition: all 0.3s ease;
    }

    /* Icon styling */
    .float-call i {
      font-size: 22px;
      color: #1e88e5;
      transition: 0.3s;
    }

    /* Hover effect */
    .float-call:hover {
      background: #1e88e5;
      box-shadow: 0 6px 20px rgba(30, 136, 229, 0.4);
      transform: scale(1.1);
    }

    .float-call:hover i {
      color: #fff;
      transform: scale(1.2);
    }

    .float-call:hover i {
      transform: rotate(0deg) scale(1.0);
    }



    .float-call i {
      font-size: 22px;
      transform: rotate(-10deg);
      transition: 0.3s;
    }

    .ring-dot {
      position: absolute;
      top: 10px;
      right: 10px;
      width: 9px;
      height: 9.5px;
      background: #ff3d00;
      border-radius: 60%;
      animation: blink 1s infinite;
    }

    @keyframes blink {
      50% {
        opacity: 0;
      }
    }

    /* ============ FOOTER ============ */
    footer {
      background: var(--forest-dark);
      color: rgba(255, 255, 255, 0.6);
      padding: 60px 0 30px;
    }

    .footer-brand {
      font-family: 'Playfair Display', serif;
      font-size: 1.5rem;
      color: var(--amber-light);
      margin-bottom: 14px;
    }

    .footer-brand span {
      color: var(--white);
    }

    .footer-desc {
      font-size: 0.88rem;
      line-height: 1.7;
      max-width: 300px;
    }

    .footer-heading {
      color: var(--white);
      font-family: 'Playfair Display', serif;
      font-size: 1rem;
      margin-bottom: 18px;
    }

    .footer-links {
      list-style: none;
      padding: 0;
    }

    .footer-links li {
      margin-bottom: 10px;
    }

    .footer-links a {
      color: rgba(255, 255, 255, 0.55);
      text-decoration: none;
      font-size: 0.88rem;
      transition: color 0.2s;
    }

    .footer-links a:hover {
      color: var(--amber-light);
    }

    .footer-contact-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      margin-bottom: 14px;
      font-size: 0.88rem;
    }

    .footer-contact-item i {
      color: var(--amber-light);
      margin-top: 3px;
      flex-shrink: 0;
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      margin-top: 40px;
      padding-top: 24px;
      text-align: center;
      font-size: 0.82rem;
    }

    .social-icons {
      display: flex;
      gap: 12px;
      margin-top: 20px;
    }

    .social-icon {
      width: 38px;
      height: 38px;
      background: rgba(255, 255, 255, 0.08);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255, 255, 255, 0.6);
      text-decoration: none;
      transition: var(--transition);
    }

    .social-icon:hover {
      background: var(--amber);
      color: var(--white);
      transform: translateY(-3px);
    }

    /* ============ ANIMATIONS ============ */
    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.65s ease, transform 0.65s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .reveal-left {
      opacity: 0;
      transform: translateX(-30px);
      transition: opacity 0.65s ease, transform 0.65s ease;
    }

    .reveal-left.visible {
      opacity: 1;
      transform: translateX(0);
    }

    .reveal-right {
      opacity: 0;
      transform: translateX(30px);
      transition: opacity 0.65s ease, transform 0.65s ease;
    }

    .reveal-right.visible {
      opacity: 1;
      transform: translateX(0);
    }

    /* ============ RESPONSIVE ============ */
    @media (max-width: 991px) {
      section {
        padding: 60px 0;
      }

      .form-side {
        padding: 40px 30px;
      }

      .form-body {
        padding: 40px 30px;
      }
    }

    @media (max-width: 768px) {
      .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .gallery-item:first-child {
        grid-row: span 1;
        height: 200px;
      }

      .hero-stats {
        gap: 24px;
      }

      .float-btns {
        bottom: 20px;
        right: 16px;
      }
    }

    @media (max-width: 576px) {
      .gallery-grid {
        grid-template-columns: 1fr 1fr;
      }

      .form-side {
        display: none;
      }
    }

    /* Misc */
    .text-amber {
      color: var(--amber-light);
    }

    .bg-forest {
      background: var(--forest-dark);
    }

    .highlight-strip {
      background: linear-gradient(135deg, var(--amber), var(--forest-bright));
      padding: 20px 0;
      text-align: center;
      color: var(--white);
      font-weight: 700;
      font-size: 0.9rem;
      letter-spacing: 0.5px;
    }

    .highlight-strip a {
      color: var(--white);
      text-decoration: underline;
    }

    /* ============ CSS VARIABLES ============ */
    :root {
      --forest-dark: #0d2010;
      --forest-deep: #1a3a1f;
      --forest-mid: #2d5a27;
      --forest-bright: #4a8c3f;
      --amber: #e8960c;
      --amber-light: #f5b731;
      --earth: #8b5e3c;
      --earth-light: #c4916a;
      --cream: #f9f3e8;
      --white: #ffffff;
      --text-dark: #1a1a1a;
      --text-muted: #5a5a5a;
      --shadow: 0 8px 40px rgba(0,0,0,0.25);
      --radius: 16px;
      --transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
    }

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

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Nunito', sans-serif;
      color: var(--text-dark);
      background: var(--cream);
      overflow-x: hidden;
    }

    h1, h2, h3, h4 { font-family: 'Playfair Display', serif; }

    /* ============ LOADER ============ */
    #loader {
      position: fixed; inset: 0;
      background: var(--forest-dark);
      z-index: 9999;
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      transition: opacity 0.6s ease, visibility 0.6s ease;
    }
    #loader.hidden { opacity: 0; visibility: hidden; }
    .loader-paw {
      font-size: 3.5rem;
      animation: pawBounce 0.8s infinite alternate;
      color: var(--amber);
    }
    .loader-text {
      color: var(--cream);
      font-family: 'Playfair Display', serif;
      font-size: 1.3rem;
      margin-top: 18px;
      letter-spacing: 3px;
      opacity: 0.85;
    }
    .loader-bar {
      width: 220px; height: 4px;
      background: rgba(255,255,255,0.15);
      border-radius: 99px;
      margin-top: 22px;
      overflow: hidden;
    }
    .loader-bar-fill {
      height: 100%;
      background: linear-gradient(90deg, var(--amber), var(--forest-bright));
      border-radius: 99px;
      animation: loadFill 1.8s ease forwards;
    }
    @keyframes pawBounce { from { transform: scale(1) rotate(-10deg); } to { transform: scale(1.2) rotate(10deg); } }
    @keyframes loadFill { from { width: 0; } to { width: 100%; } }

    /* ============ STICKY HEADER ============ */
    #mainNav {
      position: sticky; top: 0; z-index: 1000;
      background: rgba(13, 32, 16, 0.97);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(255,255,255,0.07);
      transition: var(--transition);
    }
    .navbar-brand {
      font-family: 'Playfair Display', serif;
      font-size: 1.4rem;
      color: var(--amber-light) !important;
      font-weight: 700;
    }
    .navbar-brand span { color: var(--white); }
    .nav-link {
      color: rgba(255,255,255,0.85) !important;
      font-weight: 600;
      font-size: 0.92rem;
      letter-spacing: 0.5px;
      transition: var(--transition);
      padding: 8px 14px !important;
      border-radius: 8px;
    }
    .nav-link:hover { color: var(--amber-light) !important; background: rgba(255,255,255,0.06); }
    .nav-cta {
      background: linear-gradient(135deg, var(--amber), #d4780a) !important;
      color: var(--white) !important;
      border-radius: 30px !important;
      padding: 8px 22px !important;
      font-weight: 700 !important;
    }
    .nav-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 18px rgba(232,150,12,0.45); background: rgba(0,0,0,0) !important; }
    .navbar-toggler { border-color: rgba(255,255,255,0.2); }
    .navbar-toggler-icon { filter: invert(1); }

    /* ============ HERO ============ */
    #hero {
      min-height: 100vh;
      position: relative;
      display: flex; align-items: center; justify-content: center;
      overflow: hidden;
    }
    .hero-bg {
      position: absolute; inset: 0;
      background:
        linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, rgba(13,32,16,0.75) 100%),
        url('https://images.unsplash.com/photo-1561731216-c3a4d99437d5?w=1600&q=80') center/cover no-repeat;
      transform: scale(1.05);
      animation: heroZoom 8s ease-out forwards;
    }
    @keyframes heroZoom { to { transform: scale(1); } }
    .hero-overlay {
      position: absolute; inset: 0;
      background: radial-gradient(ellipse at 60% 50%, transparent 40%, rgba(0,0,0,0.5) 100%);
    }
    .hero-content {
      position: relative; z-index: 2;
      text-align: center;
      animation: heroFadeUp 1.2s ease 0.3s both;
    }
    @keyframes heroFadeUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
    .hero-badge {
      display: inline-block;
      background: rgba(232,150,12,0.2);
      border: 1px solid rgba(232,150,12,0.5);
      color: var(--amber-light);
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      padding: 7px 18px;
      border-radius: 30px;
      margin-bottom: 22px;
    }
    .hero-title {
      font-size: clamp(2.4rem, 6vw, 5rem);
      color: var(--white);
      line-height: 1.12;
      margin-bottom: 22px;
      text-shadow: 0 4px 30px rgba(0,0,0,0.5);
    }
    .hero-title .accent { color: var(--amber-light); }
    .hero-subtitle {
      font-size: clamp(1rem, 2vw, 1.25rem);
      color: rgba(255,255,255,0.82);
      max-width: 600px; margin: 0 auto 36px;
      line-height: 1.7;
    }
    .hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
    .btn-primary-custom {
      background: linear-gradient(135deg, var(--amber), #c47a08);
      color: var(--white);
      border: none;
      padding: 16px 38px;
      border-radius: 50px;
      font-size: 1.05rem;
      font-weight: 700;
      text-decoration: none;
      transition: var(--transition);
      box-shadow: 0 6px 28px rgba(232,150,12,0.45);
      display: inline-flex; align-items: center; gap: 10px;
    }
    .btn-primary-custom:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 36px rgba(232,150,12,0.55);
      color: var(--white);
    }
    .btn-outline-custom {
      background: rgba(255,255,255,0.1);
      color: var(--white);
      border: 2px solid rgba(255,255,255,0.5);
      padding: 14px 32px;
      border-radius: 50px;
      font-size: 1rem;
      font-weight: 700;
      text-decoration: none;
      transition: var(--transition);
      display: inline-flex; align-items: center; gap: 10px;
      backdrop-filter: blur(6px);
    }
    .btn-outline-custom:hover {
      background: rgba(255,255,255,0.2);
      border-color: var(--white);
      color: var(--white);
      transform: translateY(-2px);
    }
    .hero-stats {
      display: flex; justify-content: center; gap: 40px;
      margin-top: 56px; flex-wrap: wrap;
    }
    .stat-item { text-align: center; }
    .stat-num {
      font-family: 'Playfair Display', serif;
      font-size: 2rem; font-weight: 900;
      color: var(--amber-light);
      display: block;
    }
    .stat-label { color: rgba(255,255,255,0.65); font-size: 0.82rem; letter-spacing: 1px; }
    .hero-scroll {
      position: absolute; bottom: 30px; left: 50%;
      transform: translateX(-50%); z-index: 2;
      color: rgba(255,255,255,0.5);
      font-size: 0.78rem; letter-spacing: 2px;
      text-transform: uppercase;
      display: flex; flex-direction: column; align-items: center; gap: 8px;
      animation: scrollBounce 2s infinite;
    }
    @keyframes scrollBounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }

    /* ============ SECTION STYLES ============ */
    section { padding: 90px 0; }
    .section-label {
      display: inline-block;
      background: rgba(74,140,63,0.12);
      color: var(--forest-bright);
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      padding: 6px 16px;
      border-radius: 30px;
      margin-bottom: 14px;
      border: 1px solid rgba(74,140,63,0.25);
    }
    .section-title {
      font-size: clamp(1.8rem, 4vw, 2.8rem);
      color: var(--forest-dark);
      margin-bottom: 14px;
    }
    .section-sub { color: var(--text-muted); max-width: 560px; margin: 0 auto; line-height: 1.7; }
    .divider {
      width: 60px; height: 4px;
      background: linear-gradient(90deg, var(--amber), var(--forest-bright));
      border-radius: 99px;
      margin: 18px auto 0;
    }

    /* ============ PACKAGES ============ */
    #packages { background: var(--forest-dark); }
    #packages .section-title { color: var(--white); }
    #packages .section-sub { color: rgba(255,255,255,0.65); }
    #packages .section-label { background: rgba(232,150,12,0.15); color: var(--amber-light); border-color: rgba(232,150,12,0.3); }

    .pkg-card {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: var(--radius);
      padding: 40px 34px;
      transition: var(--transition);
      position: relative;
      overflow: hidden;
      height: 100%;
    }
    .pkg-card::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--amber), var(--forest-bright));
      transform: scaleX(0);
      transition: transform 0.4s ease;
      transform-origin: left;
    }
    .pkg-card:hover::before { transform: scaleX(1); }
    .pkg-card:hover {
      transform: translateY(-8px);
      background: rgba(255,255,255,0.09);
      border-color: rgba(232,150,12,0.3);
      box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    }
    .pkg-card.featured {
      background: linear-gradient(145deg, rgba(232,150,12,0.12), rgba(74,140,63,0.1));
      border-color: rgba(232,150,12,0.4);
    }
    .pkg-badge-popular {
      position: absolute; top: 20px; right: 20px;
      background: var(--amber);
      color: var(--white);
      font-size: 0.7rem; font-weight: 700;
      letter-spacing: 1.5px; text-transform: uppercase;
      padding: 5px 12px; border-radius: 20px;
    }
    .pkg-icon {
      width: 64px; height: 64px;
      background: rgba(232,150,12,0.15);
      border-radius: 16px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.8rem;
      margin-bottom: 22px;
    }
    .pkg-name {
      font-size: 1.5rem; color: var(--white);
      margin-bottom: 6px;
    }
    .pkg-type { color: var(--amber-light); font-size: 0.85rem; font-weight: 600; letter-spacing: 1px; margin-bottom: 20px; }
    .pkg-price {
      font-family: 'Playfair Display', serif;
      font-size: 2.4rem; font-weight: 900;
      color: var(--amber-light);
      margin-bottom: 4px;
    }
    .pkg-price span { font-size: 1rem; font-weight: 400; color: rgba(255,255,255,0.5); }
    .pkg-per { color: rgba(255,255,255,0.45); font-size: 0.82rem; margin-bottom: 24px; }
    .pkg-features { list-style: none; padding: 0; margin-bottom: 30px; }
    .pkg-features li {
      color: rgba(255,255,255,0.75);
      padding: 8px 0;
      border-bottom: 1px solid rgba(255,255,255,0.06);
      font-size: 0.92rem;
      display: flex; align-items: center; gap: 10px;
    }
    .pkg-features li i { color: var(--forest-bright); font-size: 0.8rem; flex-shrink: 0; }
    .btn-pkg {
      display: block; width: 100%;
      background: linear-gradient(135deg, var(--amber), #c47a08);
      color: var(--white);
      border: none;
      padding: 14px;
      border-radius: 12px;
      font-weight: 700;
      text-align: center;
      text-decoration: none;
      transition: var(--transition);
      font-size: 0.95rem;
    }
    .btn-pkg:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,150,12,0.45); color: var(--white); }
    .btn-pkg-outline {
      background: transparent;
      border: 2px solid rgba(255,255,255,0.3);
      color: var(--white);
    }
    .btn-pkg-outline:hover { background: rgba(255,255,255,0.08); border-color: var(--amber); color: var(--white); }

    /* Zone pills */
    .zone-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
    .zone-pill {
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.15);
      color: rgba(255,255,255,0.7);
      font-size: 0.72rem;
      padding: 4px 10px;
      border-radius: 20px;
      font-weight: 600;
    }

    /* ============ BOOKING FORM ============ */
    #booking { background: var(--cream); }
    .form-card {
      background: var(--white);
      border-radius: 24px;
      box-shadow: 0 20px 80px rgba(0,0,0,0.1);
      overflow: hidden;
    }
    .form-side {
      background: linear-gradient(160deg, var(--forest-deep), var(--forest-dark));
      padding: 50px 40px;
      color: var(--white);
      display: flex; flex-direction: column; justify-content: center;
    }
    .form-side-title { font-size: 2rem; color: var(--white); margin-bottom: 12px; }
    .form-side-sub { color: rgba(255,255,255,0.65); line-height: 1.7; margin-bottom: 32px; }
    .form-side-info { list-style: none; padding: 0; }
    .form-side-info li {
      display: flex; align-items: flex-start; gap: 14px;
      margin-bottom: 22px;
      color: rgba(255,255,255,0.8);
      font-size: 0.92rem;
    }
    .form-side-info li i { color: var(--amber-light); font-size: 1.1rem; margin-top: 2px; flex-shrink: 0; }
    .form-body { padding: 50px 40px; }
    .form-title { font-size: 1.8rem; color: var(--forest-dark); margin-bottom: 6px; }
    .form-sub { color: var(--text-muted); margin-bottom: 30px; font-size: 0.9rem; }

    .form-group { margin-bottom: 20px; }
    .form-label {
      font-weight: 700; font-size: 0.82rem;
      letter-spacing: 0.5px; color: var(--forest-dark);
      margin-bottom: 8px; display: block;
      text-transform: uppercase;
    }
    .form-control, .form-select {
      border: 2px solid #e8e8e8;
      border-radius: 12px;
      padding: 13px 16px;
      font-family: 'Nunito', sans-serif;
      font-size: 0.93rem;
      color: var(--text-dark);
      background: #fafafa;
      transition: var(--transition);
      width: 100%;
    }
    .form-control:focus, .form-select:focus {
      border-color: var(--forest-bright);
      background: var(--white);
      box-shadow: 0 0 0 4px rgba(74,140,63,0.12);
      outline: none;
    }
    .form-control.is-invalid, .form-select.is-invalid {
      border-color: #e74c3c;
    }
    .invalid-feedback { font-size: 0.8rem; color: #e74c3c; margin-top: 5px; display: none; }
    .form-control.is-invalid ~ .invalid-feedback,
    .form-select.is-invalid ~ .invalid-feedback { display: block; }

    .btn-submit {
      background: linear-gradient(135deg, var(--forest-bright), var(--forest-mid));
      color: var(--white);
      border: none;
      padding: 16px 40px;
      border-radius: 50px;
      font-size: 1rem;
      font-weight: 700;
      width: 100%;
      transition: var(--transition);
      cursor: pointer;
      letter-spacing: 0.5px;
    }
    .btn-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(74,140,63,0.45); }

    .success-msg {
      display: none;
      text-align: center; padding: 40px;
    }
    .success-icon {
      width: 80px; height: 80px;
      background: linear-gradient(135deg, var(--forest-bright), var(--forest-mid));
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 2rem; color: var(--white);
      margin: 0 auto 20px;
      animation: successPop 0.5s cubic-bezier(0.175,0.885,0.32,1.275);
    }
    @keyframes successPop { from { transform: scale(0); } to { transform: scale(1); } }

    .whatsapp-alt {
      margin-top: 18px;
      display: flex; align-items: center; justify-content: center; gap: 10px;
    }
    .btn-whatsapp {
      background: #25D366;
      color: var(--white);
      border: none;
      padding: 14px 28px;
      border-radius: 50px;
      font-weight: 700;
      font-size: 0.95rem;
      text-decoration: none;
      transition: var(--transition);
      display: inline-flex; align-items: center; gap: 10px;
    }
    .btn-whatsapp:hover { background: #1db954; color: var(--white); transform: translateY(-2px); box-shadow: 0 6px 22px rgba(37,211,102,0.4); }

    /* ============ WHY CHOOSE US ============ */
    #why { background: var(--white); }
    .trust-card {
      text-align: center;
      padding: 40px 30px;
      border-radius: var(--radius);
      transition: var(--transition);
      border: 1px solid transparent;
    }
    .trust-card:hover {
      border-color: rgba(74,140,63,0.2);
      box-shadow: 0 12px 40px rgba(0,0,0,0.08);
      transform: translateY(-6px);
    }
    .trust-icon {
      width: 72px; height: 72px;
      background: linear-gradient(135deg, var(--forest-bright), var(--forest-mid));
      border-radius: 20px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.8rem; color: var(--white);
      margin: 0 auto 22px;
      transition: var(--transition);
    }
    .trust-card:hover .trust-icon { border-radius: 50%; transform: scale(1.08); }
    .trust-title { font-size: 1.15rem; color: var(--forest-dark); margin-bottom: 10px; }
    .trust-desc { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; }

    /* ============ INSTRUCTIONS ============ */
    #instructions { background: var(--forest-dark); }
    #instructions .section-title { color: var(--white); }
    #instructions .section-label { background: rgba(232,150,12,0.15); color: var(--amber-light); border-color: rgba(232,150,12,0.3); }
    .instr-card {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: var(--radius);
      padding: 28px;
      transition: var(--transition);
    }
    .instr-card:hover { background: rgba(255,255,255,0.08); transform: translateY(-4px); }
    .instr-num {
      width: 40px; height: 40px;
      background: linear-gradient(135deg, var(--amber), #c47a08);
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      font-family: 'Playfair Display', serif;
      font-size: 1.1rem; font-weight: 900;
      color: var(--white);
      flex-shrink: 0;
    }
    .instr-text { color: rgba(255,255,255,0.8); font-size: 0.92rem; line-height: 1.6; }
    .instr-text strong { color: var(--amber-light); display: block; margin-bottom: 4px; }

    /* ============ GALLERY ============ */
    #gallery { background: var(--cream); }
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      grid-template-rows: auto;
      gap: 16px;
    }
    .gallery-item {
      border-radius: 14px;
      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.5s ease;
      display: block;
    }
    .gallery-item:hover img { transform: scale(1.08); }
    .gallery-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 60%);
      opacity: 0;
      transition: var(--transition);
      display: flex; align-items: flex-end;
      padding: 18px;
    }
    .gallery-item:hover .gallery-overlay { opacity: 1; }
    .gallery-label { color: var(--white); font-weight: 700; font-size: 0.88rem; }
    .gallery-item:first-child { height: 420px; }
    .gallery-item:not(:first-child) { height: 200px; }

    /* ============ FAQ ============ */
    #faq { background: var(--white); }
    .accordion-item {
      border: 1px solid #e8e8e8;
      border-radius: 14px !important;
      margin-bottom: 12px;
      overflow: hidden;
    }
    .accordion-button {
      font-family: 'Nunito', sans-serif;
      font-weight: 700;
      font-size: 0.95rem;
      color: var(--forest-dark);
      background: var(--white);
      padding: 20px 24px;
    }
    .accordion-button:not(.collapsed) {
      color: var(--forest-bright);
      background: rgba(74,140,63,0.05);
      box-shadow: none;
    }
    .accordion-button:focus { box-shadow: none; }
    .accordion-button::after { filter: hue-rotate(90deg); }
    .accordion-body { padding: 16px 24px 24px; color: var(--text-muted); line-height: 1.7; font-size: 0.92rem; }

    /* ============ MAP ============ */
    #map-section { background: var(--cream); }
    .map-wrap {
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 20px 60px rgba(0,0,0,0.12);
    }
    .map-wrap iframe { display: block; }

    /* ============ FLOATING BUTTONS ============ */
    .float-btns {
      position: fixed;
      bottom: 30px; right: 24px;
      z-index: 900;
      display: flex; flex-direction: column; gap: 14px;
    }
    .float-btn {
      width: 56px; height: 56px;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.4rem;
      cursor: pointer;
      transition: var(--transition);
      text-decoration: none;
      box-shadow: 0 6px 24px rgba(0,0,0,0.25);
    }
    .float-btn:hover { transform: scale(1.12) translateY(-2px); }
    .float-wa { background: #25D366; color: var(--white); }
    .float-book {
      background: linear-gradient(135deg, var(--amber), #c47a08);
      color: var(--white);
      font-size: 0.7rem; font-weight: 700;
      letter-spacing: 0.5px; text-align: center;
      line-height: 1.2;
      width: auto; padding: 0 18px;
      border-radius: 30px; height: 48px;
    }
    .float-top {
      background: var(--forest-dark);
      color: rgba(255,255,255,0.85);
    }
    .float-tooltip {
      position: absolute;
      right: 66px;
      background: var(--forest-dark);
      color: var(--white);
      font-size: 0.75rem;
      padding: 5px 10px;
      border-radius: 8px;
      white-space: nowrap;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.2s;
    }
    .float-btn:hover .float-tooltip { opacity: 1; }

    /* ============ FOOTER ============ */
    footer {
      background: var(--forest-dark);
      color: rgba(255,255,255,0.6);
      padding: 60px 0 30px;
    }
    .footer-brand {
      font-family: 'Playfair Display', serif;
      font-size: 1.5rem;
      color: var(--amber-light);
      margin-bottom: 14px;
    }
    .footer-brand span { color: var(--white); }
    .footer-desc { font-size: 0.88rem; line-height: 1.7; max-width: 300px; }
    .footer-heading { color: var(--white); font-family: 'Playfair Display', serif; font-size: 1rem; margin-bottom: 18px; }
    .footer-links { list-style: none; padding: 0; }
    .footer-links li { margin-bottom: 10px; }
    .footer-links a {
      color: rgba(255,255,255,0.55);
      text-decoration: none;
      font-size: 0.88rem;
      transition: color 0.2s;
    }
    .footer-links a:hover { color: var(--amber-light); }
    .footer-contact-item {
      display: flex; align-items: flex-start; gap: 12px;
      margin-bottom: 14px; font-size: 0.88rem;
    }
    .footer-contact-item i { color: var(--amber-light); margin-top: 3px; flex-shrink: 0; }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.08);
      margin-top: 40px; padding-top: 24px;
      text-align: center; font-size: 0.82rem;
    }
    .social-icons { display: flex; gap: 12px; margin-top: 20px; }

    .social-icon {
      width: 38px; height: 38px;
      background: rgba(255,255,255,0.08);
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      color: rgba(255,255,255,0.6);
      text-decoration: none;
      transition: var(--transition);
    }
    .social-icon:hover { background: var(--amber); color: var(--white); transform: translateY(-3px); }

    /* ============ ANIMATIONS ============ */
    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.65s ease, transform 0.65s ease;
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    .reveal-left { opacity: 0; transform: translateX(-30px); transition: opacity 0.65s ease, transform 0.65s ease; }
    .reveal-left.visible { opacity: 1; transform: translateX(0); }
    .reveal-right { opacity: 0; transform: translateX(30px); transition: opacity 0.65s ease, transform 0.65s ease; }
    .reveal-right.visible { opacity: 1; transform: translateX(0); }

    /* ============ RESPONSIVE ============ */
    @media (max-width: 991px) {
      section { padding: 60px 0; }
      .form-side { padding: 40px 30px; }
      .form-body { padding: 40px 30px; }
    }
    @media (max-width: 768px) {
      .gallery-grid { grid-template-columns: repeat(2, 1fr); }
      .gallery-item:first-child { grid-row: span 1; height: 200px; }
      .hero-stats { gap: 24px; }
      .float-btns { bottom: 20px; right: 16px; }
    }
    @media (max-width: 576px) {
      .gallery-grid { grid-template-columns: 1fr 1fr; }
      .form-side { display: none; }
    }

    /* Misc */
    .text-amber { color: var(--amber-light); }
    .bg-forest { background: var(--forest-dark); }
    .highlight-strip {
      background: linear-gradient(135deg, var(--amber), var(--forest-bright));
      padding: 20px 0;
      text-align: center;
      color: var(--white);
      font-weight: 700;
      font-size: 0.9rem;
      letter-spacing: 0.5px;
    }
    .highlight-strip a { color: var(--white); text-decoration: underline; }
  
