/* ============================================================
   HINGURUWELPITIYA URUMA SABHAWA — MAIN STYLESHEET
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700;800&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

/* ============================================================
   CSS CUSTOM PROPERTIES
============================================================ */
:root {
  --primary:       #1E4D2B;
  --primary-mid:   #2D6B3E;
  --vibrant:       #3A9B5C;
  --lime:          #7BC043;
  --sage:          #A8C69F;
  --amber:         #E67E22;
  --gold:          #F39C12;
  --cream:         #FEFAF3;
  --off-white:     #F7F3EB;
  --dark:          #1A1A10;
  --muted:         #5C5246;
  --terracotta:    #C86B3C;
  --card-radius:   20px;
}

/* ============================================================
   BASE RESET & TYPOGRAPHY
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--dark);
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3, h4, h5 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  line-height: 1.15;
}

a { text-decoration: none; transition: all .25s; }
img { max-width: 100%; display: block; }

/* ============================================================
   CONTAINER — centred, padded on all screen sizes
============================================================ */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

@media (max-width: 1024px) {
  .container {
    padding-left: 1.75rem;
    padding-right: 1.75rem;
  }
}

@media (max-width: 768px) {
  .container {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

/* ============================================================
   SCROLLBAR
============================================================ */
::-webkit-scrollbar { width: 7px; }
::-webkit-scrollbar-track { background: var(--off-white); }
::-webkit-scrollbar-thumb { background: var(--sage); border-radius: 50px; }
::-webkit-scrollbar-thumb:hover { background: var(--vibrant); }

/* ============================================================
   NAVBAR
============================================================ */
#mainNav {
  background: rgba(30, 77, 43, 0.97);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,.1);
  padding: .85rem 0;
  transition: background .4s, box-shadow .4s;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1030;
}
#mainNav .container {
  padding-left: 2rem;
  padding-right: 2rem;
}
#mainNav.scrolled {
  background: rgba(22, 56, 32, 0.99);
  box-shadow: 0 6px 30px rgba(0,0,0,.3);
}
.navbar-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff !important;
  letter-spacing: -.3px;
}
.navbar-brand .brand-accent { color: var(--gold); }
.navbar-brand .brand-icon { color: var(--lime); margin-right: .3rem; font-size: 1.3rem; }

.navmenu ul {
  list-style: none;
  display: flex;
  gap: .15rem;
  margin: 0; padding: 0;
  align-items: center;
}
.navmenu a {
  color: rgba(255,255,255,.8);
  font-size: .92rem;
  font-weight: 500;
  padding: .42rem .95rem;
  border-radius: 6px;
  display: block;
  transition: all .25s;
}
.navmenu a:hover,
.navmenu a.active {
  color: #fff;
  background: rgba(255,255,255,.1);
}
.navmenu .btn-order {
  background: linear-gradient(135deg, var(--amber), var(--gold));
  color: #fff !important;
  border-radius: 50px;
  padding: .4rem 1.25rem;
  font-weight: 700;
  margin-left: .5rem;
}
.navmenu .btn-order:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(230,126,34,.45);
  background: linear-gradient(135deg, var(--gold), var(--amber));
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: 1.5px solid rgba(255,255,255,.4);
  border-radius: 8px;
  padding: .4rem .7rem;
  cursor: pointer;
  color: #fff;
  font-size: 1.2rem;
  transition: all .25s;
}
.mobile-menu-btn:hover { background: rgba(255,255,255,.1); }

