/* --- EXPORTED PAGE STYLES --- */

/* =========================================
   Styles from about.html
   ========================================= */

        .about-hero {
            position: relative;
            min-height: 45vh;
            display: flex;
            align-items: flex-end;
            padding: 80px 56px 48px;
            padding: 80px 56px 48px;
            background: linear-gradient(to bottom, rgba(10, 10, 20, .5) 0%, rgba(10, 10, 20, .95) 100%), linear-gradient(160deg, var(--dark-indigo), #0F1433, var(--cosmic-black));
            border-bottom: var(--border-gold);
            position: relative;
            overflow: hidden;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 24px;
        }

        .team-card {
            background: var(--midnight-blue);
            border: var(--border-gold);
            border-radius: var(--radius-xl);
            padding: 28px;
            text-align: center;
        }

        .team-avatar {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            border: 2px solid var(--gold);
            margin: 0 auto 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 36px;
            background: var(--dark-indigo);
        }

        .team-name {
            font-family: 'Cinzel', serif;
            color: var(--white);
            margin-bottom: 4px;
        }

        .team-role {
            font-size: 12px;
            color: var(--gold);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 12px;
        }

        .team-bio {
            font-size: 13px;
            color: var(--silver);
            line-height: 1.6;
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 24px;
        }

        .value-card {
            background: var(--midnight-blue);
            border: var(--border-gold);
            border-radius: var(--radius-xl);
            padding: 28px;
        }

        .value-icon {
            font-size: 36px;
            margin-bottom: 12px;
        }

        .value-title {
            font-family: 'Cinzel', serif;
            color: var(--gold);
            margin-bottom: 8px;
        }

        .trust-badges-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 20px;
        }

        .trust-badge {
            background: var(--midnight-blue);
            border: var(--border-gold);
            border-radius: var(--radius-xl);
            padding: 24px;
            text-align: center;
        }

        .trust-badge-num {
            font-family: 'Cinzel', serif;
            font-size: 36px;
            color: var(--gold);
            display: block;
        }

        .trust-badge-label {
            font-size: 13px;
            color: var(--silver);
            margin-top: 4px;
        }

        @media(max-width:768px) {
            .about-hero {
                padding: 80px 24px 40px;
            }
        }
    

/* =========================================
   Styles from adiparvat.html
   ========================================= */

        .pkg-page-hero {
            position: relative;
            min-height: 50vh;
            display: flex;
            align-items: flex-end;
            padding: 80px 56px 48px;
            overflow: hidden;
            background: linear-gradient(to bottom, rgba(10, 10, 20, .55) 0%, rgba(10, 10, 20, .95) 100%), linear-gradient(160deg, var(--dark-indigo) 0%, #0F1433 60%, var(--cosmic-black) 100%);
            border-bottom: var(--border-gold);
        }

        .pkg-detail-layout {
            display: grid;
            grid-template-columns: 1fr 340px;
            gap: 40px;
            align-items: start;
        }

        .pkg-sidebar {
            position: sticky;
            top: 80px;
        }

        .sidebar-card {
            background: var(--midnight-blue);
            border: var(--border-gold);
            border-radius: var(--radius-xl);
            padding: 28px;
            margin-bottom: 20px;
        }

        .sidebar-card h4 {
            color: var(--white);
            margin-bottom: 16px;
            font-size: 16px;
        }

        .sidebar-meta-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 0;
            border-bottom: 1px solid rgba(212, 168, 67, .07);
            font-size: 13px;
        }

        .sidebar-meta-row:last-child {
            border-bottom: none;
        }

        .sidebar-meta-row .label {
            color: var(--silver);
        }

        .sidebar-meta-row .value {
            color: var(--gold);
            font-weight: 600;
            font-family: 'Cinzel', serif;
        }

        @media(max-width:1024px) {
            .pkg-detail-layout {
                grid-template-columns: 1fr;
            }

            .pkg-sidebar {
                position: static;
            }

            .pkg-page-hero {
                padding: 80px 24px 40px;
            }
        }
    

