/* ==========================================================================
    ICCS MART PRIVATE LIMITED — design tokens
   Palette drawn from Jaipur's architecture: pink sandstone, old-gold jaali
   work, and indigo desert night skies.
   ========================================================================== */
:root {
  --pink: #3e968f;        /* pink sandstone of Hawa Mahal / city walls */
  --pink-deep: #9C3752;
  --gold: #D4A24C;        /* jaali screens, brassware */
  --indigo: #1B2A4A;      /* desert night sky */
  --indigo-deep: #101B33;
  --ivory: #FBF6EF;       /* marble / paper */
  --charcoal: #2B2320;
  --charcoal-soft: #5B5049;
  --pink-tint: #F3DEE2;

  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Jost', sans-serif;

  --radius-arch: 50% 50% 0 0 / 100% 100% 0 0;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--ivory);
  margin: 0;
  overflow-x: hidden;
}

h1, h2, h3, h4, .display-font {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--indigo);
  letter-spacing: 0.01em;
}

a { text-decoration: none; }

.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--pink-deep);
}

/* ---------- Nav ---------- */
.st-nav {
  background: var(--ivory);
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(43,35,32,0.08);
  position: sticky;
  top: 0;
  z-index: 999;
}
.st-nav .navbar-brand {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--indigo);
}
.st-nav .navbar-brand span { color: var(--pink); }
.st-nav .nav-link {
  font-family: var(--font-body);
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  color: var(--charcoal);
  margin: 0 0.6rem;
  position: relative;
  padding-bottom: 4px;
}
.st-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--pink);
  transition: width 0.25s ease;
}
.st-nav .nav-link:hover::after,
.st-nav .nav-link.active::after { width: 100%; }
.st-nav .nav-link.active { color: var(--pink-deep); }
.btn-saifi {
  background: var(--pink);
  color: #fff;
  border: none;
  padding: 0.6rem 1.5rem;
  border-radius: 2px;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  transition: background 0.25s ease, transform 0.2s ease;
}
.btn-saifi:hover { background: var(--pink-deep); color: #fff; transform: translateY(-2px); }
.btn-outline-saifi {
  background: transparent;
  color: var(--ivory);
  border: 1px solid var(--ivory);
  padding: 0.6rem 1.5rem;
  border-radius: 2px;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  transition: all 0.25s ease;
}
.btn-outline-saifi:hover { background: var(--ivory); color: var(--indigo); }

/* ---------- Arch signature ---------- */
.arch {
  border-radius: var(--radius-arch);
  overflow: hidden;
  position: relative;
}
.arch-frame {
  border-radius: var(--radius-arch);
  border: 1px solid rgba(212,162,76,0.5);
  padding: 10px;
}

/* ---------- Hero ---------- */
.hero {
  background: var(--indigo);
  color: var(--ivory);
  position: relative;
  padding: 5.5rem 0 0;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(212,162,76,0.12), transparent 40%),
    radial-gradient(circle at 85% 75%, rgba(196,80,109,0.18), transparent 45%);
  pointer-events: none;
}
.hero .eyebrow { color: var(--gold); }
.hero h1 {
  color: var(--ivory);
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  line-height: 1.08;
}
.hero p.lead-text {
  color: rgba(251,246,239,0.78);
  font-size: 1.1rem;
  max-width: 480px;
}
.hero-image-wrap {
  position: relative;
  padding: 0 2rem;
}
.hero-image-wrap img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-arch);
  border: 10px solid var(--ivory);
}
.hero-stat-card {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--ivory);
  color: var(--indigo);
  padding: 1.1rem 1.4rem;
  border-radius: 4px;
  box-shadow: 0 20px 40px rgba(16,27,51,0.35);
  min-width: 190px;
}
.hero-stat-card .num {
  font-family: var(--font-display);
  font-size: 2.1rem;
  color: var(--pink);
  line-height: 1;
}
.hero-stat-card .label {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal-soft);
}