.mobile-nav {
  display: none;
  background: rgba(22,56,32,.99);
  padding: 1.2rem;
  flex-direction: column;
  gap: .3rem;
  border-top: 1px solid rgba(255,255,255,.1);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: rgba(255,255,255,.85);
  padding: .6rem 1rem;
  border-radius: 8px;
  font-weight: 500;
  display: block;
}
.mobile-nav a:hover { background: rgba(255,255,255,.1); color: #fff; }
.mobile-nav .btn-order-mobile {
  background: linear-gradient(135deg,var(--amber),var(--gold));
  color: #fff !important;
  text-align: center;
  border-radius: 50px;
  font-weight: 700;
  margin-top: .5rem;
}

/* ============================================================
   HERO SLIDER
============================================================ */
.hero-slider-wrap {
  margin-top: 68px;
  position: relative;
  height: 92vh;
  min-height: 520px;
  overflow: hidden;
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
  pointer-events: none;
}
.slide.active { opacity: 1; pointer-events: auto; }
.slide img,
.slide video,
.slide iframe {
  width: 100%; height: 100%; object-fit: cover;
  position: absolute; inset: 0;
}
.slide .yt-frame {
  width: 100%; height: 100%;
  position: absolute; inset: 0;
  pointer-events: none;
}
.slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(30,77,43,.88) 0%, rgba(58,155,92,.1) 30%, rgba(123,192,67,.55) 100%);
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 2rem;
}
.hero-text { color: #fff; max-width: 820px; }
.hero-pill {
  display: inline-block;
  background: rgba(255,255,255,.18);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.3);
  padding: .42rem 1.4rem;
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
}
.hero-text h1 {
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 800;
  text-shadow: 0 4px 25px rgba(0,0,0,.35);
  margin-bottom: 1rem;
}
.hero-text p {
  font-size: clamp(1rem, 2.2vw, 1.3rem);
  opacity: .93;
  margin-bottom: 2rem;
}
.hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* Slider Controls */
.slider-prev,
.slider-next {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.18);
  border: 1.5px solid rgba(255,255,255,.4);
  color: #fff;
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 10;
  backdrop-filter: blur(6px);
  transition: all .3s;
}
.slider-prev { left: 22px; }
.slider-next { right: 22px; }
.slider-prev:hover, .slider-next:hover {
  background: rgba(255,255,255,.35);
  transform: translateY(-50%) scale(1.08);
}

.slider-dots {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 10px; z-index: 10;
}
.dot {
  width: 11px; height: 11px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  border: 2px solid #fff;
  cursor: pointer;
  transition: all .35s;
}
.dot.active {
  background: #fff;
  transform: scale(1.25);
  box-shadow: 0 0 12px rgba(255,255,255,.6);
}

/* ============================================================
   PAGE HERO BAND (inner pages)
============================================================ */
.page-hero {
  margin-top: 68px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--vibrant) 100%);
  padding: 5rem 2rem 3.5rem;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .page-hero { padding: 4rem 1.25rem 2.8rem; }
}
.page-hero::before {
  content: '';
  position: absolute; top: -120px; right: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,.1) 0%, transparent 70%);
  border-radius: 50%;
}
.page-hero::after {
  content: '';
  position: absolute; bottom: -60px; left: -60px;
  width: 250px; height: 250px;
  background: radial-gradient(circle, rgba(255,255,255,.08) 0%, transparent 70%);
  border-radius: 50%;
}
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); margin-bottom: .6rem; }
.page-hero p {
  opacity: .92; font-size: 1.08rem;
  max-width: 640px; margin: 0 auto;
}

/* ============================================================
   SECTION UTILITIES
============================================================ */
.section-pad    { padding: 5.5rem 0; }
.section-pad-sm { padding: 3.5rem 0; }

/* Sections that sit outside a .container get their own safe padding */
section.section-pad    > .container,
section.section-pad-sm > .container { /* already handled by .container */ }

.section-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--sage), var(--lime));
  color: var(--primary);
  padding: .33rem 1.15rem;
  border-radius: 50px;
  font-size: .77rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: .75rem;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  background: linear-gradient(135deg, var(--primary), var(--vibrant));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: .55rem;
}
.section-sub {
  color: var(--muted);
  font-size: 1.02rem;
  max-width: 580px;
  margin: 0 auto;
}

/* ============================================================
   BUTTONS
============================================================ */
.btn-primary-v {
  background: linear-gradient(135deg, var(--amber), var(--gold));
  color: #fff !important;
  border: none;
  border-radius: 50px;
  padding: .72rem 2.1rem;
  font-weight: 700;
  font-size: .97rem;
  display: inline-flex; align-items: center; gap: .45rem;
  transition: all .35s;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
}
.btn-primary-v:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(230,126,34,.45);
}
.btn-outline-v {
  background: transparent;
  color: #fff !important;
  border: 2.5px solid #fff;
  border-radius: 50px;
  padding: .68rem 2.1rem;
  font-weight: 700;
  font-size: .97rem;
  display: inline-flex; align-items: center; gap: .45rem;
  transition: all .35s;
  cursor: pointer;
}
.btn-outline-v:hover {
  background: #fff;
  color: var(--primary) !important;
  transform: translateY(-4px);
}
.btn-green-v {
  background: linear-gradient(135deg, var(--primary), var(--vibrant));
  color: #fff !important;
  border: none;
  border-radius: 50px;
  padding: .65rem 1.9rem;
  font-weight: 700;
  font-size: .92rem;
  display: inline-flex; align-items: center; gap: .4rem;
  transition: all .35s;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
}
.btn-green-v:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(30,77,43,.4);
}