/* =========================================
   Styles from amarnath.html
   ========================================= */

        .pkg-page-hero {
            position: relative;
            min-height: 55vh;
            display: flex;
            align-items: flex-end;
            padding: 80px 56px 48px;
            overflow: hidden;
            background: linear-gradient(to bottom, rgba(10, 10, 20, .55) 0%, rgba(10, 10, 20, .95) 100%), linear-gradient(160deg, var(--dark-indigo) 0%, #0F1433 60%, var(--cosmic-black) 100%);
            border-bottom: var(--border-gold);
        }

        .pkg-detail-layout {
            display: grid;
            grid-template-columns: 1fr 360px;
            gap: 40px;
            align-items: start;
        }

        .pkg-sidebar {
            position: sticky;
            top: 80px;
        }

        .sidebar-card {
            background: var(--midnight-blue);
            border: var(--border-gold);
            border-radius: var(--radius-xl);
            padding: 28px;
            margin-bottom: 20px;
        }

        .sidebar-card h4 {
            color: var(--white);
            margin-bottom: 16px;
            font-size: 16px;
        }

        .sidebar-meta-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 0;
            border-bottom: 1px solid rgba(212, 168, 67, .07);
            font-size: 13px;
        }

        .sidebar-meta-row:last-child {
            border-bottom: none;
        }

        .sidebar-meta-row .label {
            color: var(--silver);
        }

        .sidebar-meta-row .value {
            color: var(--gold);
            font-weight: 600;
            font-family: 'Cinzel', serif;
        }

        @media(max-width:1024px) {
            .pkg-detail-layout {
                grid-template-columns: 1fr;
            }

            .pkg-sidebar {
                position: static;
            }

            .pkg-page-hero {
                padding: 80px 24px 40px;
            }
        }
    

/* =========================================
   Styles from ayodhya.html
   ========================================= */

        .pkg-page-hero {
            position: relative;
            min-height: 50vh;
            display: flex;
            align-items: flex-end;
            padding: 80px 56px 48px;
            overflow: hidden;
            background: linear-gradient(to bottom, rgba(10, 10, 20, .55) 0%, rgba(10, 10, 20, .95) 100%), linear-gradient(160deg, var(--dark-indigo) 0%, #0F1433 60%, var(--cosmic-black) 100%);
            border-bottom: var(--border-gold);
        }

        .pkg-detail-layout {
            display: grid;
            grid-template-columns: 1fr 340px;
            gap: 40px;
            align-items: start;
        }

        .pkg-sidebar {
            position: sticky;
            top: 80px;
        }

        .sidebar-card {
            background: var(--midnight-blue);
            border: var(--border-gold);
            border-radius: var(--radius-xl);
            padding: 28px;
            margin-bottom: 20px;
        }

        .sidebar-card h4 {
            color: var(--white);
            margin-bottom: 16px;
            font-size: 16px;
        }

        .sidebar-meta-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 0;
            border-bottom: 1px solid rgba(212, 168, 67, .07);
            font-size: 13px;
        }

        .sidebar-meta-row:last-child {
            border-bottom: none;
        }

        .sidebar-meta-row .label {
            color: var(--silver);
        }

        .sidebar-meta-row .value {
            color: var(--gold);
            font-weight: 600;
            font-family: 'Cinzel', serif;
        }

        @media(max-width:1024px) {
            .pkg-detail-layout {
                grid-template-columns: 1fr;
            }

            .pkg-sidebar {
                position: static;
            }

            .pkg-page-hero {
                padding: 80px 24px 40px;
            }
        }
    

