/* ==========================================================================
   Shivam Tent House — Custom Stylesheet
   Built on top of Bootstrap 5.3
   ========================================================================== */

:root {
  --stpl-primary: #7A1229;        /* deep wine maroon */
  --stpl-primary-dark: #56091b;
  --stpl-primary-light: #9c1f37;
  --stpl-gold: #C79A3B;           /* festive gold accent */
  --stpl-gold-light: #e7c877;
  --stpl-cream: #FBF6EC;          /* warm background */
  --stpl-dark: #1E1710;           /* near-black warm dark */
  --stpl-gray: #6b6258;
  --stpl-light-gray: #f2ede3;
  --stpl-white: #ffffff;

  --stpl-font-heading: 'Lora', Georgia, serif;
  --stpl-font-body: 'Poppins', 'Inter', -apple-system, sans-serif;

  --stpl-radius: 14px;
  --stpl-radius-sm: 8px;
  --stpl-shadow: 0 10px 30px rgba(30, 23, 16, 0.08);
  --stpl-shadow-lg: 0 20px 50px rgba(30, 23, 16, 0.14);
  --stpl-transition: all 0.3s cubic-bezier(.4,0,.2,1);
}

/* ---------- Base ---------- */
body {
  font-family: var(--stpl-font-body);
  color: var(--stpl-dark);
  background: var(--stpl-white);
  overflow-x: hidden;
  font-size: 1rem;
  line-height: 1.7;
}

h1, h2, h3, h4, h5, h6, .font-heading {
  font-family: var(--stpl-font-heading);
  font-weight: 700;
  color: var(--stpl-dark);
  line-height: 1.2;
}

.text-primary-custom { color: var(--stpl-primary) !important; }
.text-gold { color: var(--stpl-gold) !important; }
.bg-cream { background-color: var(--stpl-cream) !important; }
.bg-dark-custom { background-color: var(--stpl-dark) !important; }
.bg-primary-custom { background-color: var(--stpl-primary) !important; }

a { text-decoration: none; }

.section-pad { padding: 96px 0; }
@media (max-width: 767.98px) {
  .section-pad { padding: 64px 0; }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--stpl-font-body);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--stpl-primary);
  background: rgba(122, 18, 41, 0.08);
  padding: 6px 16px 6px 10px;
  border-radius: 30px;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--stpl-gold);
  display: inline-block;
}

.section-title {
  font-size: clamp(1.9rem, 3vw, 2.75rem);
  margin-bottom: 18px;
}

.section-sub {
  color: var(--stpl-gray);
  font-size: 1.05rem;
  max-width: 640px;
}

.divider-gold {
  width: 70px;
  height: 4px;
  background: linear-gradient(90deg, var(--stpl-gold), var(--stpl-primary));
  border-radius: 4px;
  margin: 18px 0;
}
.mx-auto.divider-gold { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  font-family: var(--stpl-font-body);
  font-weight: 600;
  border-radius: 50px;
  padding: 12px 30px;
  transition: var(--stpl-transition);
  letter-spacing: 0.3px;
}

.btn-stpl-primary {
  background: var(--stpl-primary);
  border: 2px solid var(--stpl-primary);
  color: #fff;
}
.btn-stpl-primary:hover {
  background: var(--stpl-primary-dark);
  border-color: var(--stpl-primary-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--stpl-shadow);
}

.btn-stpl-outline {
  background: transparent;
  border: 2px solid var(--stpl-white);
  color: #fff;
}
.btn-stpl-outline:hover {
  background: var(--stpl-white);
  color: var(--stpl-primary);
  transform: translateY(-2px);
}

.btn-stpl-gold {
  background: var(--stpl-gold);
  border: 2px solid var(--stpl-gold);
  color: var(--stpl-dark);
}
.btn-stpl-gold:hover {
  background: transparent;
  color: var(--stpl-gold);
  transform: translateY(-2px);
}

.btn-sm-pill { padding: 8px 20px; font-size: 0.9rem; }

/* ---------- Navbar ---------- */
.navbar-stpl {
  padding: 18px 0;
  transition: var(--stpl-transition);
  background: rgba(255,255,255,0.98);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}
.navbar-stpl.scrolled { padding: 10px 0; }

.navbar-brand-stpl {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--stpl-font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--stpl-dark) !important;
}
.navbar-brand-stpl .brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--stpl-primary), var(--stpl-primary-light));
  color: var(--stpl-gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.navbar-brand-stpl .brand-text small {
  display: block;
  font-family: var(--stpl-font-body);
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--stpl-gold);
  font-weight: 600;
}