/* ---------- Sections ---------- */
section { padding: 6rem 0; }
.section-ivory { background: var(--ivory); }
.section-indigo { background: var(--indigo); color: var(--ivory); }
.section-indigo h2, .section-indigo h3 { color: var(--ivory); }
.section-pink-tint { background: var(--pink-tint); }

.section-head { max-width: 620px; margin-bottom: 3rem; }
.section-head h2 { font-size: clamp(2rem, 3.4vw, 2.8rem); }
.divider-gold {
  width: 46px; height: 2px; background: var(--gold);
  margin: 0.9rem 0 1.2rem;
}

/* ---------- Package cards ---------- */
.pkg-card {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(43,35,32,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}
.pkg-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 44px rgba(43,35,32,0.14);
}
.pkg-card .pkg-img {
  height: 220px;
  overflow: hidden;
  /* border-radius: var(--radius-arch); */
  margin: 1rem 1rem 0;
}
.pkg-card .pkg-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.pkg-card:hover .pkg-img img { transform: scale(1.08); }
.pkg-card .pkg-body { padding: 1.4rem 1.3rem 1.6rem; }
.pkg-card .pkg-days {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pink-deep);
}
.pkg-card h4 { font-size: 1.35rem; margin: 0.3rem 0 0.6rem; }
.pkg-card ul { list-style: none; padding: 0; margin: 0 0 1rem; font-size: 0.86rem; color: var(--charcoal-soft); }
.pkg-card ul li { padding-left: 1.1rem; position: relative; margin-bottom: 0.35rem; }
.pkg-card ul li::before {
  content: "◆";
  position: absolute; left: 0; top: 1px;
  font-size: 0.55rem; color: var(--gold);
}
.pkg-price {
  display: flex; align-items: baseline; justify-content: space-between;
  border-top: 1px dashed rgba(43,35,32,0.15);
  padding-top: 0.9rem;
}
.pkg-price .amount { font-family: var(--font-display); font-size: 1.5rem; color: var(--indigo); }
.pkg-price .amount small { font-size: 0.75rem; color: var(--charcoal-soft); font-family: var(--font-body); }

/* ---------- Feature / why-us ---------- */
.feature-item { display: flex; gap: 1.1rem; margin-bottom: 2rem; }
.feature-icon {
  width: 52px; height: 52px; flex: none;
  border-radius: 50%;
  background: var(--pink-tint);
  display: flex; align-items: center; justify-content: center;
  color: var(--pink-deep);
}
.feature-item h5 { margin: 0 0 0.3rem; font-family: var(--font-body); font-weight: 600; font-size: 1.02rem; }
.feature-item p { color: var(--charcoal-soft); font-size: 0.92rem; margin: 0; }

/* ---------- Testimonials ---------- */
.testi-card {
  background: #fff;
  border-radius: 6px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(43,35,32,0.06);
  height: 100%;
}
.testi-card .stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 0.8rem; }
.testi-card p.quote { font-style: italic; color: var(--charcoal-soft); }
.testi-who { display: flex; align-items: center; gap: 0.8rem; margin-top: 1.2rem; }
.testi-who img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.testi-who .name { font-weight: 600; font-size: 0.9rem; }
.testi-who .place { font-size: 0.76rem; color: var(--charcoal-soft); }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--pink);
  color: #fff;
  padding: 4rem 0;
  text-align: center;
}
.cta-band h2 { color: #fff; }

/* ---------- Footer ---------- */
footer.st-footer {
  background: var(--indigo-deep);
  color: rgba(251,246,239,0.7);
  padding: 3.5rem 0 1.5rem;
}
footer.st-footer h5 { color: var(--ivory); font-family: var(--font-body); font-weight: 600; font-size: 0.95rem; letter-spacing: 0.04em; margin-bottom: 1rem; }
footer.st-footer a { color: rgba(251,246,239,0.65); }
footer.st-footer a:hover { color: var(--gold); }
footer.st-footer .brand { font-family: var(--font-display); font-size: 1.5rem; color: var(--ivory); }
footer.st-footer .brand span { color: var(--pink); }
.footer-bottom { border-top: 1px solid rgba(251,246,239,0.1); margin-top: 2.5rem; padding-top: 1.4rem; font-size: 0.8rem; }

/* ---------- Inner page hero (About/Packages/Contact) ---------- */
.page-hero {
  background: var(--indigo);
  color: var(--ivory);
  padding: 8rem 0 3.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(212,162,76,0.15), transparent 55%);
}
.page-hero h1 { color: var(--ivory); font-size: clamp(2.2rem, 4vw, 3.2rem); }
.page-hero .crumb { color: rgba(251,246,239,0.6); font-size: 0.85rem; }
.page-hero .crumb a { color: var(--gold); }