/* =========================================
   Styles from chardham.html
   ========================================= */

        .pkg-page-hero {
            position: relative;
            min-height: 55vh;
            display: flex;
            align-items: flex-end;
            padding: 80px 56px 48px;
            overflow: hidden;
            background:
                linear-gradient(to bottom, rgba(10, 10, 20, 0.55) 0%, rgba(10, 10, 20, 0.95) 100%),
                linear-gradient(160deg, var(--dark-indigo) 0%, #0F1433 60%, var(--cosmic-black) 100%);
            border-bottom: var(--border-gold);
        }

        .pkg-page-hero::before {
            content: '✺';
            position: absolute;
            right: -80px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 420px;
            color: rgba(212, 168, 67, 0.04);
            line-height: 1;
            animation: spin-slow 60s linear infinite;
            pointer-events: none;
            user-select: none;
        }

        .pkg-detail-layout {
            display: grid;
            grid-template-columns: 1fr 360px;
            gap: 40px;
            align-items: start;
        }

        .pkg-sidebar {
            position: sticky;
            top: 80px;
        }

        .sidebar-card {
            background: var(--midnight-blue);
            border: var(--border-gold);
            border-radius: var(--radius-xl);
            padding: 28px;
            margin-bottom: 20px;
        }

        .sidebar-card h4 {
            color: var(--white);
            margin-bottom: 16px;
            font-size: 16px;
        }

        .sidebar-meta-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 0;
            border-bottom: 1px solid rgba(212, 168, 67, 0.07);
            font-size: 13px;
        }

        .sidebar-meta-row:last-child {
            border-bottom: none;
        }

        .sidebar-meta-row .label {
            color: var(--silver);
        }

        .sidebar-meta-row .value {
            color: var(--gold);
            font-weight: 600;
            font-family: 'Cinzel', serif;
        }

        @media (max-width: 1024px) {
            .pkg-detail-layout {
                grid-template-columns: 1fr;
            }

            .pkg-sidebar {
                position: static;
            }

            .pkg-page-hero {
                padding: 80px 24px 40px;
            }
        }

        @media (max-width: 768px) {
            .pkg-page-hero::before {
                display: none;
            }
        }
    

/* =========================================
   Styles from contact.html
   ========================================= */

        .contact-hero {
            position: relative;
            min-height: 38vh;
            display: flex;
            align-items: flex-end;
            padding: 80px 56px 48px;
            padding: 80px 56px 48px;
            background: linear-gradient(to bottom, rgba(10, 10, 20, .5) 0%, rgba(10, 10, 20, .95) 100%), linear-gradient(160deg, var(--dark-indigo), #0F1433, var(--cosmic-black));
            border-bottom: var(--border-gold);
            position: relative;
            overflow: hidden;
        }

        .contact-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            align-items: start;
            max-width: 1100px;
            margin: 0 auto;
        }

        .contact-info-grid {
            display: grid;
            gap: 16px;
        }

        .contact-info-item {
            background: var(--midnight-blue);
            border: var(--border-gold);
            border-radius: var(--radius-xl);
            padding: 20px 24px;
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .contact-info-icon {
            font-size: 24px;
            flex-shrink: 0;
        }

        .contact-info-label {
            font-size: 11px;
            color: var(--gold);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .contact-info-value {
            font-size: 14px;
            color: var(--white);
            margin-top: 2px;
        }

        .contact-map {
            margin-top: 24px;
            border-radius: var(--radius-xl);
            overflow: hidden;
            border: var(--border-gold);
        }

        @media(max-width:1024px) {
            .contact-layout {
                grid-template-columns: 1fr;
            }

            .contact-hero {
                padding: 80px 24px 40px;
            }
        }
    

/* =========================================
   Styles from destinations.html
   ========================================= */

        .dest-hero {
            position: relative;
            min-height: 40vh;
            display: flex;
            align-items: flex-end;
            padding: 80px 56px 48px;
            background: linear-gradient(to bottom, rgba(10, 10, 20, .5) 0%, rgba(10, 10, 20, .95) 100%), linear-gradient(160deg, var(--dark-indigo), #0F1433, var(--cosmic-black));
            border-bottom: var(--border-gold);
        }

        .dest-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 28px;
        }

        .dest-card {
            background: var(--midnight-blue);
            border: var(--border-gold);
            border-radius: var(--radius-xl);
            overflow: hidden;
            transition: transform .3s, box-shadow .3s;
        }

        .dest-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 16px 40px rgba(212, 168, 67, .15);
        }

        .dest-img {
            height: 200px;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 80px;
        }

        .dest-body {
            padding: 24px;
        }

        .dest-name {
            font-family: 'Cinzel', serif;
            color: var(--white);
            font-size: 18px;
            margin-bottom: 6px;
        }

        .dest-region {
            font-size: 11px;
            color: var(--gold);
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 12px;
        }

        .dest-desc {
            font-size: 13px;
            color: var(--silver);
            line-height: 1.7;
            margin-bottom: 16px;
        }

        .dest-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 16px;
        }

        .dest-tag {
            font-size: 11px;
            background: rgba(212, 168, 67, .1);
            border: 1px solid rgba(212, 168, 67, .2);
            color: var(--gold);
            padding: 4px 10px;
            border-radius: 20px;
        }

        .dest-pkg-link {
            color: var(--gold);
            font-size: 13px;
            text-decoration: none;
            font-family: 'Cinzel', serif;
        }

        @media(max-width:768px) {
            .dest-hero {
                padding: 80px 24px 40px;
            }
        }
    