.navbar-stpl .nav-link {
  font-weight: 600;
  color: var(--stpl-dark);
  padding: 10px 16px !important;
  position: relative;
}
.navbar-stpl .nav-link.active,
.navbar-stpl .nav-link:hover { color: var(--stpl-primary); }
.navbar-stpl .nav-link.active::after {
  content: "";
  position: absolute;
  left: 16px; right: 16px; bottom: 4px;
  height: 3px;
  border-radius: 3px;
  background: var(--stpl-gold);
}

.topbar {
  background: var(--stpl-dark);
  color: #d9cfc1;
  font-size: 0.85rem;
  padding: 8px 0;
}
.topbar a { color: #d9cfc1; }
.topbar a:hover { color: var(--stpl-gold-light); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(30,23,16,0.86) 10%, rgba(122,18,41,0.72) 100%);
  z-index: 1;
}
.hero .hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero .container { position: relative; z-index: 2; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(6px);
  padding: 8px 18px;
  border-radius: 40px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: #fff;
  margin-bottom: 22px;
}
.hero h1 em {
  font-style: italic;
  color: var(--stpl-gold-light);
}
.hero p.lead { color: #ece4d6; max-width: 560px; }

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 56px;
  flex-wrap: wrap;
}
.hero-stats .stat-num {
  font-family: var(--stpl-font-heading);
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--stpl-gold-light);
}
.hero-stats .stat-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #cfc4b4;
}

.page-hero {
  position: relative;
  padding: 190px 0 100px;
  color: #fff;
  text-align: center;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(30,23,16,0.88), rgba(122,18,41,0.78));
  z-index: 1;
}
.page-hero .hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; z-index: 0; }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; font-size: clamp(2.2rem, 4vw, 3.2rem); }

.breadcrumb-stpl {
  display: inline-flex;
  gap: 8px;
  font-size: 0.9rem;
  color: #e9dfd0;
  margin-top: 14px;
}
.breadcrumb-stpl a { color: var(--stpl-gold-light); }

/* ---------- Cards ---------- */
.card-stpl {
  background: #fff;
  border-radius: var(--stpl-radius);
  border: 1px solid var(--stpl-light-gray);
  transition: var(--stpl-transition);
  overflow: hidden;
  height: 100%;
}
.card-stpl:hover {
  transform: translateY(-8px);
  box-shadow: var(--stpl-shadow-lg);
  border-color: transparent;
}

.service-card {
  padding: 42px 30px;
  text-align: left;
}
.service-icon {
  width: 66px;
  height: 66px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--stpl-cream), var(--stpl-light-gray));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--stpl-primary);
  margin-bottom: 24px;
  transition: var(--stpl-transition);
}
.service-card:hover .service-icon {
  background: var(--stpl-primary);
  color: var(--stpl-gold-light);
  transform: rotate(-8deg) scale(1.05);
}
.service-card h3 { font-size: 1.25rem; margin-bottom: 12px; }
.service-card p { color: var(--stpl-gray); font-size: 0.95rem; margin-bottom: 0; }
.service-card .learn-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--stpl-primary);
}

.icon-box-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 26px;
}
.icon-box-list .icon-wrap {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--stpl-cream);
  color: var(--stpl-primary);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
}