/* ============================================================
   FEATURE CARDS
============================================================ */
.feature-card {
  background: #fff;
  border-radius: var(--card-radius);
  padding: 2.4rem 1.9rem;
  text-align: center;
  box-shadow: 0 6px 28px rgba(30,77,43,.08);
  border: 1.5px solid transparent;
  transition: all .4s;
  height: 100%;
}
.feature-card:hover {
  transform: translateY(-10px);
  border-color: var(--vibrant);
  box-shadow: 0 20px 50px rgba(30,77,43,.16);
}
.feature-icon {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, var(--primary), var(--vibrant));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.3rem;
  font-size: 1.8rem; color: #fff;
}
.feature-card h5 { color: var(--primary); font-size: 1.4rem; margin-bottom: .5rem; }
.feature-card p { color: var(--muted); font-size: .93rem; }

/* ============================================================
   PRODUCT CARDS
============================================================ */
.product-card {
  background: #fff;
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: 0 6px 28px rgba(30,77,43,.09);
  transition: all .4s;
  height: 100%;
  display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-10px); box-shadow: 0 22px 55px rgba(30,77,43,.18); }
.prod-img { position: relative; overflow: hidden; height: 240px; flex-shrink: 0; }
.prod-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.product-card:hover .prod-img img { transform: scale(1.1); }
.prod-badge {
  position: absolute; top: 14px; right: 14px;
  background: linear-gradient(135deg, var(--amber), var(--gold));
  color: #fff; font-size: .73rem; font-weight: 700;
  padding: .28rem .85rem; border-radius: 50px;
  box-shadow: 0 4px 12px rgba(230,126,34,.4);
}
.prod-body { padding: 1.6rem; flex: 1; display: flex; flex-direction: column; }
.prod-title { color: var(--primary); font-size: 1.42rem; margin-bottom: .45rem; }
.prod-desc { color: var(--muted); font-size: .92rem; flex: 1; margin-bottom: .95rem; line-height: 1.6; }
.prod-price {
  font-size: 1.5rem; font-weight: 800;
  background: linear-gradient(135deg, var(--vibrant), var(--lime));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; margin-bottom: 1.1rem;
}

/* ============================================================
   STATS STRIP
============================================================ */
.stats-strip {
  background: linear-gradient(135deg, var(--primary), var(--vibrant));
  border-radius: 24px; padding: 3.5rem 2rem;
  position: relative; overflow: hidden;
}
.stats-strip::before {
  content: ''; position: absolute; top: -120px; right: -80px;
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(255,255,255,.08) 0%, transparent 70%);
  border-radius: 50%;
}
.stat-item { text-align: center; color: #fff; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem; font-weight: 900; line-height: 1; margin-bottom: .3rem;
}
.stat-label { font-size: .93rem; opacity: .9; }

/* ============================================================
   HOW IT WORKS BAND
============================================================ */
.how-band {
  background: linear-gradient(135deg, var(--vibrant), var(--lime));
  border-radius: 28px; padding: 4.5rem 4rem;
  position: relative; overflow: hidden;
}
.how-band::after {
  content: ''; position: absolute; bottom: -100px; left: -60px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255,255,255,.1) 0%, transparent 70%);
  border-radius: 50%;
}
.step-card {
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(10px);
  border: 1.5px solid rgba(255,255,255,.22);
  border-radius: 18px; padding: 2.4rem 1.8rem;
  text-align: center; color: #fff; height: 100%;
  transition: all .35s;
  position: relative; z-index: 1;
}
.step-card:hover { background: rgba(255,255,255,.25); transform: translateY(-8px); }
.step-num {
  width: 72px; height: 72px; background: #fff;
  color: var(--vibrant); border-radius: 50%;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.3rem;
  box-shadow: 0 6px 20px rgba(0,0,0,.12);
  transition: transform .55s;
}
.step-card:hover .step-num { transform: rotate(360deg); }
.step-card h5 { font-size: 1.32rem; margin-bottom: .55rem; }
.step-card p { opacity: .93; font-size: .93rem; }