/* =========================================
   Styles from dodham.html
   ========================================= */

        .pkg-page-hero {
            position: relative;
            min-height: 50vh;
            display: flex;
            align-items: flex-end;
            padding: 80px 56px 48px;
            overflow: hidden;
            background: linear-gradient(to bottom, rgba(10, 10, 20, .55) 0%, rgba(10, 10, 20, .95) 100%), linear-gradient(160deg, var(--dark-indigo) 0%, #0F1433 60%, var(--cosmic-black) 100%);
            border-bottom: var(--border-gold);
        }

        .pkg-detail-layout {
            display: grid;
            grid-template-columns: 1fr 360px;
            gap: 40px;
            align-items: start;
        }

        .pkg-sidebar {
            position: sticky;
            top: 80px;
        }

        .sidebar-card {
            background: var(--midnight-blue);
            border: var(--border-gold);
            border-radius: var(--radius-xl);
            padding: 28px;
            margin-bottom: 20px;
        }

        .sidebar-card h4 {
            color: var(--white);
            margin-bottom: 16px;
            font-size: 16px;
        }

        .sidebar-meta-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 0;
            border-bottom: 1px solid rgba(212, 168, 67, .07);
            font-size: 13px;
        }

        .sidebar-meta-row:last-child {
            border-bottom: none;
        }

        .sidebar-meta-row .label {
            color: var(--silver);
        }

        .sidebar-meta-row .value {
            color: var(--gold);
            font-weight: 600;
            font-family: 'Cinzel', serif;
        }

        @media(max-width:1024px) {
            .pkg-detail-layout {
                grid-template-columns: 1fr;
            }

            .pkg-sidebar {
                position: static;
            }

            .pkg-page-hero {
                padding: 80px 24px 40px;
            }
        }
    

