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

    :root {
      --green: #4cc243;
      --green-dark: #36a92f;
      --text: #18212f;
      --muted: #6d7786;
      --border: #e8edf2;
      --bg: #f7f9fc;
      --card: #ffffff;
      --dark: #0f1722;
      --dark-2: #131d2a;
      --shadow: 0 10px 30px rgba(10, 20, 40, 0.08);
      --radius: 16px;
      --container: 1280px;
    }

    body {
      font-family: "Inter", sans-serif;
      color: var(--text);
      background: #ffffff;
      line-height: 1.45;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    img {
      max-width: 100%;
      display: block;
    }

    .container {
      width: min(var(--container), calc(100% - 40px));
      margin: 0 auto;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 14px 22px;
      border-radius: 10px;
      border: 1px solid transparent;
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      transition: 0.25s ease;
    }

    .btn-primary {
      background: var(--green);
      color: #fff;
    }

    .btn-primary:hover {
      background: var(--green-dark);
    }

    .btn-outline {
      border-color: rgba(255,255,255,0.55);
      color: #fff;
      background: rgba(255,255,255,0.06);
      backdrop-filter: blur(4px);
    }

    .btn-outline-dark {
      border-color: #b9dcb6;
      color: #2d7d2d;
      background: #fff;
    }

    .section {
      padding: 54px 0;
    }

    .section-head {
      text-align: center;
      margin-bottom: 26px;
    }

    .eyebrow {
      color: var(--green-dark);
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      margin-bottom: 8px;
    }

    .section-head h2 {
      font-size: 38px;
      line-height: 1.15;
      margin-bottom: 10px;
    }

    .section-head p {
      color: var(--muted);
      max-width: 760px;
      margin: 0 auto;
    }

    .site-header {
      position: absolute;
      inset: 0 0 auto 0;
      z-index: 20;
      padding: 18px 0;
    }

    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      color: #fff;
      font-weight: 800;
      font-size: 20px;
      white-space: nowrap;
    }

    .logo-mark {
      width: 42px;
      height: 42px;
      border-radius: 12px;
      background: linear-gradient(135deg, #63d471, #2c8e37);
      display: grid;
      place-items: center;
      font-size: 20px;
      color: #fff;
      box-shadow: 0 8px 18px rgba(76, 194, 67, 0.35);
    }

    .menu {
      display: flex;
      align-items: center;
      gap: 22px;
      color: #fff;
      font-size: 14px;
      font-weight: 500;
      flex-wrap: wrap;
      justify-content: center;
    }

    .menu a {
      opacity: 0.95;
    }

    .menu a:hover {
      opacity: 1;
      color: #bff4bd;
    }

    /* --- MOBILE MENU TOGGLE --- */
    .menu-toggle {
      display: none;
      background: none;
      border: none;
      color: #fff;
      font-size: 28px;
      cursor: pointer;
      padding: 4px 8px;
    }

    /* --- HERO --- */
    .hero {
      position: relative;
      min-height: 460px;
      color: #fff;
      background:
        linear-gradient(rgba(6, 22, 42, 0.62), rgba(6, 22, 42, 0.62)),
        url("../../images/kullu-manali-banner.jpg") center/cover no-repeat;
      overflow: hidden;
    }

    .hero-wrap {
      display: grid;
      grid-template-columns: 1.1fr 440px;
      gap: 34px;
      align-items: center;
      min-height: 460px;
      padding-top: 110px;
      padding-bottom: 80px;
    }

    .hero-copy .eyebrow {
      color: #8cf06f;
    }

    .hero-copy h1 {
      font-size: 68px;
      line-height: 1.02;
      letter-spacing: -1.8px;
      max-width: 700px;
      margin-bottom: 20px;
    }

    .hero-copy h1 .accent {
      color: #7cec4a;
    }

    .hero-copy p {
      max-width: 620px;
      font-size: 18px;
      color: rgba(255,255,255,0.9);
      margin-bottom: 28px;
    }

    .hero-features {
      display: flex;
      flex-wrap: wrap;
      gap: 24px;
      margin: 24px 0 30px;
    }

    .hero-feature {
      display: flex;
      gap: 12px;
      align-items: flex-start;
      min-width: 180px;
    }

    .hero-feature .icon {
      width: 40px;
      height: 40px;
      border-radius: 999px;
      background: rgba(124, 236, 74, 0.16);
      border: 1px solid rgba(124, 236, 74, 0.35);
      display: grid;
      place-items: center;
      font-size: 18px;
      color: #9af779;
      flex-shrink: 0;
    }

    .hero-feature strong {
      display: block;
      font-size: 14px;
      margin-bottom: 2px;
    }

    .hero-feature span {
      color: rgba(255,255,255,0.75);
      font-size: 13px;
    }

    .hero-actions {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
    }

    /* --- ENQUIRY FORM (replaces booking card) --- */
    .enquiry-card {
      background: rgba(255,255,255,0.96);
      color: var(--text);
      border-radius: 20px;
      padding: 24px 22px;
      box-shadow: 0 24px 60px rgba(0,0,0,0.2);
      width: 100%;
      max-width: 440px;
    }

    .enquiry-card .form-title {
      font-size: 20px;
      font-weight: 700;
      margin-bottom: 4px;
      color: var(--text);
    }

    .enquiry-card .form-subtitle {
      font-size: 14px;
      color: var(--muted);
      margin-bottom: 18px;
    }

    .enquiry-card .form-group {
      margin-bottom: 14px;
    }

    .enquiry-card .form-group label {
      display: block;
      font-size: 13px;
      color: #6b7280;
      margin-bottom: 6px;
      font-weight: 600;
    }

    .enquiry-card .input,
    .enquiry-card .select,
    .enquiry-card .textarea {
      width: 100%;
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 0 14px;
      font-size: 14px;
      color: var(--text);
      background: #fff;
      outline: none;
      font-family: "Inter", sans-serif;
    }

    .enquiry-card .input,
    .enquiry-card .select {
      height: 48px;
    }

    .enquiry-card .textarea {
      height: 80px;
      padding: 12px 14px;
      resize: vertical;
    }

    .enquiry-card .input:focus,
    .enquiry-card .select:focus,
    .enquiry-card .textarea:focus {
      border-color: var(--green);
      box-shadow: 0 0 0 3px rgba(76, 194, 67, 0.15);
    }

    .enquiry-card .full-btn {
      width: 100%;
      margin-top: 6px;
      height: 50px;
      border: none;
    }

    /* --- Cards & Grids --- */
    .cards-row {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 18px;
    }

    .card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 6px 20px rgba(20, 30, 50, 0.05);
    }

    .card-media {
      position: relative;
      height: 170px;
      overflow: hidden;
    }

    .card-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .badge {
      position: absolute;
      top: 12px;
      left: 12px;
      background: #ff8b2c;
      color: #fff;
      font-size: 11px;
      font-weight: 800;
      padding: 6px 10px;
      border-radius: 999px;
      text-transform: uppercase;
      letter-spacing: 0.4px;
    }

    .card-body {
      padding: 14px;
    }

    .card-title {
      font-size: 15px;
      font-weight: 700;
      margin-bottom: 8px;
      min-height: 42px;
    }

    .meta {
      color: var(--muted);
      font-size: 13px;
      margin-bottom: 10px;
    }

    .price-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      font-size: 14px;
    }

    .price {
      font-weight: 800;
    }

    .rating {
      color: #f5a524;
      font-weight: 600;
    }

    .center-btn {
      text-align: center;
      margin-top: 26px;
    }

    .attraction-grid,
    .activity-grid {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 18px;
    }

    .mini-card {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 14px;
      overflow: hidden;
      box-shadow: 0 6px 20px rgba(20, 30, 50, 0.04);
    }

    .mini-card img {
      height: 132px;
      width: 100%;
      object-fit: cover;
    }

    .mini-card .label {
      padding: 12px 14px;
      font-size: 14px;
      font-weight: 700;
    }

    .why-wrap {
      background: linear-gradient(180deg, #fbfcfe 0%, #f5f8fc 100%);
      border: 1px solid #edf2f7;
      border-radius: 24px;
      padding: 32px;
    }

    .why-grid {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 16px;
      margin-top: 22px;
    }

    .why-card {
      background: #fff;
      border-radius: 16px;
      border: 1px solid var(--border);
      padding: 20px 16px;
      text-align: center;
      box-shadow: 0 5px 14px rgba(0, 0, 0, 0.03);
    }

    .why-icon {
      width: 54px;
      height: 54px;
      margin: 0 auto 14px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      font-size: 22px;
      background: #f3fbf1;
      color: #3eab36;
    }

    .why-card h4 {
      font-size: 15px;
      margin-bottom: 8px;
    }

    .why-card p {
      font-size: 13px;
      color: var(--muted);
    }

    .split {
      display: grid;
      grid-template-columns: 1.4fr 0.9fr;
      gap: 24px;
      align-items: start;
    }

    .panel {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 24px;
      box-shadow: 0 6px 20px rgba(20, 30, 50, 0.04);
      height: 100%;
    }

    .blog-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      margin-top: 18px;
    }

    .blog-card {
      border: 1px solid var(--border);
      border-radius: 14px;
      overflow: hidden;
      background: #fff;
    }

    .blog-card img {
      width: 100%;
      height: 150px;
      object-fit: cover;
    }

    .blog-body {
      padding: 14px;
    }

    .tag {
      display: inline-block;
      padding: 5px 10px;
      border-radius: 999px;
      font-size: 11px;
      font-weight: 800;
      background: #eef9eb;
      color: #2f9730;
      margin-bottom: 10px;
      text-transform: uppercase;
    }

    .blog-card h4 {
      font-size: 14px;
      line-height: 1.4;
      margin-bottom: 10px;
    }

    .blog-meta {
      color: var(--muted);
      font-size: 12px;
      display: flex;
      justify-content: space-between;
      gap: 8px;
      flex-wrap: wrap;
    }

    .testimonial-card {
      margin-top: 18px;
      display: flex;
      flex-direction: column;
      gap: 18px;
    }

    .quote {
      font-size: 15px;
      color: #344054;
      line-height: 1.7;
    }

    .person {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .avatar {
      width: 54px;
      height: 54px;
      border-radius: 50%;
      object-fit: cover;
    }

    .stars {
      color: #f5a524;
      letter-spacing: 2px;
      font-size: 16px;
      margin-top: 4px;
    }

    .cta-band {
      position: relative;
      margin-top: 30px;
      color: #fff;
      background:
        linear-gradient(rgba(7, 18, 31, 0.76), rgba(7, 18, 31, 0.76)),
        url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
      padding: 56px 0;
    }

    .cta-grid {
      display: grid;
      grid-template-columns: 1.2fr 1fr;
      gap: 24px;
      align-items: center;
    }

    .cta-band h2 {
      font-size: 42px;
      line-height: 1.15;
      margin-bottom: 12px;
    }

    .cta-band p {
      color: rgba(255,255,255,0.82);
      margin-bottom: 22px;
    }

    .cta-points {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
    }

    .cta-point {
      text-align: center;
      color: rgba(255,255,255,0.92);
    }

    .cta-point .circle {
      width: 58px;
      height: 58px;
      border-radius: 50%;
      margin: 0 auto 12px;
      display: grid;
      place-items: center;
      font-size: 22px;
      border: 1px solid rgba(255,255,255,0.24);
      background: rgba(255,255,255,0.08);
    }

    .cta-point h5 {
      font-size: 14px;
      line-height: 1.45;
      font-weight: 600;
    }

    footer {
      background: #101922;
      color: #d4dae3;
      padding-top: 46px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.2fr 1fr 1fr 1fr 1.2fr;
      gap: 28px;
      padding-bottom: 32px;
    }

    .footer-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      color: #fff;
      font-weight: 800;
      margin-bottom: 14px;
      font-size: 20px;
    }

    .footer-col h4 {
      color: #fff;
      font-size: 15px;
      margin-bottom: 14px;
    }

    .footer-col p,
    .footer-col li,
    .footer-col a {
      font-size: 14px;
      color: #c5cfdb;
    }

    .footer-col ul {
      list-style: none;
      display: grid;
      gap: 10px;
    }

    .socials {
      display: flex;
      gap: 10px;
      margin-top: 16px;
    }

    .socials a {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: #182433;
      color: #fff;
      font-size: 15px;
    }

    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.08);
      padding: 18px 0;
    }

    .footer-bottom-wrap {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
      color: #b1bcc9;
      font-size: 14px;
    }

    .footer-bottom-links {
      display: flex;
      gap: 18px;
      flex-wrap: wrap;
    }

    /* --- RESPONSIVE BREAKPOINTS --- */
    @media (max-width: 1200px) {
      .hero-wrap,
      .cta-grid,
      .split {
        grid-template-columns: 1fr;
      }

      .cards-row,
      .attraction-grid,
      .activity-grid,
      .why-grid {
        grid-template-columns: repeat(3, 1fr);
      }

      .footer-grid {
        grid-template-columns: repeat(3, 1fr);
      }

      .hero-copy h1 {
        font-size: 56px;
      }

      .enquiry-card {
        max-width: 100%;
      }

      .cta-points {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 768px) {
      /* --- SHOW HAMBURGER MENU --- */
      .menu-toggle {
        display: block;
      }

      .menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 20, 40, 0.97);
        backdrop-filter: blur(12px);
        padding: 24px 20px;
        gap: 16px;
        border-radius: 0 0 20px 20px;
        text-align: center;
        font-size: 16px;
      }

      .menu.open {
        display: flex;
      }

      /* --- HERO --- */
      .hero {
        min-height: auto;
      }

      .hero-wrap {
        min-height: auto;
        padding-top: 110px;
        grid-template-columns: 1fr;
        gap: 28px;
      }

      .hero-copy h1 {
        font-size: 40px;
      }

      .hero-copy p {
        font-size: 16px;
      }

      .enquiry-card {
        padding: 18px;
        max-width: 100%;
      }

      /* --- GRIDS --- */
      .cards-row,
      .attraction-grid,
      .activity-grid,
      .why-grid,
      .blog-grid,
      .footer-grid {
        grid-template-columns: 1fr;
      }

      .section-head h2,
      .cta-band h2 {
        font-size: 30px;
      }

      .container {
        width: min(100% - 24px, var(--container));
      }

      .cta-points {
        grid-template-columns: 1fr 1fr;
      }

      .hero-features {
        gap: 14px;
      }

      .hero-feature {
        min-width: 140px;
      }

      .hero-actions .btn {
        width: 100%;
        justify-content: center;
      }
    }

    @media (max-width: 480px) {
      .hero-copy h1 {
        font-size: 32px;
      }

      .cta-points {
        grid-template-columns: 1fr;
      }

      .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
      }
    }