/* ============================================================
   CTA BANNER
============================================================ */
.cta-banner {
  position: relative; border-radius: 28px; overflow: hidden;
  min-height: 420px; display: flex; align-items: center;
}
.cta-banner img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s;
}
.cta-banner:hover img { transform: scale(1.04); }
.cta-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(30,77,43,.92), rgba(58,155,92,.8));
}
.cta-inner {
  position: relative; z-index: 2;
  color: #fff; padding: 4rem 4rem;
}
.cta-inner h2 { font-size: clamp(1.9rem, 4vw, 3rem); margin-bottom: .85rem; }
.cta-inner p { font-size: 1.08rem; opacity: .93; margin-bottom: 2rem; max-width: 560px; }

/* ============================================================
   CATEGORY CARDS
============================================================ */
.cat-card {
  background: #fff; border-radius: 18px;
  padding: 1.8rem 1.2rem; text-align: center;
  box-shadow: 0 6px 24px rgba(30,77,43,.07);
  border: 2px solid transparent; cursor: pointer;
  transition: all .35s;
}
.cat-card:hover {
  transform: translateY(-8px);
  border-color: var(--vibrant);
  box-shadow: 0 14px 40px rgba(30,77,43,.18);
}
.cat-icon { font-size: 2.4rem; margin-bottom: .65rem; }
.cat-card h6 { color: var(--primary); font-size: 1.1rem; margin-bottom: .18rem; }
.cat-card small { color: var(--muted); font-size: .82rem; }

/* ============================================================
   STORY CARDS
============================================================ */
.story-card {
  background: #fff; border-radius: var(--card-radius);
  padding: 2.2rem; border-left: 5px solid var(--vibrant);
  box-shadow: 0 6px 28px rgba(30,77,43,.09);
  height: 100%; transition: all .35s;
}
.story-card:hover { transform: translateY(-6px); box-shadow: 0 18px 48px rgba(30,77,43,.17); }
.story-card h5 { color: var(--primary); font-size: 1.28rem; margin-bottom: .35rem; }
.story-byline { color: var(--vibrant); font-weight: 700; font-size: .88rem; margin-bottom: .75rem; }
.story-card p { color: var(--muted); font-size: .93rem; line-height: 1.7; }

/* ============================================================
   MAKER CARDS
============================================================ */
.maker-card {
  background: #fff; border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: 0 6px 28px rgba(30,77,43,.09);
  transition: all .4s;
}
.maker-card:hover { transform: translateY(-8px); box-shadow: 0 22px 55px rgba(30,77,43,.18); }
.maker-img { height: 220px; overflow: hidden; }
.maker-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.maker-card:hover .maker-img img { transform: scale(1.08); }
.maker-body { padding: 1.6rem; }
.maker-body h5 { color: var(--primary); font-size: 1.28rem; margin-bottom: .25rem; }
.maker-tag {
  display: inline-block;
  background: rgba(58,155,92,.12); color: var(--vibrant);
  padding: .16rem .7rem; border-radius: 50px;
  font-size: .77rem; font-weight: 600; margin-bottom: .6rem;
}
.maker-body p { color: var(--muted); font-size: .9rem; line-height: 1.6; }

/* ============================================================
   ARTICLE CARDS
============================================================ */
.article-card {
  background: #fff; border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: 0 6px 28px rgba(30,77,43,.09);
  transition: all .4s; height: 100%;
  display: flex; flex-direction: column;
}
.article-card:hover { transform: translateY(-8px); box-shadow: 0 22px 55px rgba(30,77,43,.18); }
.article-img { height: 210px; overflow: hidden; flex-shrink: 0; }
.article-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.article-card:hover .article-img img { transform: scale(1.08); }
.article-body { padding: 1.6rem; flex: 1; display: flex; flex-direction: column; }
.article-body h5 { color: var(--primary); font-size: 1.28rem; margin-bottom: .45rem; }
.article-body p { color: var(--muted); font-size: .91rem; flex: 1; margin-bottom: 1rem; line-height: 1.6; }