/* ---------- About page specifics ---------- */
.stat-block { text-align: center; }
.stat-block .num { font-family: var(--font-display); font-size: 2.6rem; color: var(--pink); }
.stat-block .label { font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--charcoal-soft); }

.team-card { text-align: center; }
.team-card .photo {
  width: 100%; height: 260px; overflow: hidden;
  border-radius: var(--radius-arch);
  margin-bottom: 1rem;
}
.team-card .photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card h5 { margin-bottom: 0.1rem; }
.team-card .role { font-size: 0.8rem; color: var(--pink-deep); letter-spacing: 0.05em; text-transform: uppercase; }

/* ---------- Contact page ---------- */
.contact-card {
  background: #fff;
  border-radius: 6px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(43,35,32,0.06);
}
.contact-info-item { display: flex; gap: 1rem; margin-bottom: 1.6rem; }
.contact-info-item .ic {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--pink-tint); color: var(--pink-deep);
  display: flex; align-items: center; justify-content: center; flex: none;
}
.contact-info-item h6 { margin: 0 0 0.2rem; font-weight: 600; }
.contact-info-item p, .contact-info-item a { margin: 0; color: var(--charcoal-soft); font-size: 0.92rem; }

.form-control-saifi {
  border: 1px solid rgba(43,35,32,0.15);
  border-radius: 3px;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  background: var(--ivory);
}
.form-control-saifi:focus {
  outline: none;
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(196,80,109,0.12);
}
label.form-label-saifi {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--charcoal-soft);
  margin-bottom: 0.4rem;
  display: block;
}
.map-frame {
  border-radius: 6px;
  overflow: hidden;
  height: 100%;
  min-height: 320px;
}

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ---------- Accessibility ---------- */
a:focus-visible, button:focus-visible, .nav-link:focus-visible {
  outline: 2px solid var(--pink);
  outline-offset: 3px;
}
@media (prefers-reduced-motion: reduce) {
  .reveal, .pkg-card, .pkg-card .pkg-img img, .btn-saifi { transition: none !important; }
}

/* ---------- Tour listing filter bar ---------- */
.filter-bar {
  display: flex; flex-wrap: wrap; gap: 0.6rem;
  margin-bottom: 2.5rem;
}
.filter-chip {
  border: 1px solid rgba(43,35,32,0.15);
  background: #fff;
  padding: 0.5rem 1.1rem;
  border-radius: 30px;
  font-size: 0.82rem;
  color: var(--charcoal-soft);
  cursor: pointer;
  transition: all 0.2s ease;
}
.filter-chip:hover { border-color: var(--pink); color: var(--pink-deep); }
.filter-chip.active { background: var(--pink); border-color: var(--pink); color: #fff; }

/* ---------- Tour detail hero ---------- */
.detail-hero {
  position: relative;
  height: 52vh; min-height: 700px;
  background-size: cover; background-position: center;
  display: flex; align-items: flex-end;
  margin-top: 0;
}
.detail-hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(16,27,51,0.88), rgba(16,27,51,0.15) 60%);
}
.detail-hero .detail-hero-inner {
  position: relative; z-index: 2;
  color: var(--ivory);
  padding-bottom: 2.5rem;
  width: 100%;
}
.detail-hero .crumb { color: rgba(251,246,239,0.7); font-size: 0.85rem; }
.detail-hero .crumb a { color: var(--gold); }
.detail-hero h1 { color: var(--ivory); font-size: clamp(2rem, 4vw, 3rem); margin: 0.3rem 0 0.4rem; }
.detail-hero .tagline { color: rgba(251,246,239,0.75); font-size: 1rem; }