/* =========================================
   Styles from index.html
   ========================================= */

    /* Page-specific styles */
    .hero {
      background:
        linear-gradient(135deg, rgba(10, 10, 20, 0.92) 0%, rgba(26, 16, 64, 0.82) 50%, rgba(10, 10, 20, 0.90) 100%),
        linear-gradient(160deg, var(--cosmic-black) 0%, var(--dark-indigo) 60%, var(--cosmic-black) 100%);
    }

    /* Destinations section big tiles */
    .dest-featured {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr;
      grid-template-rows: auto auto;
      gap: 16px;
    }

    .dest-featured .dest-card:first-child {
      grid-row: 1 / 3;
    }

    /* Why travel section bg */
    .why-section {
      background: linear-gradient(180deg, rgba(26, 16, 64, 0.3) 0%, transparent 100%);
    }

    /* YouTube section */
    .yt-section {
      position: relative;
      z-index: 1;
    }

    /* ── STITCH DESIGN COMPONENTS ── */
    /* Hero Section */
    .stitch-hero {
      position: relative;
      height: 85vh;
      min-height: 550px;
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      margin-top: -68px;
      /* overlap the navbar which is 68px */
    }

    .stitch-hero-bg {
      position: absolute;
      inset: 0;
      z-index: 0;
      background: var(--cosmic-black);
    }

    .stitch-hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, transparent, rgba(10, 10, 20, 0.4), var(--cosmic-black));
      z-index: 10;
    }

    .stitch-hero-img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.8;
      z-index: 5;
    }

    .stitch-hero-content {
      position: relative;
      z-index: 20;
      text-align: center;
      padding: 0 16px;
      max-width: 900px;
      margin-top: 68px;
      /* offset navbar overlap */
    }

    .stitch-hero-badge {
      display: inline-block;
      padding: 6px 16px;
      border-radius: 9999px;
      background: rgba(212, 168, 67, 0.2);
      color: var(--gold);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      margin-bottom: 24px;
      border: 1px solid rgba(212, 168, 67, 0.3);
      font-family: 'Cinzel', serif;
    }

    .stitch-hero-title {
      font-size: clamp(36px, 6vw, 72px);
      font-weight: 900;
      color: #fff;
      line-height: 1.1;
      margin-bottom: 24px;
      filter: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.15));
      font-family: 'Cinzel', serif;
    }

    .stitch-hero-title span {
      color: var(--gold);
      font-style: italic;
    }

    .stitch-hero-desc {
      font-size: clamp(16px, 2vw, 20px);
      color: var(--silver);
      margin-bottom: 40px;
      max-width: 672px;
      margin-inline: auto;
      line-height: 1.6;
    }

    /* Quick Search Widget */
    .search-widget {
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(24px);
      -webkit-backdrop-filter: blur(24px);
      border: 1px solid rgba(255, 255, 255, 0.2);
      padding: 8px;
      border-radius: 16px;
      display: flex;
      flex-direction: column;
      gap: 8px;
      max-width: 768px;
      margin: 0 auto;
      box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    }

    @media (min-width: 768px) {
      .search-widget {
        flex-direction: row;
        align-items: center;
      }
    }

    .search-input-group {
      flex: 1;
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 12px 16px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      width: 100%;
    }

    @media (min-width: 768px) {
      .search-input-group {
        border-bottom: none;
        border-right: 1px solid rgba(255, 255, 255, 0.1);
      }
    }

    .search-icon {
      color: var(--gold);
      font-size: 20px;
    }

    .search-input-group select,
    .search-input-group input {
      background: transparent;
      border: none;
      color: white;
      width: 100%;
      outline: none;
      font-size: 15px;
      font-family: 'Raleway', sans-serif;
    }

    .search-input-group select option {
      background: var(--cosmic-black);
    }

    .search-input-group input::placeholder {
      color: rgba(255, 255, 255, 0.6);
    }

    .search-btn {
      width: 100%;
      padding: 12px 32px;
      background: var(--neelkanth);
      color: white;
      font-weight: 700;
      border-radius: 12px;
      transition: background 0.3s;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      font-family: 'Raleway', sans-serif;
      cursor: pointer;
      border: none;
      font-size: 15px;
    }

    @media (min-width: 768px) {
      .search-btn {
        width: auto;
      }
    }

    .search-btn:hover {
      background: #2855CC;
    }

    /* Live Ticker */
    .live-ticker {
      background: var(--gold);
      padding: 8px 0;
      overflow: hidden;
      white-space: nowrap;
    }

    .ticker-content {
      display: flex;
      gap: 40px;
      align-items: center;
      animation: marquee 30s linear infinite;
      color: var(--cosmic-black);
      font-size: 12px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0;
      font-family: 'Raleway', sans-serif;
      width: 200%;
    }

    .ticker-item {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    @keyframes marquee {
      0% {
        transform: translateX(0);
      }

      100% {
        transform: translateX(-50%);
      }
    }

    /* Stitch Cards */
    .stitch-card {
      background: rgba(15, 15, 42, 0.8);
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
      transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
      border: 1px solid rgba(255, 255, 255, 0.05);
      display: flex;
      flex-direction: column;
      text-align: left;
    }

    .stitch-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
      border-color: rgba(212, 168, 67, 0.3);
    }

    .stitch-card-img-wrap {
      position: relative;
      height: 256px;
      overflow: hidden;
    }

    .stitch-card-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s;
    }

    .stitch-card:hover .stitch-card-img {
      transform: scale(1.1);
    }

    .stitch-card-badge {
      position: absolute;
      top: 16px;
      left: 16px;
      background: var(--neelkanth);
      color: white;
      font-size: 12px;
      font-weight: 700;
      padding: 4px 12px;
      border-radius: 9999px;
      text-transform: uppercase;
    }

    .stitch-card-body {
      padding: 24px;
      display: flex;
      flex-direction: column;
      flex: 1;
    }

    .stitch-card-title {
      font-size: 20px;
      font-weight: 700;
      margin-bottom: 8px;
      color: white;
      transition: color 0.3s;
      font-family: 'Cinzel', serif;
    }

    .stitch-card:hover .stitch-card-title {
      color: var(--neelkanth);
    }

    .stitch-card-desc {
      color: var(--silver);
      font-size: 14px;
      margin-bottom: 16px;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .stitch-card-loc {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 24px;
    }

    .stitch-card-loc-icon {
      color: var(--gold);
      font-size: 18px;
    }

    .stitch-card-loc span {
      font-size: 12px;
      font-weight: 600;
      color: #cbd5e1;
    }

    .stitch-card-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      padding-top: 16px;
      margin-top: auto;
    }

    .stitch-card-status-label {
      display: block;
      color: var(--silver);
      font-size: 10px;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-bottom: 2px;
    }

    .stitch-card-status-val {
      font-size: 14px;
      font-weight: 700;
      color: var(--gold);
    }

    .stitch-card-btn {
      color: var(--neelkanth);
      font-weight: 700;
      font-size: 14px;
      display: flex;
      align-items: center;
      gap: 4px;
      text-decoration: none;
    }

    .stitch-card-btn span {
      transition: transform 0.3s;
      font-size: 18px;
      line-height: 1;
    }

    .stitch-card:hover .stitch-card-btn span {
      transform: translateX(4px);
    }

    .packages-carousel-wrapper {
      position: relative;
    }

    .packages-track {
      display: flex;
      gap: 24px;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      scrollbar-width: none;
      -ms-overflow-style: none;
      /* IE/Edge */
    }

    .packages-track::-webkit-scrollbar {
      display: none;
      /* Chrome/Safari */
    }

    .packages-track .stitch-card {
      min-width: 320px;
      flex: 0 0 320px;
      scroll-snap-align: start;
    }

    .carousel-controls {
      position: absolute;
      top: -85px;
      /* Offset to match the section-header top right */
      right: 0;
      display: flex;
      gap: 12px;
      z-index: 50;
    }

    .carousel-btn {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: var(--midnight-blue);
      border: var(--border-gold);
      color: var(--gold);
      font-size: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    }

    .carousel-btn:hover {
      background: rgba(212, 168, 67, 0.1);
      transform: scale(1.05);
      border-color: var(--gold);
    }
  

