/* ==========================================================
   GOLDEN TRIANGLE TOUR – ENTERPRISE LUXURY V2
   Nectar India Tour™ Production System
   ========================================================== */

/* =============================
   ROOT DESIGN TOKENS (Scalable)
============================= */

:root {

  /* Brand */
  --brand-primary: #ff7a18;
  --brand-primary-dark: #e65100;
  --brand-accent: #facc15;

  /* Neutrals */
  --bg-light: #f9fafb;
  --bg-white: #ffffff;
  --bg-dark: #0b1320;
  --text-dark: #0f172a;
  --text-medium: #334155;
  --text-light: #64748b;
  --text-white: #ffffff;

  /* Shadows */
  --shadow-soft: 0 10px 30px rgba(15,23,42,0.06);
  --shadow-elevated: 0 20px 60px rgba(15,23,42,0.12);
  --shadow-glow: 0 15px 40px rgba(255,122,24,0.25);

  /* Radius */
  --radius-lg: 20px;
  --radius-md: 16px;
}

/* =============================
   GLOBAL REFINEMENTS
============================= */

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--bg-light);
  color: var(--text-dark);
}

.wrap {
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

section {
  padding: 6rem 0;
  position: relative;
}

h1, h2, h3, h4 {
  font-family: "Source Serif 4", serif;
  letter-spacing: -0.4px;
  line-height: 1.15;
  color: var(--text-dark);
}

h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 1.8rem;
}

p {
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--text-medium);
}

/* ==========================================================
   HERO SECTION – MOBILE FIRST • HIGH-END PRODUCTION
   ========================================================== */

/* ==========================================================
   ULTRA OPTIMIZED HERO (MOBILE FIRST)
========================================================== */

.tour-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: clamp(4rem, 8vh, 7rem) 1.5rem;
  color: #fff;
}

/* Image layer */
.hero-media,
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-img {
  object-fit: cover;
  z-index: 0;
}

/* Dark overlay */
.tour-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(11,19,32,0.7) 0%,
    rgba(11,19,32,0.85) 100%
  );
  z-index: 1;
}

/* Content */
.tour-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

/* Typography scaling */
.tour-hero h1 {
  font-size: clamp(1.9rem, 6vw, 3.4rem);
  line-height: 1.1;
  margin-bottom: 1.2rem;
  text-wrap: balance;
}

.tour-hero p {
  font-size: clamp(1rem, 3.8vw, 1.2rem);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* Mobile CTA full width */
.tour-hero .btn-primary {
  width: 100%;
  max-width: 420px;
  padding: 16px 22px;
  font-size: 1rem;
}

/* Tablet */
@media (min-width: 768px) {
  .tour-hero .btn-primary {
    width: auto;
  }
}
/* =============================
   CTA BUTTON – CONVERSION OPTIMIZED
============================= */

.btn-primary {
  background: linear-gradient(135deg,var(--brand-primary),var(--brand-primary-dark));
  color: #fff;
  border-radius: 18px;
  padding: 15px 30px;
  font-weight: 700;
  letter-spacing: .5px;
  box-shadow: var(--shadow-glow);
  transition: all .35s cubic-bezier(.4,.2,.2,1);
}

.btn-primary:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 70px rgba(230,81,0,0.35);
}

/* =============================
   ITINERARY CARDS – PREMIUM LAYER
============================= */

.day-block {
  background: var(--bg-white);
  padding: 2.2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  margin-bottom: 2rem;
  transition: all .3s ease;
  border: 1px solid rgba(0,0,0,0.04);
}

.day-block:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-elevated);
}

.day-block h3 {
  margin-bottom: 1rem;
  color: var(--text-dark);
}

/* =============================
   TRUST STRIP – CLEAN ENTERPRISE
============================= */

.enterprise-trust {
  background: linear-gradient(90deg,#ffffff,#f8fafc,#ffffff);
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}

.trust-grid strong {
  font-size: 1.3rem;
  color: var(--text-dark);
}

.trust-grid span {
  font-size: 0.95rem;
  color: var(--text-light);
}

/* =============================
   HOTEL GRID – GLASS HOVER
============================= */

.hotel-grid > div {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  transition: all .3s ease;
}

.hotel-grid > div:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-elevated);
}

/* =============================
   INCLUSIONS – STRONG VISIBILITY
============================= */

.tour-inclusions li::before {
  content: "✔";
  color: var(--brand-primary);
  font-weight: bold;
}