/* ============================================================
   IMPACT CARDS
============================================================ */
.impact-card {
  background: #fff; border-radius: 18px;
  padding: 2rem; box-shadow: 0 6px 28px rgba(30,77,43,.08);
  text-align: center; height: 100%; transition: all .35s;
}
.impact-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(30,77,43,.17); }
.impact-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.2rem; font-weight: 900; color: var(--vibrant);
  margin-bottom: .25rem;
}
.impact-card h6 { color: var(--primary); font-size: 1.05rem; margin-bottom: .4rem; }
.impact-card p { color: var(--muted); font-size: .88rem; }

/* ============================================================
   PRE-ORDER FORM
============================================================ */
.preorder-form-wrap {
  background: #fff;
  border-radius: 28px;
  padding: 3.5rem;
  box-shadow: 0 12px 50px rgba(30,77,43,.13);
}
.preorder-form-wrap h2 { color: var(--primary); font-size: 2.2rem; margin-bottom: .4rem; }
.preorder-form-wrap .lead { color: var(--muted); margin-bottom: 2rem; }

.form-label { color: var(--primary); font-weight: 600; margin-bottom: .38rem; font-size: .93rem; }
.form-control, .form-select {
  border: 2px solid var(--sage); border-radius: 10px;
  padding: .72rem 1rem;
  font-family: 'DM Sans', sans-serif;
  font-size: .94rem;
  background: var(--cream);
  color: var(--dark);
  width: 100%;
  transition: border-color .25s, box-shadow .25s;
  outline: none;
}
.form-control:focus, .form-select:focus {
  border-color: var(--vibrant);
  box-shadow: 0 0 0 4px rgba(58,155,92,.12);
  background: #fff;
}
textarea.form-control { resize: vertical; min-height: 110px; }

.product-checkboxes { display: grid; grid-template-columns: 1fr 1fr; gap: .6rem; }
.product-check-item {
  display: flex; align-items: center; gap: .5rem;
  background: var(--off-white); border-radius: 10px;
  padding: .65rem 1rem; cursor: pointer;
  border: 1.5px solid transparent;
  transition: all .25s;
  font-size: .9rem;
}
.product-check-item:has(input:checked) {
  border-color: var(--vibrant);
  background: rgba(58,155,92,.1);
}
.product-check-item input[type="checkbox"] {
  accent-color: var(--vibrant); width: 16px; height: 16px;
}

.form-msg {
  display: none;
  padding: 1rem 1.4rem;
  border-radius: 12px;
  font-weight: 600;
  margin-bottom: 1.2rem;
}
.form-msg.success { background: rgba(39,174,96,.12); color: #1e7e3e; display: block; }
.form-msg.error   { background: rgba(220,53,69,.1);   color: #c0392b; display: block; }

/* ============================================================
   CONTACT BLOCKS
============================================================ */
.contact-block {
  border-radius: 20px; padding: 2.5rem 2rem;
  text-align: center; color: #fff; height: 100%;
}
.contact-block h5 { font-size: 1.5rem; margin-bottom: .65rem; }
.contact-block p { opacity: .93; margin: 0; line-height: 1.7; }

/* ============================================================
   TRUST BANNER
============================================================ */
.trust-banner {
  background: rgba(58,155,92,.09);
  border: 2px dashed var(--vibrant); border-radius: 14px;
  padding: 1.1rem 1.5rem; text-align: center;
}
.trust-banner p { color: var(--primary); font-weight: 600; margin: 0; font-size: .97rem; }

/* ============================================================
   FOOTER
============================================================ */
#mainFooter {
  background: linear-gradient(135deg, var(--primary), var(--primary-mid));
  color: #fff;
  padding: 5rem 0 2rem;
  margin-top: 2rem;
}
#mainFooter .container {
  padding-left: 2rem;
  padding-right: 2rem;
}
#mainFooter h6 {
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; margin-bottom: 1.15rem;
}
#mainFooter p,
#mainFooter a {
  color: rgba(255,255,255,.83);
  font-size: .91rem;
  display: block;
  margin-bottom: .52rem;
  transition: all .25s;
}
#mainFooter a:hover { color: var(--gold); padding-left: 4px; }
.footer-divider { border-color: rgba(255,255,255,.15); margin: 2.5rem 0 1.5rem; }
.footer-bottom { color: rgba(255,255,255,.6); font-size: .84rem; text-align: center; }
.footer-social { display: flex; gap: 1rem; margin-top: 1rem; }
.footer-social a { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; background: rgba(255,255,255,.12); border-radius: 50%; color: rgba(255,255,255,.8) !important; font-size: 1.1rem; margin: 0; padding: 0; transition: all .25s; }
.footer-social a:hover { background: var(--gold); color: #fff !important; transform: translateY(-2px); }

/* ============================================================
   BACK TO TOP
============================================================ */
.back-to-top {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 46px; height: 46px;
  background: var(--primary); color: #fff;
  border: none; border-radius: 50%;
  display: none; align-items: center; justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 6px 20px rgba(30,77,43,.35);
  transition: all .3s; cursor: pointer;
}
.back-to-top:hover { background: var(--vibrant); transform: translateY(-3px); }
.back-to-top.visible { display: flex; }

/* ============================================================
   ANIMATIONS
============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   VISIT HERO STRIP
============================================================ */
.visit-hero-strip {
  background: linear-gradient(135deg, var(--primary), var(--vibrant));
  border-radius: 24px;
  padding: 3rem 3.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.visit-hero-strip::after {
  content: '';
  position: absolute; top: -80px; right: -60px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(255,255,255,.09) 0%, transparent 70%);
  border-radius: 50%;
}
.visit-hero-strip h3 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: .55rem;
  color: #fff;
}
.visit-hero-strip p {
  opacity: .92;
  font-size: 1rem;
  max-width: 520px;
  margin: 0;
}
@media (max-width: 768px) {
  .visit-hero-strip { padding: 2.2rem 1.75rem; }
}