/* =========================================
   Styles from kailash.html
   ========================================= */

        .pkg-page-hero {
            position: relative;
            min-height: 55vh;
            display: flex;
            align-items: flex-end;
            padding: 80px 56px 48px;
            overflow: hidden;
            background: linear-gradient(to bottom, rgba(10, 10, 20, .55) 0%, rgba(10, 10, 20, .95) 100%), linear-gradient(160deg, var(--dark-indigo) 0%, #0F1433 60%, var(--cosmic-black) 100%);
            border-bottom: var(--border-gold);
        }

        .pkg-page-hero::before {
            content: '⛰';
            position: absolute;
            right: -40px;
            top: 40%;
            transform: translateY(-50%);
            font-size: 380px;
            color: rgba(212, 168, 67, .04);
            line-height: 1;
            pointer-events: none;
            user-select: none;
        }

        .pkg-detail-layout {
            display: grid;
            grid-template-columns: 1fr 360px;
            gap: 40px;
            align-items: start;
        }

        .pkg-sidebar {
            position: sticky;
            top: 80px;
        }

        .sidebar-card {
            background: var(--midnight-blue);
            border: var(--border-gold);
            border-radius: var(--radius-xl);
            padding: 28px;
            margin-bottom: 20px;
        }

        .sidebar-card h4 {
            color: var(--white);
            margin-bottom: 16px;
            font-size: 16px;
        }

        .sidebar-meta-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 0;
            border-bottom: 1px solid rgba(212, 168, 67, .07);
            font-size: 13px;
        }

        .sidebar-meta-row:last-child {
            border-bottom: none;
        }

        .sidebar-meta-row .label {
            color: var(--silver);
        }

        .sidebar-meta-row .value {
            color: var(--gold);
            font-weight: 600;
            font-family: 'Cinzel', serif;
        }

        @media(max-width:1024px) {
            .pkg-detail-layout {
                grid-template-columns: 1fr;
            }

            .pkg-sidebar {
                position: static;
            }

            .pkg-page-hero {
                padding: 80px 24px 40px;
            }
        }

        @media(max-width:768px) {
            .pkg-page-hero::before {
                display: none;
            }
        }
    