/* ---------- Detail layout ---------- */
.detail-gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.6rem; margin: 2rem 0; }
.detail-gallery img { width: 100%; height: 140px; object-fit: cover; border-radius: 6px; }

.quick-facts { list-style: none; padding: 0; margin: 0; }
.quick-facts li {
  display: flex; justify-content: space-between;
  padding: 0.7rem 0;
  border-bottom: 1px dashed rgba(43,35,32,0.12);
  font-size: 0.88rem;
}
.quick-facts li span:first-child { color: var(--charcoal-soft); }
.quick-facts li span:last-child { font-weight: 600; color: var(--indigo); text-align: right; }

.itinerary-day {
  display: flex; gap: 1.2rem;
  padding-bottom: 1.8rem;
  position: relative;
}
.itinerary-day:not(:last-child)::before {
  content: "";
  position: absolute; left: 21px; top: 46px; bottom: 0;
  width: 2px; background: rgba(196,80,109,0.2);
}
.itinerary-day .day-num {
  flex: none; width: 44px; height: 44px; border-radius: 50%;
  background: var(--pink); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 700;
  z-index: 1;
}
.itinerary-day h5 { margin-bottom: 0.4rem; font-size: 1.08rem; }
.itinerary-day p { color: var(--charcoal-soft); font-size: 0.92rem; margin: 0; }

.incl-excl-tabs .nav-link {
  color: var(--charcoal-soft);
  border: none;
  border-bottom: 2px solid transparent;
  font-size: 0.9rem;
  padding: 0.6rem 0;
  margin-right: 1.8rem;
  background: none !important;
}
.incl-excl-tabs .nav-link.active {
  color: var(--pink-deep) !important;
  border-bottom-color: var(--pink);
}
.incl-excl-list { list-style: none; padding: 0; margin: 1.2rem 0 0; }
.incl-excl-list li { padding-left: 1.6rem; position: relative; margin-bottom: 0.7rem; font-size: 0.92rem; color: var(--charcoal-soft); }
.incl-excl-list.yes li::before { content: "✓"; position: absolute; left: 0; color: #3b8a5e; font-weight: 700; }
.incl-excl-list.no li::before { content: "✕"; position: absolute; left: 0; color: var(--pink-deep); font-weight: 700; }

.book-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 20px 44px rgba(43,35,32,0.12);
  padding: 1.8rem;
  position: sticky;
  top: 100px;
}
.book-card .price-line { display: flex; align-items: baseline; gap: 0.4rem; margin-bottom: 0.2rem; }
.book-card .price-line .amount { font-family: var(--font-display); font-size: 2rem; color: var(--pink); }
.book-card .price-line .per { font-size: 0.82rem; color: var(--charcoal-soft); }
.book-card .duration-badge {
  display: inline-block; font-size: 0.75rem; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--pink-deep); background: var(--pink-tint); padding: 0.3rem 0.7rem; border-radius: 20px;
  margin-bottom: 1rem;
}

.related-tours-strip .pkg-card { height: 100%; }

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
  .hero-image-wrap { margin-top: 3rem; padding: 0; }
  .hero-stat-card { left: 1rem; }
  section { padding: 4rem 0; }
  .book-card { position: static; margin-top: 2rem; }
}
@media (max-width: 575px) {
  .detail-gallery { grid-template-columns: repeat(2, 1fr); }
}
.navbar-brand{
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.brand-logo{
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.brand-text{
    font-size: 30px;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    color: #222;
    line-height: 1;
}

.brand-text span{
    color: #d4a017; /* Gold */
}

/* Tablet */
@media (max-width:768px){
    .brand-logo{
        width:45px;
        height:45px;
    }

    .brand-text{
        font-size:24px;
    }
}

/* Mobile */
@media (max-width:576px){
    .brand-logo{
        width:38px;
        height:38px;
    }

    .brand-text{
        font-size:20px;
    }
}