/* ============================================================
   PACKAGE CARDS
============================================================ */
.pkg-card {
  background: #fff;
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: 0 6px 28px rgba(30,77,43,.09);
  transition: all .4s;
  display: flex;
  flex-direction: column;
  position: relative;
}
.pkg-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 60px rgba(30,77,43,.18);
}
.pkg-card.featured {
  border: 2.5px solid var(--vibrant);
  box-shadow: 0 10px 40px rgba(58,155,92,.2);
}
.pkg-popular-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: linear-gradient(135deg, var(--amber), var(--gold));
  color: #fff;
  font-size: .73rem; font-weight: 700;
  padding: .28rem .9rem;
  border-radius: 50px;
  z-index: 5;
  box-shadow: 0 4px 12px rgba(230,126,34,.4);
}
.pkg-img {
  height: 210px;
  overflow: hidden;
  flex-shrink: 0;
}
.pkg-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.pkg-card:hover .pkg-img img { transform: scale(1.07); }

.pkg-body {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.pkg-tag {
  display: inline-flex;
  align-items: center;
  background: rgba(58,155,92,.12);
  color: var(--vibrant);
  padding: .22rem .85rem;
  border-radius: 50px;
  font-size: .77rem; font-weight: 700;
  margin-bottom: .75rem;
  width: fit-content;
}
.pkg-title {
  color: var(--primary);
  font-size: 1.45rem;
  margin-bottom: .5rem;
}
.pkg-desc {
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.65;
  margin-bottom: 1.1rem;
}
.pkg-includes {
  list-style: none;
  margin: 0 0 1.4rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: .42rem;
}
.pkg-includes li {
  display: flex;
  align-items: flex-start;
  gap: .55rem;
  font-size: .88rem;
  color: var(--dark);
}
.pkg-includes li i {
  color: var(--vibrant);
  flex-shrink: 0;
  font-size: .95rem;
  margin-top: .1rem;
}
.pkg-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: auto;
  padding-top: 1.1rem;
  border-top: 1.5px solid var(--off-white);
}
.pkg-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
}
.pkg-price small {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: .78rem;
  color: var(--muted);
  font-weight: 400;
}
.pkg-duration {
  display: inline-flex;
  align-items: center;
  background: var(--off-white);
  color: var(--muted);
  padding: .28rem .85rem;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 600;
}

/* ============================================================
   SHOW / CULTURAL EXPERIENCE CARDS
============================================================ */
.show-card {
  background: #fff;
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: 0 6px 28px rgba(30,77,43,.09);
  transition: all .4s;
  display: flex;
  flex-direction: column;
}
.show-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 52px rgba(30,77,43,.17);
}
.show-img {
  height: 200px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}
.show-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.show-card:hover .show-img img { transform: scale(1.07); }
.show-location-pill {
  position: absolute;
  bottom: 12px; left: 12px;
  background: rgba(30,77,43,.82);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: .75rem; font-weight: 700;
  padding: .25rem .8rem;
  border-radius: 50px;
}
.show-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.show-body h5 {
  color: var(--primary);
  font-size: 1.25rem;
  margin-bottom: .45rem;
}
.show-body p {
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1rem;
}
.show-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem .9rem;
  margin-bottom: .85rem;
}
.show-meta span {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-size: .8rem;
  color: var(--muted);
}
.show-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 1rem;
}