/* =========================================
   Styles from packages.html
   ========================================= */

        .page-hero {
            background:
                linear-gradient(to bottom, rgba(10, 10, 20, 0.7) 0%, rgba(10, 10, 20, 0.95) 100%),
                linear-gradient(160deg, var(--cosmic-black) 0%, var(--dark-indigo) 60%, var(--cosmic-black) 100%);
            min-height: 40vh;
            display: flex;
            align-items: flex-end;
            padding: 80px 56px 48px;
            border-bottom: var(--border-gold);
            position: relative;
            overflow: hidden;
        }
    

/* =========================================
   Styles from pashupatinath.html
   ========================================= */

        .pkg-page-hero {
            position: relative;
            min-height: 50vh;
            display: flex;
            align-items: flex-end;
            padding: 80px 56px 48px;
            overflow: hidden;
            background: linear-gradient(to bottom, rgba(10, 10, 20, .55) 0%, rgba(10, 10, 20, .95) 100%), linear-gradient(160deg, var(--dark-indigo) 0%, #0F1433 60%, var(--cosmic-black) 100%);
            border-bottom: var(--border-gold);
        }

        .pkg-detail-layout {
            display: grid;
            grid-template-columns: 1fr 340px;
            gap: 40px;
            align-items: start;
        }

        .pkg-sidebar {
            position: sticky;
            top: 80px;
        }

        .sidebar-card {
            background: var(--midnight-blue);
            border: var(--border-gold);
            border-radius: var(--radius-xl);
            padding: 28px;
            margin-bottom: 20px;
        }

        .sidebar-card h4 {
            color: var(--white);
            margin-bottom: 16px;
            font-size: 16px;
        }

        .sidebar-meta-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 0;
            border-bottom: 1px solid rgba(212, 168, 67, .07);
            font-size: 13px;
        }

        .sidebar-meta-row:last-child {
            border-bottom: none;
        }

        .sidebar-meta-row .label {
            color: var(--silver);
        }

        .sidebar-meta-row .value {
            color: var(--gold);
            font-weight: 600;
            font-family: 'Cinzel', serif;
        }

        @media(max-width:1024px) {
            .pkg-detail-layout {
                grid-template-columns: 1fr;
            }

            .pkg-sidebar {
                position: static;
            }

            .pkg-page-hero {
                padding: 80px 24px 40px;
            }
        }
    

