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

    :root {
      --saffron: #E8611A;
      --deep-saffron: #c94e10;
      --gold: #D4A017;
      --cream: #FDF6EC;
      --dark: #1A1208;
      --mid: #4A3520;
      --muted: #8C7355;
      --snow: #FEFEFE;
      --sky: #7BB8CC;
      --ice: #D0EBF5;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Crimson Pro', Georgia, serif;
      background: var(--cream);
      color: var(--dark);
      overflow-x: hidden;
    }

    /* ── HERO ── */
    .hero {
      position: relative;
      min-height: 100svh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 2rem 1.5rem 5rem;
      overflow: hidden;
    }

    .hero-bg {
      position: absolute; inset: 0;
      background:
        linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(26,18,8,0.75) 100%),
        url('https://www.travelshrine.com/wp-content/uploads/2025/03/Amarnath.webp') center/cover no-repeat;
      transform: scale(1.04);
      animation: slowZoom 20s ease-in-out infinite alternate;
    }
    @keyframes slowZoom { from { transform: scale(1.04); } to { transform: scale(1.12); } }

    .hero-badge {
      position: relative;
      display: inline-block;
      background: rgba(212,160,23,0.25);
      border: 1px solid rgba(212,160,23,0.6);
      color: var(--gold);
      font-family: 'Crimson Pro', serif;
      font-size: 0.85rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      padding: 0.4rem 1.2rem;
      border-radius: 2px;
      margin-bottom: 1.5rem;
      animation: fadeUp 0.8s ease both;
    }

    .hero h1 {
      position: relative;
      font-family: 'Cinzel', serif;
      font-weight: 900;
      font-size: clamp(2.4rem, 8vw, 5.5rem);
      color: #fff;
      line-height: 1.05;
      letter-spacing: -0.01em;
      margin-bottom: 0.6rem;
      animation: fadeUp 0.9s 0.1s ease both;
    }
    .hero h1 span { color: var(--gold); }

    .hero-sub {
      position: relative;
      font-size: clamp(1.1rem, 2.5vw, 1.35rem);
      color: rgba(255,255,255,0.82);
      font-style: italic;
      margin-bottom: 2.5rem;
      animation: fadeUp 1s 0.2s ease both;
    }

    .hero-meta {
      position: relative;
      display: flex;
      gap: 1.5rem;
      flex-wrap: wrap;
      justify-content: center;
      margin-bottom: 2.8rem;
      animation: fadeUp 1s 0.3s ease both;
    }
    .hero-meta span {
      background: rgba(255,255,255,0.12);
      backdrop-filter: blur(8px);
      border: 1px solid rgba(255,255,255,0.22);
      color: #fff;
      padding: 0.45rem 1.1rem;
      border-radius: 50px;
      font-size: 0.9rem;
      letter-spacing: 0.03em;
    }
    .hero-meta span strong { color: var(--gold); }

    .btn-primary {
      position: relative;
      display: inline-block;
      background: linear-gradient(135deg, var(--saffron), var(--deep-saffron));
      color: #fff;
      font-family: 'Cinzel', serif;
      font-size: 0.9rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 1rem 2.5rem;
      border: none;
      border-radius: 3px;
      cursor: pointer;
      text-decoration: none;
      box-shadow: 0 8px 30px rgba(232,97,26,0.45);
      transition: transform 0.2s, box-shadow 0.2s;
      animation: fadeUp 1s 0.4s ease both, pulse 2.5s 2s infinite;
    }
    .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(232,97,26,0.6); }
    @keyframes pulse { 0%,100%{ box-shadow:0 8px 30px rgba(232,97,26,0.45);} 50%{ box-shadow:0 8px 50px rgba(232,97,26,0.75);} }

    .scroll-arrow {
      position: absolute;
      bottom: 2rem;
      left: 50%;
      transform: translateX(-50%);
      color: rgba(255,255,255,0.5);
      font-size: 1.6rem;
      animation: bounce 1.8s infinite;
    }
    @keyframes bounce { 0%,100%{ transform: translateX(-50%) translateY(0); } 50%{ transform: translateX(-50%) translateY(8px); } }

    /* ── GALLERY STRIP ── */
    .gallery-strip {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      height: 240px;
    }
    @media(max-width:640px){ .gallery-strip { grid-template-columns: repeat(2,1fr); height: 320px; } }
    .gallery-strip img {
      width: 100%; height: 100%;
      object-fit: cover;
      filter: brightness(0.85);
      transition: filter 0.4s, transform 0.6s;
      display: block;
    }
    .gallery-strip img:hover { filter: brightness(1.05); transform: scale(1.04); }

    /* ── SECTION WRAPPER ── */
    .section { padding: 5rem 1.5rem; }
    .section-inner { max-width: 900px; margin: 0 auto; }

    .section-tag {
      font-family: 'Cinzel', serif;
      font-size: 0.72rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--saffron);
      margin-bottom: 0.6rem;
    }
    .section h2 {
      font-family: 'Cinzel', serif;
      font-size: clamp(1.7rem, 4vw, 2.6rem);
      font-weight: 700;
      color: var(--dark);
      line-height: 1.15;
      margin-bottom: 2rem;
    }
    .divider {
      width: 60px; height: 3px;
      background: linear-gradient(90deg, var(--saffron), var(--gold));
      margin-bottom: 2.2rem;
      border-radius: 2px;
    }

    /* ── OVERVIEW ── */
    .overview-bg { background: var(--dark); }
    .overview-bg .section-tag { color: var(--gold); }
    .overview-bg h2 { color: var(--cream); }
    .overview-cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.2rem;
    }
    @media(max-width:580px){ .overview-cards { grid-template-columns: 1fr; } }
    .ov-card {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 6px;
      padding: 1.8rem 1.4rem;
      text-align: center;
    }
    .ov-card .icon { font-size: 2rem; margin-bottom: 0.7rem; }
    .ov-card h3 { font-family: 'Cinzel', serif; font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.4rem; }
    .ov-card p { color: rgba(255,255,255,0.75); font-size: 1.05rem; }

    /* ── DESTINATIONS ── */
    .destinations-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem;
    }
    @media(max-width:500px){ .destinations-grid { grid-template-columns: 1fr; } }
    .dest-item {
      display: flex;
      align-items: center;
      gap: 0.9rem;
      background: var(--snow);
      border: 1px solid rgba(212,160,23,0.25);
      border-left: 4px solid var(--saffron);
      padding: 1rem 1.2rem;
      border-radius: 4px;
      font-size: 1.05rem;
      color: var(--mid);
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .dest-item:hover { transform: translateX(4px); box-shadow: 4px 4px 20px rgba(0,0,0,0.08); }
    .dest-item .tick { color: var(--saffron); font-size: 1.2rem; flex-shrink: 0; }

    /* ── ITINERARY ── */
    .itin-bg { background: linear-gradient(135deg, #faf4ea 0%, #f5edde 100%); }
    .itin-list { display: flex; flex-direction: column; gap: 0; }
    .itin-item {
      display: grid;
      grid-template-columns: 80px 1fr;
      gap: 0;
      position: relative;
    }
    .itin-item:not(:last-child)::after {
      content: '';
      position: absolute;
      left: 39px; top: 52px; bottom: 0;
      width: 2px;
      background: linear-gradient(180deg, var(--saffron), transparent);
    }
    .itin-day-num {
      display: flex;
      flex-direction: column;
      align-items: center;
      padding-top: 1rem;
      gap: 0.3rem;
    }
    .day-circle {
      width: 40px; height: 40px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--saffron), var(--deep-saffron));
      color: #fff;
      display: flex; align-items: center; justify-content: center;
      font-family: 'Cinzel', serif;
      font-size: 0.75rem;
      font-weight: 700;
      flex-shrink: 0;
      box-shadow: 0 4px 12px rgba(232,97,26,0.35);
      z-index: 1;
      position: relative;
    }
    .itin-content {
      padding: 1rem 0 2.5rem 1.5rem;
    }
    .itin-content h3 {
      font-family: 'Cinzel', serif;
      font-size: 1rem;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 0.3rem;
    }
    .itin-content p { color: var(--muted); font-size: 0.95rem; font-style: italic; }

    /* ── INCLUSIONS ── */
    .inc-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
    }
    @media(max-width:600px){ .inc-grid { grid-template-columns: 1fr; } }
    .inc-box { background: var(--snow); border-radius: 8px; padding: 2rem; box-shadow: 0 4px 24px rgba(0,0,0,0.06); }
    .inc-box h3 {
      font-family: 'Cinzel', serif;
      font-size: 1rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      margin-bottom: 1.2rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }
    .inc-box h3.inc { color: #2E7D32; }
    .inc-box h3.exc { color: #C62828; }
    .inc-box ul { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
    .inc-box li { display: flex; gap: 0.7rem; align-items: flex-start; font-size: 1rem; color: var(--mid); line-height: 1.5; }
    .inc-box li .dot { flex-shrink: 0; margin-top: 0.3rem; width: 8px; height: 8px; border-radius: 50%; }
    .inc-box li .dot.green { background: #2E7D32; }
    .inc-box li .dot.red { background: #C62828; }

    /* ── PAYMENT ── */
    .pay-bg { background: var(--dark); }
    .pay-steps {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }
    @media(max-width:580px){ .pay-steps { grid-template-columns: 1fr; } }
    .pay-step {
      text-align: center;
      padding: 2rem 1rem;
      border: 1px solid rgba(212,160,23,0.2);
      border-radius: 6px;
      position: relative;
    }
    .pay-num {
      font-family: 'Cinzel', serif;
      font-size: 2.5rem;
      font-weight: 900;
      color: rgba(212,160,23,0.2);
      line-height: 1;
      margin-bottom: 0.5rem;
    }
    .pay-pct {
      font-family: 'Cinzel', serif;
      font-size: 1.8rem;
      font-weight: 700;
      color: var(--gold);
      margin-bottom: 0.4rem;
    }
    .pay-step p { color: rgba(255,255,255,0.6); font-size: 0.95rem; }

    /* ── CTA BAND ── */
    .cta-band {
      background: linear-gradient(135deg, var(--saffron) 0%, var(--deep-saffron) 60%, #8B3E0A 100%);
      padding: 4rem 1.5rem;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .cta-band::before {
      content: 'ॐ';
      position: absolute;
      font-size: 22rem;
      color: rgba(255,255,255,0.04);
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      pointer-events: none;
      font-family: serif;
    }
    .cta-band h2 {
      font-family: 'Cinzel', serif;
      font-size: clamp(1.6rem, 4vw, 2.8rem);
      color: #fff;
      margin-bottom: 1rem;
      position: relative;
    }
    .cta-band p {
      color: rgba(255,255,255,0.8);
      font-size: 1.15rem;
      font-style: italic;
      margin-bottom: 2rem;
      position: relative;
    }
    .btn-white {
      display: inline-block;
      background: #fff;
      color: var(--saffron);
      font-family: 'Cinzel', serif;
      font-size: 0.9rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 1rem 2.8rem;
      border: none;
      border-radius: 3px;
      cursor: pointer;
      text-decoration: none;
      box-shadow: 0 8px 30px rgba(0,0,0,0.2);
      transition: transform 0.2s, box-shadow 0.2s;
      position: relative;
    }
    .btn-white:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(0,0,0,0.3); }

    /* ── FOOTER ── */
    footer {
      background: #100C06;
      color: rgba(255,255,255,0.5);
      padding: 3rem 1.5rem 2rem;
      text-align: center;
    }
    .footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem 1.5rem; margin-bottom: 1.5rem; }
    .footer-links a { color: rgba(255,255,255,0.45); text-decoration: none; font-size: 0.88rem; transition: color 0.2s; }
    .footer-links a:hover { color: var(--gold); }
    footer p { font-size: 0.85rem; line-height: 1.8; }
    footer a { color: var(--gold); text-decoration: none; }

    /* ── FLOATING BOTTOM BAR ── */
    .bottom-bar {
      position: fixed;
      bottom: 0; left: 0; right: 0;
      z-index: 900;
      display: flex;
      height: 60px;
      box-shadow: 0 -4px 24px rgba(0,0,0,0.18);
    }
    .bottom-bar a {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      font-family: 'Cinzel', serif;
      font-size: 0.85rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      text-decoration: none;
      color: #fff;
      cursor: pointer;
      transition: opacity 0.2s;
    }
    .bottom-bar a:hover { opacity: 0.88; }
    .bottom-bar .call-btn { background: linear-gradient(90deg, #1a7a1a, #1d9e1d); }
    .bottom-bar .enq-btn  { background: linear-gradient(90deg, var(--saffron), var(--deep-saffron)); }

    /* ── WHATSAPP FLOAT ── */
    .wa-float {
      position: fixed;
      right: 1.2rem;
      bottom: 80px;
      z-index: 901;
      width: 54px; height: 54px;
      background: #25D366;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 6px 22px rgba(37,211,102,0.5);
      text-decoration: none;
      animation: waBounce 3s 2s infinite;
    }
    .wa-float svg { width: 28px; height: 28px; fill: #fff; }
    @keyframes waBounce { 0%,90%,100%{transform:scale(1)} 95%{transform:scale(1.15)} }

    /* ── POPUP ── */
    .popup-overlay {
      display: none;
      position: fixed; inset: 0;
      background: rgba(0,0,0,0.65);
      backdrop-filter: blur(4px);
      z-index: 9999;
      align-items: center;
      justify-content: center;
      padding: 1rem;
    }
    .popup-overlay.active { display: flex; }

    .popup-box {
      background: var(--snow);
      border-radius: 10px;
      padding: 2.5rem 2rem;
      width: 100%;
      max-width: 460px;
      position: relative;
      box-shadow: 0 30px 80px rgba(0,0,0,0.35);
      animation: popIn 0.35s cubic-bezier(0.34,1.56,0.64,1) both;
    }
    @keyframes popIn { from { opacity:0; transform:scale(0.88) translateY(20px); } to { opacity:1; transform:none; } }

    .popup-close {
      position: absolute;
      top: 1rem; right: 1rem;
      background: none; border: none;
      font-size: 1.5rem; color: var(--muted);
      cursor: pointer; line-height: 1;
      transition: color 0.2s, transform 0.2s;
    }
    .popup-close:hover { color: var(--saffron); transform: rotate(90deg); }

    .popup-box .om {
      text-align: center;
      font-size: 2.4rem;
      color: var(--saffron);
      margin-bottom: 0.3rem;
    }
    .popup-box h2 {
      font-family: 'Cinzel', serif;
      font-size: 1.4rem;
      font-weight: 700;
      color: var(--dark);
      text-align: center;
      margin-bottom: 0.3rem;
    }
    .popup-box .sub {
      text-align: center;
      color: var(--muted);
      font-style: italic;
      font-size: 0.95rem;
      margin-bottom: 1.8rem;
    }

    .form-group { margin-bottom: 1.1rem; }
    .form-group label { display: block; font-size: 0.82rem; font-family: 'Cinzel', serif; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.4rem; }
    .form-group input,
    .form-group textarea {
      width: 100%;
      padding: 0.8rem 1rem;
      border: 1.5px solid #e0d5c5;
      border-radius: 5px;
      font-family: 'Crimson Pro', serif;
      font-size: 1rem;
      color: var(--dark);
      background: var(--cream);
      transition: border-color 0.2s, box-shadow 0.2s;
      outline: none;
    }
    .form-group input:focus,
    .form-group textarea:focus {
      border-color: var(--saffron);
      box-shadow: 0 0 0 3px rgba(232,97,26,0.12);
    }
    .form-group textarea { resize: none; height: 90px; }

    .form-submit {
      width: 100%;
      padding: 1rem;
      background: linear-gradient(135deg, var(--saffron), var(--deep-saffron));
      color: #fff;
      font-family: 'Cinzel', serif;
      font-size: 0.9rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      box-shadow: 0 6px 24px rgba(232,97,26,0.35);
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .form-submit:hover { transform: translateY(-1px); box-shadow: 0 10px 32px rgba(232,97,26,0.5); }

    .success-msg {
      display: none;
      text-align: center;
      padding: 1.5rem 0;
    }
    .success-msg .tick-big { font-size: 3rem; }
    .success-msg h3 { font-family: 'Cinzel', serif; font-size: 1.2rem; color: var(--dark); margin: 0.5rem 0; }
    .success-msg p { color: var(--muted); font-style: italic; }

    .req { color: var(--saffron); }
    .field-error { display: block; color: #c62828; font-size: 0.82rem; margin-top: 0.3rem; min-height: 1rem; font-style: italic; }
    .form-group input.invalid,
    .form-group textarea.invalid { border-color: #c62828; box-shadow: 0 0 0 3px rgba(198,40,40,0.1); }
    .form-server-error { color: #c62828; font-size: 0.9rem; font-style: italic; margin-bottom: 0.8rem; text-align: center; }
    .form-submit:disabled { opacity: 0.65; cursor: not-allowed; transform: none !important; }

    /* ── ANIMATIONS ── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(28px); }
      to   { opacity: 1; transform: none; }
    }
    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .reveal.visible { opacity: 1; transform: none; }