/* ============================================================
   BOOKING FORM SECTION
============================================================ */
.booking-form-wrap {
  background: #fff;
  border-radius: 28px;
  padding: 3.5rem;
  box-shadow: 0 12px 50px rgba(30,77,43,.12);
}
.booking-form-wrap h2 {
  color: var(--primary);
  font-size: 2.1rem;
  margin-bottom: .4rem;
}
.booking-form-wrap .lead {
  color: var(--muted);
  margin-bottom: 2rem;
  font-size: .97rem;
}
@media (max-width: 768px) {
  .booking-form-wrap { padding: 2rem 1.5rem; }
}

/* Package Radio Selector */
.pkg-selector {
  display: flex;
  flex-direction: column;
  gap: .55rem;
}
.pkg-radio-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  background: var(--off-white);
  border-radius: 12px;
  padding: .85rem 1.15rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .25s;
}
.pkg-radio-item:has(input:checked) {
  border-color: var(--vibrant);
  background: rgba(58,155,92,.09);
}
.pkg-radio-item input[type="radio"] {
  accent-color: var(--vibrant);
  width: 17px; height: 17px;
  flex-shrink: 0;
  cursor: pointer;
}
.pkg-radio-item label {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  margin: 0;
  font-size: .9rem;
}
.pkg-radio-item label strong {
  color: var(--dark);
  font-size: .95rem;
}
.pkg-radio-item label span {
  color: var(--muted);
  font-size: .8rem;
  margin-top: .1rem;
}

/* ============================================================
   BOOKING SIDEBAR
============================================================ */
.booking-sidebar {
  position: sticky;
  top: 88px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.booking-info-box {
  background: #fff;
  border-radius: 20px;
  padding: 1.8rem;
  box-shadow: 0 6px 28px rgba(30,77,43,.09);
}
.booking-info-box h5 {
  color: var(--primary);
  font-size: 1.2rem;
  margin-bottom: 1.1rem;
  padding-bottom: .6rem;
  border-bottom: 2px solid var(--off-white);
}
.info-line {
  display: flex;
  align-items: flex-start;
  gap: .8rem;
  margin-bottom: .85rem;
  font-size: .9rem;
}
.info-line > i {
  color: var(--vibrant);
  font-size: 1.05rem;
  flex-shrink: 0;
  margin-top: .1rem;
}
.info-line > div { color: var(--dark); line-height: 1.55; }
.info-line > div strong { display: block; color: var(--primary); font-size: .88rem; }

/* Timeline steps in sidebar */
.timeline-steps { display: flex; flex-direction: column; gap: 1rem; }
.timeline-step {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
}
.t-dot {
  width: 30px; height: 30px;
  background: linear-gradient(135deg, var(--primary), var(--vibrant));
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .82rem; font-weight: 800;
  flex-shrink: 0;
}
.t-text { display: flex; flex-direction: column; font-size: .9rem; padding-top: .18rem; }
.t-text strong { color: var(--dark); }
.t-text span { color: var(--muted); font-size: .82rem; margin-top: .08rem; }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1200px) {
  .navmenu { display: none; }
  .mobile-menu-btn { display: block; }
  #mainNav { padding: .75rem 0; }
}
@media (max-width: 768px) {
  .hero-text h1 { font-size: 2.2rem; }
  .how-band { padding: 3rem 1.75rem; }
  .cta-inner { padding: 2.5rem 1.75rem; }
  .preorder-form-wrap { padding: 2rem 1.5rem; }
  .product-checkboxes { grid-template-columns: 1fr; }
  .stats-strip { border-radius: 16px; }
  .stats-strip { padding: 2.5rem 1.5rem; }
  .trust-banner { padding: 1rem 1.25rem; }
}
@media (max-width: 576px) {
  .slider-prev, .slider-next { display: none; }
  .hero-slider-wrap { height: 85vh; }
  .how-band { padding: 2.5rem 1.25rem; border-radius: 18px; }
  .cta-inner { padding: 2rem 1.25rem; }
  .cta-banner { border-radius: 18px; }
}