/* =============================
   FAQ – CRISP READABILITY
============================= */

.tour-faq h4 {
  font-weight: 600;
  color: var(--text-dark);
}

.tour-faq p {
  color: var(--text-medium);
}

/* =============================
   PRICING – HIGH CONVERSION BOX
============================= */

.tour-pricing {
  background: linear-gradient(135deg,#fff8f1,#ffffff);
  border-radius: 24px;
  padding: 3.5rem;
  box-shadow: var(--shadow-elevated);
  text-align: center;
}

.tour-pricing strong {
  font-size: 1.6rem;
  color: var(--brand-primary-dark);
}

/* =============================
   E-E-A-T – AUTHORITY BLOCK
============================= */

.enterprise-eaat {
  background: var(--bg-dark);
  color: var(--text-white);
}

.eaat-content p {
  color: rgba(255,255,255,0.9);
}

.eaat-proof .proof-card {
  background: rgba(255,255,255,0.08);
  padding: 1.8rem;
  border-radius: 18px;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.12);
}

/* =============================
   MOBILE OPTIMIZATION
============================= */

@media (max-width: 900px) {
  section {
    padding: 4.5rem 0;
  }

  .tour-hero {
    min-height: 80vh;
  }
}

@media (max-width: 600px) {
  section {
    padding: 3.5rem 0;
  }

  p {
    font-size: 1rem;
  }

  .tour-pricing {
    padding: 2.2rem;
  }
}

/* ==========================================================
   PAGE-SCOPED ENHANCEMENTS (Golden Triangle Only)
   ========================================================== */

/* =============================
   TOUR OVERVIEW + BEST TIME
============================= */

.tour-overview,
.tour-best-time,
.tour-extension {
  max-width: 880px;
}

.tour-overview p,
.tour-best-time p,
.tour-extension p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-medium);
}

/* =============================
   TOUR EXTENSION LINKS
============================= */

.tour-extension a {
  color: var(--brand-primary-dark);
  font-weight: 600;
  text-decoration: underline;
}

.tour-extension a:hover {
  opacity: 0.8;
}

/* =============================
   URGENT CTA SECTION
============================= */

.tour-cta-urgent {
  background: linear-gradient(135deg,#fff7ed,#ffffff);
  border-radius: 24px;
  padding: 3rem;
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.tour-cta-urgent h2 {
  margin-bottom: 1rem;
}

.tour-cta-urgent p {
  margin-bottom: 1.5rem;
}

/* =============================
   AUTHORITY SECTION
============================= */

.tour-authority ul {
  margin-top: 1.2rem;
  padding-left: 0;
  list-style: none;
}

.tour-authority li {
  padding-left: 1.8rem;
  position: relative;
  margin-bottom: .8rem;
  font-size: 1.05rem;
}

.tour-authority li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--brand-primary);
  font-weight: 700;
}

/* =============================
   HOTELS SECTION
============================= */

.tour-hotels h2 {
  margin-bottom: 2rem;
}

.hotel-grid h4 {
  font-size: 1.1rem;
  margin-bottom: .4rem;
  color: var(--text-dark);
}

.hotel-grid p {
  color: var(--text-light);
}

/* =============================
   TESTIMONIAL SECTION FIX
============================= */

#testimonials {
  background: #f8fafc;
  padding: 5rem 2rem;
}

#testimonials .card {
  background: #ffffff !important;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  transition: transform .3s ease, box-shadow .3s ease;
}

#testimonials .card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-elevated);
}

#testimonials p {
  color: var(--text-medium);
}

/* =============================
   STICKY OFFER BAR
============================= */

.nectar-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(90deg,var(--brand-primary),var(--brand-primary-dark));
  color: #fff;
  text-align: center;
  padding: 12px 10px;
  font-weight: 600;
  z-index: 9998;
}

.nectar-sticky-inner strong {
  font-weight: 800;
}

/* =============================
   FLOATING CHAT BUTTON
============================= */

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 70px;
  z-index: 9999;
}

.sticky-cta a {
  display: inline-block;
  background: #25D366;
  color: #fff;
  padding: 14px 18px;
  border-radius: 50px;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  transition: all .3s ease;
}

.sticky-cta a:hover {
  transform: translateY(-4px);
}
/* =============================
   ACCESSIBILITY
============================= */

:focus-visible {
  outline: 3px solid var(--brand-primary);
  outline-offset: 5px;
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
  }
}