/* ---------- Gallery ---------- */
.gallery-item {
  position: relative;
  border-radius: var(--stpl-radius);
  overflow: hidden;
  height: 100%;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item .gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(30,23,16,0.85) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: var(--stpl-transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { color: #fff; font-weight: 600; }

/* ---------- Stats strip ---------- */
.stats-strip {
  background: var(--stpl-dark);
  color: #fff;
  position: relative;
}
.stats-strip .stat-item { text-align: center; padding: 46px 10px; }
.stats-strip .stat-num {
  font-family: var(--stpl-font-heading);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--stpl-gold-light);
}
.stats-strip .stat-label { color: #cfc4b4; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; }

/* ---------- Process steps ---------- */
.process-step { text-align: center; position: relative; padding: 0 10px; }
.process-step .step-num {
  width: 70px; height: 70px;
  border-radius: 50%;
  border: 2px dashed var(--stpl-gold);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px;
  font-family: var(--stpl-font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--stpl-primary);
}

/* ---------- Testimonials ---------- */
.testimonial-card {
  background: var(--stpl-cream);
  border-radius: var(--stpl-radius);
  padding: 36px;
  height: 100%;
}
.testimonial-card .stars { color: var(--stpl-gold); letter-spacing: 2px; margin-bottom: 16px; }
.testimonial-card .quote { font-size: 1.02rem; color: var(--stpl-dark); margin-bottom: 24px; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-author img {
  width: 52px; height: 52px; border-radius: 50%; object-fit: cover;
}
.testimonial-author .name { font-weight: 700; }
.testimonial-author .role { font-size: 0.82rem; color: var(--stpl-gray); }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: linear-gradient(120deg, var(--stpl-primary-dark), var(--stpl-primary));
  color: #fff;
  border-radius: var(--stpl-radius);
  padding: 64px;
  position: relative;
  overflow: hidden;
}
.cta-banner::after {
  content: "";
  position: absolute;
  right: -60px; top: -60px;
  width: 260px; height: 260px;
  border-radius: 50%;
  border: 40px solid rgba(255,255,255,0.06);
}
@media (max-width: 767.98px) { .cta-banner { padding: 40px 26px; text-align: center; } }

/* ---------- Footer ---------- */
.footer-stpl {
  background: var(--stpl-dark);
  color: #cfc4b4;
  padding-top: 80px;
}
.footer-stpl h5 { color: #fff; margin-bottom: 22px; font-size: 1.1rem; }
.footer-stpl a { color: #cfc4b4; }
.footer-stpl a:hover { color: var(--stpl-gold-light); }
.footer-stpl .footer-links li { margin-bottom: 12px; }
.footer-stpl .social-icons { display: flex; gap: 10px; }
.footer-stpl .social-icons a {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  transition: var(--stpl-transition);
}
.footer-stpl .social-icons a:hover { background: var(--stpl-gold); border-color: var(--stpl-gold); color: var(--stpl-dark); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 60px;
  padding: 22px 0;
  font-size: 0.85rem;
}

/* ---------- Forms ---------- */
.form-stpl .form-control,
.form-stpl .form-select {
  border-radius: var(--stpl-radius-sm);
  border: 1px solid #e4dccb;
  padding: 13px 16px;
  font-size: 0.95rem;
}
.form-stpl .form-control:focus,
.form-stpl .form-select:focus {
  border-color: var(--stpl-primary);
  box-shadow: 0 0 0 0.2rem rgba(122,18,41,0.12);
}
.form-stpl label { font-weight: 600; font-size: 0.88rem; margin-bottom: 6px; }

.form-card {
  background: #fff;
  border-radius: var(--stpl-radius);
  box-shadow: var(--stpl-shadow-lg);
  padding: 44px;
}

/* ---------- Pricing ---------- */
.pricing-card {
  background: #fff;
  border-radius: var(--stpl-radius);
  border: 1px solid var(--stpl-light-gray);
  padding: 44px 34px;
  text-align: center;
  transition: var(--stpl-transition);
  position: relative;
}
.pricing-card.featured {
  background: var(--stpl-dark);
  color: #fff;
  transform: scale(1.05);
  box-shadow: var(--stpl-shadow-lg);
  z-index: 2;
}
.pricing-card.featured .price,
.pricing-card.featured h3 { color: #fff; }
.pricing-card.featured ul li { color: #d9cfc1; }
.pricing-card .ribbon {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--stpl-gold);
  color: var(--stpl-dark);
  padding: 6px 18px;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.pricing-card .price {
  font-family: var(--stpl-font-heading);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--stpl-primary);
  margin: 18px 0;
}
.pricing-card .price span { font-size: 0.9rem; font-weight: 400; color: var(--stpl-gray); }
.pricing-card ul { list-style: none; padding: 0; margin: 26px 0; text-align: left; }
.pricing-card ul li { margin-bottom: 14px; display: flex; gap: 10px; align-items: flex-start; color: var(--stpl-gray); }
.pricing-card ul li i { color: var(--stpl-gold); margin-top: 4px; }

/* ---------- Timeline (About) ---------- */
.timeline { position: relative; padding-left: 40px; }
.timeline::before {
  content: "";
  position: absolute; left: 10px; top: 0; bottom: 0;
  width: 2px;
  background: var(--stpl-light-gray);
}
.timeline-item { position: relative; padding-bottom: 42px; }
.timeline-item::before {
  content: "";
  position: absolute; left: -34px; top: 4px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--stpl-white);
  border: 4px solid var(--stpl-primary);
}
.timeline-item .year { color: var(--stpl-primary); font-weight: 700; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; }

/* ---------- Team ---------- */
.team-card { text-align: center; }
.team-card .team-img {
  border-radius: var(--stpl-radius);
  overflow: hidden;
  position: relative;
  margin-bottom: 20px;
}
.team-card .team-img img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.team-card .social-icons { justify-content: center; margin-top: 14px; }
.team-card .social-icons a { width: 34px; height: 34px; border-color: var(--stpl-light-gray); color: var(--stpl-primary); }

/* ---------- Blog ---------- */
.blog-card { display: flex; flex-direction: column; }
.blog-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.blog-card .blog-body { padding: 28px; }
.blog-meta { display: flex; gap: 18px; font-size: 0.82rem; color: var(--stpl-gray); margin-bottom: 12px; }
.blog-meta span { display: flex; align-items: center; gap: 6px; }
.blog-card h3 { font-size: 1.2rem; margin-bottom: 12px; }
.blog-category {
  display: inline-block;
  background: var(--stpl-cream);
  color: var(--stpl-primary);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 14px;
  border-radius: 30px;
  margin-bottom: 14px;
}

.sidebar-widget { background: var(--stpl-cream); border-radius: var(--stpl-radius); padding: 30px; margin-bottom: 28px; }
.sidebar-widget h5 { margin-bottom: 20px; }
.sidebar-widget .cat-list li { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid #e9e1d1; }
.sidebar-widget .cat-list li:last-child { border-bottom: none; }
.sidebar-widget .recent-post { display: flex; gap: 14px; margin-bottom: 18px; }
.sidebar-widget .recent-post img { width: 68px; height: 68px; border-radius: 10px; object-fit: cover; flex-shrink: 0; }
.sidebar-widget .recent-post .title { font-size: 0.88rem; font-weight: 600; line-height: 1.4; }
.sidebar-widget .recent-post .date { font-size: 0.75rem; color: var(--stpl-gray); }

/* ---------- FAQ Accordion ---------- */
.accordion-stpl .accordion-item {
  border: none;
  border-radius: var(--stpl-radius-sm) !important;
  margin-bottom: 14px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(30,23,16,0.05);
}
.accordion-stpl .accordion-button {
  font-weight: 600;
  font-family: var(--stpl-font-body);
  padding: 20px 24px;
}
.accordion-stpl .accordion-button:not(.collapsed) {
  background: var(--stpl-primary);
  color: #fff;
}
.accordion-stpl .accordion-button:focus { box-shadow: none; }
.accordion-stpl .accordion-button::after { filter: none; }
.accordion-stpl .accordion-button:not(.collapsed)::after { filter: invert(1) brightness(2); }

/* ---------- Contact page ---------- */
.contact-info-card {
  background: #fff;
  border-radius: var(--stpl-radius);
  border: 1px solid var(--stpl-light-gray);
  padding: 34px 26px;
  text-align: center;
  height: 100%;
  transition: var(--stpl-transition);
}
.contact-info-card:hover { border-color: var(--stpl-primary); box-shadow: var(--stpl-shadow); }
.contact-info-card .icon-wrap {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--stpl-cream);
  color: var(--stpl-primary);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.4rem;
}

.map-wrap { border-radius: var(--stpl-radius); overflow: hidden; box-shadow: var(--stpl-shadow); }
.map-wrap iframe { width: 100%; height: 420px; border: 0; display: block; }

/* ---------- Floating buttons ---------- */
.float-btns {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}
.float-btn {
  width: 54px; height: 54px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1.4rem;
  box-shadow: var(--stpl-shadow-lg);
  transition: var(--stpl-transition);
}
.float-btn.whatsapp { background: #25D366; }
.float-btn.call { background: var(--stpl-primary); }
.float-btn:hover { transform: scale(1.1); color: #fff; }
.float-btn.back-to-top {
  background: var(--stpl-dark);
  width: 44px; height: 44px;
  font-size: 1.1rem;
  opacity: 0;
  pointer-events: none;
}
.float-btn.back-to-top.show { opacity: 1; pointer-events: auto; }

/* ---------- Utilities ---------- */
.rounded-stpl { border-radius: var(--stpl-radius) !important; }
.shadow-stpl { box-shadow: var(--stpl-shadow) !important; }
.badge-gold {
  background: var(--stpl-gold);
  color: var(--stpl-dark);
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 0.8rem;
}
/* ---------- Inline SVG icons (self-hosted sprite replacing icon font) ---------- */
.icon-inline {
  width: 1em;
  height: 1em;
  fill: none;
  vertical-align: -0.15em;
  flex-shrink: 0;
}

/* [data-aos] markers are intentionally inert — see js/script.js for why
   the scroll-reveal effect was removed. Content stays visible always. */

.about-img-stack { position: relative; }
.about-img-stack .img-main { border-radius: var(--stpl-radius); width: 100%; aspect-ratio: 4/5; object-fit: cover; box-shadow: var(--stpl-shadow-lg); }
.about-img-stack .img-badge {
  position: absolute;
  bottom: -30px; left: -30px;
  background: var(--stpl-primary);
  color: #fff;
  border-radius: var(--stpl-radius);
  padding: 24px 30px;
  box-shadow: var(--stpl-shadow-lg);
}
@media (max-width: 991.98px) {
  .about-img-stack .img-badge { left: 10px; bottom: -20px; padding: 16px 20px; }
}
.about-img-stack .img-badge .num { font-family: var(--stpl-font-heading); font-size: 2rem; font-weight: 700; color: var(--stpl-gold-light); }
.about-img-stack .img-badge .lbl { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 1px; }

.client-logos { display: flex; align-items: center; gap: 40px; flex-wrap: wrap; opacity: 0.7; }
.client-logos span { font-family: var(--stpl-font-heading); font-weight: 700; font-size: 1.3rem; color: var(--stpl-gray); }
