/* ===========================================================
   Al-Shamshi — design tokens & modern layout
   Palette: maroon #6E1423, maroon-deep #4A0E18, gold #C9A227,
            cream #FBF7F2, rose tint #F1E4E0, ink #1C0A0D
   Type: Cinzel / Tiro Devanagari Hindi (headings),
         Poppins / Mukta (body & UI elements)
   =========================================================== */

:root {
  --maroon: #6E1423;
  /* --maroon-deep: #4A0E18; */
  --maroon-deep: #8d2b3c;
  --maroon-soft: #764C57;
  --gold: #C9A227;
  --gold-soft: #E4C766;
  --cream: #FBF7F2;
  --rose: #F1E4E0;
  --ink: #1C0A0D;
  --ink-soft: #4D3338;
  --white: #ffffff;

  --font-display: 'Outfit', 'Poppins', 'Mukta', sans-serif;
  --font-body: 'Poppins', 'Tiro Devanagari Hindi', 'Mukta', sans-serif;
  --font-label: 'Poppins', 'Mukta', sans-serif;

  --radius-arch: 120px 120px 14px 14px;
  --radius-arch-sm: 70px 70px 12px 12px;
  --shadow-soft: 0 16px 38px -12px rgba(74, 14, 24, 0.18);
  --shadow-hover: 0 22px 48px -12px rgba(74, 14, 24, 0.28);
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  margin: 0;
  overflow-x: hidden;
  max-width: 100%;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  font-size: 16.5px;
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  color: var(--maroon-deep);
  margin: 0 0 .5em;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0;
}

p {
  margin: 0 0 1em;
  color: var(--ink-soft);
  font-weight: 400;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

/* ---------- Eyebrow label ---------- */
.eyebrow {
  font-family: var(--font-label);
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: .82rem;
  font-weight: 700;
  color: var(--maroon-soft);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  display: inline-block;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13.5px 30px;
  border-radius: 999px;
  font-family: var(--font-label);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .02em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--maroon);
  color: var(--white);
  box-shadow: 0 10px 25px -8px rgba(110, 20, 35, 0.45);
}

.btn-primary:hover {
  background: var(--maroon-deep);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -8px rgba(74, 14, 24, 0.55);
}

.btn-gold {
  background: var(--maroon);
  color: var(--white);
  font-weight: 700;
  box-shadow: 0 10px 25px -8px rgba(110, 20, 35, 0.45);
}

.btn-gold:hover {
  background: var(--maroon-deep);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -8px rgba(74, 14, 24, 0.55);
}

.btn-outline {
  background: transparent;
  border-color: var(--maroon);
  color: var(--maroon);
  font-weight: 700;
}

.btn-outline:hover {
  background: var(--maroon);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-light {
  background: transparent;
  border-color: rgba(255, 255, 255, .6);
  color: var(--white);
  font-weight: 700;
}

.btn-outline-light:hover {
  background: var(--white);
  color: var(--maroon-deep);
}

.btn-block {
  width: 100%;
}

/* ---------- Topbar ---------- */
.topbar {
  background: var(--maroon-deep);
  color: var(--rose);
  font-size: .88rem;
  font-weight: 500;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 24px;
}

.topbar-inner>div {
  display: flex;
  align-items: center;
  gap: 8px;
}

.topbar a {
  color: var(--gold-soft);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.topbar a svg,
.btn svg {
  display: block;
  flex-shrink: 0;
}

.topbar a:hover {
  color: var(--rose);
}

.topbar-sep {
  margin: 0 10px;
  opacity: .5;
}

.lang-switch {
  border: 1px solid rgba(255, 255, 255, .35);
  padding: 4px 14px;
  border-radius: 999px;
  font-family: var(--font-label);
  font-weight: 700;
  letter-spacing: .05em;
}

.lang-switch:hover {
  background: var(--gold);
  color: var(--maroon-deep);
  border-color: var(--gold);
}

/* ---------- Header ---------- */
.site-header {
  background: rgba(251, 247, 242, 0.96);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 90;
  box-shadow: 0 4px 20px rgba(110, 20, 35, .07);
  border-bottom: 1px solid rgba(201, 162, 39, .18);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 14px 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-right: auto;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.6rem;
  color: var(--maroon-deep);
  letter-spacing: 0;
}

.brand-tagline {
  font-family: var(--font-label);
  font-size: .7rem;
  letter-spacing: .16em;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gold);
}

.main-nav>ul {
  display: flex;
  gap: 6px;
  align-items: center;
}

.main-nav>ul>li>a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 16px;
  font-family: var(--font-label);
  font-weight: 600;
  font-size: .98rem;
  color: var(--ink);
  border-radius: 8px;
  transition: all .18s ease;
}

.main-nav>ul>li>a:hover,
.main-nav>ul>li>a.active {
  color: var(--maroon-deep);
  background: rgba(110, 20, 35, .07);
  font-weight: 700;
}

.caret {
  font-size: .7em;
}

.has-dropdown {
  position: relative;
}

.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  min-width: 260px;
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(201, 162, 39, .22);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all .18s ease;
}

.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown li a {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: .94rem;
  font-weight: 500;
}

.dropdown li a:hover {
  background: var(--rose);
  color: var(--maroon-deep);
  font-weight: 600;
}

.header-cta {
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--maroon-deep);
  display: block;
}

/* ---------- Hero & Hero Slider ---------- */
.hero,
.hero-slider-section {
  position: relative;
  background: linear-gradient(180deg, var(--rose) 0%, var(--cream) 70%);
  overflow: hidden;
  padding: 60px 0 90px;
}

.hero::before,
.hero-slider-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(201, 162, 39, .35) 1.5px, transparent 1.5px);
  background-size: 26px 26px;
  opacity: .5;
  pointer-events: none;
}

.hero-slider {
  position: relative;
  width: 100%;
}

.hero-slides-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.hero-slides-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  width: 100%;
}

.hero-slide {
  min-width: 100%;
  flex: 0 0 100%;
  opacity: 0.3;
  transform: scale(0.98);
  transition: opacity 0.6s ease, transform 0.6s ease;
  pointer-events: none;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

/* Animations inside active slide */
.hero-slide.active .hero-copy h1,
.hero-slide.active .hero-copy .hero-lede,
.hero-slide.active .hero-copy .hero-actions {
  animation: heroFadeInUp 0.6s ease forwards;
}

.hero-slide.active .hero-visual {
  animation: heroFadeInScale 0.7s ease forwards;
}

@keyframes heroFadeInUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroFadeInScale {
  from {
    opacity: 0;
    transform: scale(0.92);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
}

.hero h1,
.hero-slide h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 600;
  line-height: 1.22;
  margin-bottom: .4em;
  color: var(--maroon-deep);
}

.hero h1 em,
.hero-slide h1 em {
  font-style: italic;
  color: var(--maroon);
  font-weight: 600;
}

.hero-lede {
  font-size: 1.15rem;
  color: #42292D;
  font-weight: 400;
  line-height: 1.7;
  max-width: 52ch;
  margin-bottom: 1.8em;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}

.hero-trustline {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  font-family: var(--font-label);
  font-weight: 600;
  font-size: .9rem;
  color: var(--maroon-soft);
}

.hero-trustline span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-trustline .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.hero-visual {
  position: relative;
}

.arch-frame {
  border-radius: var(--radius-arch);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: linear-gradient(160deg, var(--maroon) 0%, var(--maroon-deep) 55%, #2f0810 100%);
  position: relative;
  box-shadow: 0 20px 45px -15px rgba(74, 14, 24, 0.4);
  border: 8px solid var(--white);
}

.arch-frame::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1.5px solid rgba(228, 199, 102, .65);
  border-radius: 100px 100px 6px 6px;
  pointer-events: none;
}

.arch-frame img,
.arch-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.arch-frame .arch-motif {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-badge {
  position: absolute;
  left: -18px;
  bottom: 34px;
  background: var(--white);
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(201, 162, 39, .25);
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 230px;
}

.hero-badge strong {
  display: block;
  font-family: var(--font-display);
  color: var(--maroon);
  font-size: 1.1rem;
  font-weight: 600;
}

.hero-badge span {
  font-size: .84rem;
  color: var(--ink-soft);
  font-weight: 500;
}

/* Slider Controls */
.hero-nav-btn {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  color: var(--maroon-deep);
  border: 1.5px solid rgba(201, 162, 39, 0.3);
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.hero-nav-btn:hover {
  background: var(--maroon);
  color: var(--white);
  border-color: var(--maroon);
  transform: translateY(-50%) scale(1.08);
}

.hero-nav-prev {
  left: 15px;
}

.hero-nav-next {
  right: 15px;
}

.hero-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 25px;
  z-index: 10;
  position: relative;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(110, 20, 35, 0.22);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: width 0.3s ease, background-color 0.3s ease, border-radius 0.3s ease;
}

.hero-dot:hover {
  background: var(--maroon-soft);
}

.hero-dot.active {
  width: 32px;
  border-radius: 12px;
  background: var(--maroon);
}

/* ---------- Trust strip ---------- */
.trust-strip {
  background: linear-gradient(135deg, var(--maroon-deep) 0%, #2f0810 100%);
  color: var(--white);
  padding: 32px 0;
  border-top: 1px solid rgba(201, 162, 39, 0.3);
  border-bottom: 1px solid rgba(201, 162, 39, 0.3);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.trust-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.trust-icon {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(201, 162, 39, .22);
  border: 1px solid rgba(201, 162, 39, .4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-soft);
  font-size: 1.1rem;
}

.trust-item h4 {
  color: var(--gold-soft);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: .2em;
}

.trust-item p {
  color: rgba(255, 255, 255, .82);
  font-size: .88rem;
  font-weight: 400;
  margin: 0;
}

/* ---------- Section basics ---------- */
section {
  padding: 90px 0;
}

.section-head {
  max-width: 660px;
  margin: 0 auto 50px;
  text-align: center;
}

.section-head.left {
  margin: 0 0 50px;
  text-align: left;
}

.section-head h2 {
  font-size: clamp(1.85rem, 3.1vw, 2.5rem);
  font-weight: 600;
}

.section-head p {
  color: var(--ink-soft);
  font-size: 1.08rem;
  font-weight: 400;
}

.divider-arabesque {
  width: 120px;
  height: 14px;
  margin: 18px auto 0;
  opacity: .7;
}

.section-head.left .divider-arabesque {
  margin-left: 0;
}

.bg-rose {
  background: var(--rose);
}

.bg-maroon {
  background: var(--maroon);
  color: var(--white);
}

.bg-maroon h2,
.bg-maroon h3,
.bg-maroon h4 {
  color: var(--white);
}

/* ---------- About preview ---------- */
.about-preview {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 60px;
  align-items: center;
}

.about-preview .arch-frame {
  aspect-ratio: 3/4;
  border-width: 6px;
}

.about-preview-text p {
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 26px 0 32px;
}

.pillar {
  background: var(--white);
  border: 1px solid rgba(201, 162, 39, .25);
  border-radius: 14px;
  padding: 18px 20px;
  box-shadow: 0 6px 20px rgba(74, 14, 24, .06);
}

.pillar strong {
  display: block;
  color: var(--maroon-deep);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.08rem;
  margin-bottom: 3px;
}

.pillar span {
  font-size: .88rem;
  color: var(--ink-soft);
  font-weight: 400;
}

/* ---------- Services grid ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-arch-sm);
  padding: 36px 28px 30px;
  text-align: center;
  border: 1px solid rgba(201, 162, 39, .22);
  box-shadow: 0 12px 32px -10px rgba(74, 14, 24, .09);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 42px -12px rgba(74, 14, 24, .18);
  border-color: var(--gold);
}

.service-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--rose);
  border: 1px solid rgba(201, 162, 39, .3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--maroon-deep);
  font-size: 1.4rem;
}

.service-img-wrap {
  width: 100%;
  height: 200px;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 20px;
}

.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}

.service-card:hover .service-img {
  transform: scale(1.05);
}

.service-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--maroon-deep);
  margin-bottom: .4em;
}

.service-card h3 a {
  color: inherit;
  text-decoration: none;
  transition: color .2s ease;
}

.service-card h3 a:hover {
  color: var(--gold);
}

.service-card p {
  color: var(--ink-soft);
  font-size: .98rem;
  font-weight: 400;
  line-height: 1.65;
  flex-grow: 1;
}

.service-card .btn {
  margin-top: 16px;
  padding: 10px 24px;
  font-size: .88rem;
}

.services-cta {
  text-align: center;
  margin-top: 46px;
}

/* ---------- Why choose us / features ---------- */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.feature-item {
  display: flex;
  gap: 18px;
  text-align: left;
}

.feature-num {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--gold);
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 4px 14px rgba(201, 162, 39, .2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-item h4 {
  margin-bottom: .25em;
  font-size: 1.1rem;
  font-weight: 600;
}

.feature-item p {
  color: var(--ink-soft);
  font-size: .95rem;
  font-weight: 400;
  margin: 0;
}

.why-visual .arch-frame {
  aspect-ratio: 4/5;
}

/* ---------- Testimonials ---------- */
.testimonial-slider-container {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  padding: 0 20px;
}

.testimonial-slides-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
  border-radius: var(--radius-arch-sm);
}

.testimonial-slides-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  width: 100%;
}

.testimonial-slide {
  min-width: 100%;
  flex: 0 0 100%;
  opacity: 0.25;
  transform: scale(0.96);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
}

.testimonial-slide.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-arch-sm);
  padding: 36px 32px 30px;
  border: 1px solid rgba(110, 20, 35, .08);
  box-shadow: var(--shadow-soft);
  position: relative;
}

.quote-mark {
  font-family: var(--font-display);
  font-size: 3.2rem;
  color: var(--gold);
  line-height: 1;
  height: 30px;
  display: block;
}

.testimonial-card p.quote {
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 12px 0 20px;
}

.testimonial-person {
  display: flex;
  align-items: center;
  gap: 14px;
}

.avatar-circle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--maroon);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
}

.testimonial-person strong {
  display: block;
  font-family: var(--font-display);
  color: var(--maroon-deep);
  font-size: 1.08rem;
}

.testimonial-person span {
  font-size: .85rem;
  color: var(--ink-soft);
}

/* Testimonial Nav Buttons */
.testi-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-60%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  color: var(--maroon-deep);
  border: 1.5px solid rgba(110, 20, 35, 0.15);
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.testi-nav-btn:hover {
  background: var(--maroon);
  color: var(--white);
  border-color: var(--maroon);
  transform: translateY(-60%) scale(1.08);
}

.testi-nav-prev {
  left: -6px;
}

.testi-nav-next {
  right: -6px;
}

.testi-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  position: relative;
  z-index: 10;
}

.testi-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(110, 20, 35, 0.22);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: width 0.3s ease, background-color 0.3s ease, border-radius 0.3s ease;
}

.testi-dot:hover {
  background: var(--maroon-soft);
}

.testi-dot.active {
  width: 28px;
  border-radius: 10px;
  background: var(--maroon);
}

/* ---------- CTA banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--maroon) 0%, var(--maroon-deep) 100%);
  color: var(--white);
  border-radius: 24px;
  padding: 56px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
  border: 1.5px solid rgba(201, 162, 39, .35);
  box-shadow: 0 18px 45px -10px rgba(74, 14, 24, 0.4);
}

.cta-banner::after {
  content: "";
  position: absolute;
  right: -60px;
  top: -60px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(201, 162, 39, .18);
  pointer-events: none;
}

.cta-banner h2 {
  color: var(--white);
  font-weight: 600;
  margin-bottom: .25em;
  max-width: 22ch;
}

.cta-banner p {
  color: rgba(255, 255, 255, .88);
  font-weight: 400;
  font-size: 1.05rem;
  margin: 0;
}

.cta-banner-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* ---------- Forms ---------- */
.form-card {
  background: var(--white);
  border-radius: 22px;
  padding: 40px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(201, 162, 39, .25);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-family: var(--font-label);
  font-weight: 600;
  font-size: .9rem;
  margin-bottom: 7px;
  color: var(--maroon-deep);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: 10px;
  border: 1.5px solid rgba(110, 20, 35, .22);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  background: var(--cream);
  color: var(--ink);
  transition: all .2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--maroon);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(110, 20, 35, 0.12);
}

.form-note {
  font-size: .85rem;
  color: var(--ink-soft);
  font-weight: 400;
  margin-top: -4px;
}

.form-success {
  background: #e9f6ec;
  border: 1.5px solid #a3d9ae;
  color: #1b5026;
  padding: 16px 20px;
  border-radius: 12px;
  margin-bottom: 24px;
  font-weight: 600;
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  background: linear-gradient(160deg, var(--maroon) 0%, var(--maroon-deep) 100%);
  color: var(--white);
  padding: 68px 0 58px;
  position: relative;
  overflow: hidden;
  border-bottom: 1.5px solid rgba(201, 162, 39, .3);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, .14) 1.5px, transparent 1.5px);
  background-size: 24px 24px;
  opacity: .55;
}

.page-hero .container {
  position: relative;
}

.breadcrumb {
  font-family: var(--font-label);
  font-size: .88rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .75);
  margin-bottom: 14px;
}

.breadcrumb a {
  color: rgba(255, 255, 255, .9);
}

.breadcrumb a:hover {
  color: var(--gold-soft);
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(1.9rem, 3.5vw, 2.7rem);
  font-weight: 600;
  margin-bottom: .3em;
}

.page-hero p {
  color: rgba(255, 255, 255, .88);
  max-width: 60ch;
  font-weight: 400;
  margin: 0;
}

/* ---------- Content blocks (about / service / policy pages) ---------- */
.content-block h2 {
  margin-top: 1.4em;
  font-weight: 600;
}

.content-block p {
  color: var(--ink-soft);
  font-weight: 400;
  line-height: 1.7;
}

.two-col {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 54px;
  align-items: flex-start;
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 20px 0;
}

.check-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-weight: 400;
  text-align: left;
}

.check-list .tick {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--rose);
  border: 1px solid rgba(201, 162, 39, .3);
  color: var(--maroon-deep);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .82rem;
  font-weight: 600;
  margin-top: 2px;
}

.sidebar-card {
  background: var(--white);
  border-radius: 20px;
  padding: 30px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(201, 162, 39, .25);
}

.sidebar-card h4 {
  font-size: 1.18rem;
  font-weight: 600;
}

.sidebar-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 14px 0 20px;
}

.sidebar-list a {
  display: block;
  padding: 11px 16px;
  border-radius: 10px;
  background: var(--rose);
  font-size: .95rem;
  font-weight: 600;
  color: var(--maroon-deep);
}

.sidebar-list a:hover,
.sidebar-list a.active {
  background: var(--maroon);
  color: var(--white);
  font-weight: 700;
}

.sidebar-contact {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px dashed rgba(110, 20, 35, .25);
  font-size: .92rem;
}

.sidebar-contact a {
  color: var(--maroon);
  font-weight: 700;
}

.sidebar-contact a.btn-primary {
  color: var(--white) !important;
}

.sidebar-contact a.btn-primary:hover {
  color: var(--white) !important;
}

.sidebar-contact a.btn-gold {
  color: var(--white) !important;
}

/* ---------- Map / address block ---------- */
.map-box {
  border-radius: 20px;
  min-height: 260px;
  background: linear-gradient(135deg, var(--rose), var(--cream));
  border: 1.5px dashed rgba(201, 162, 39, .45);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 30px;
  color: var(--maroon-soft);
  font-family: var(--font-label);
  font-weight: 700;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--maroon-deep);
  color: rgba(255, 255, 255, .88);
  padding-top: 70px;
  position: relative;
}

.footer-arch {
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 40px;
  background: var(--cream);
  border-radius: 0 0 60% 60% / 0 0 100% 100%;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
}

.footer-col h4 {
  color: var(--gold-soft);
  font-family: var(--font-label);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .88rem;
  margin-bottom: 18px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  font-size: .94rem;
  font-weight: 500;
}

.footer-col a:hover {
  color: var(--gold-soft);
}

.site-footer .brand-name {
  color: var(--white) !important;
}

.site-footer .brand-tagline {
  color: var(--gold-soft) !important;
}

.footer-col p,
.footer-desc {
  font-size: .92rem;
  color: rgba(255, 255, 255, .82) !important;
  margin-top: 14px;
  line-height: 1.6;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact-list li {
  font-size: .92rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, .85);
}

.footer-contact-list strong {
  color: var(--gold-soft);
  font-weight: 600;
}

.footer-contact-list a {
  color: var(--white);
  font-weight: 500;
}

.footer-contact-list a:hover {
  color: var(--gold-soft);
}

.social-row {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-row a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .35);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .25s ease;
}

.social-row a:hover {
  background: var(--gold);
  color: var(--maroon-deep);
  border-color: var(--gold);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .14);
  padding: 22px 0;
}

.footer-bottom p {
  margin: 0;
  font-size: .88rem;
  font-weight: 500;
  text-align: center;
  color: rgba(255, 255, 255, .65);
}

.float-whatsapp {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 99;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .28);
  transition: transform .2s ease;
}

.float-whatsapp:hover {
  transform: scale(1.08);
}

/* ---------- Responsive ---------- */
/* ---------- Header Mobile Slider & Drawer ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(110, 20, 35, .07);
  border-bottom: 1px solid rgba(201, 162, 39, .18);
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(47, 8, 16, 0.55);
  backdrop-filter: blur(4px);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}

.nav-backdrop.open {
  opacity: 1;
  visibility: visible;
}

body.nav-lock {
  overflow: hidden !important;
  height: 100vh !important;
  touch-action: none !important;
}

@media (max-width: 980px) {
  .site-header {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: var(--white);
  }

  .hero-grid,
  .about-preview,
  .two-col,
  .why-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .content-block,
  .sidebar-card,
  form,
  form label,
  form input,
  form select,
  form textarea {
    text-align: left !important;
  }

  .hero-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-trustline {
    justify-content: center;
  }

  .hero-visual {
    order: -1;
    max-width: 360px;
    margin: 0 auto;
  }

  .services-grid,
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: flex !important;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1002;
    margin-left: auto;
  }

  .nav-toggle span {
    width: 24px;
    height: 2.5px;
    background: var(--maroon-deep);
    display: block;
    border-radius: 2px;
    transition: transform .25s ease, opacity .25s ease;
  }

  .nav-toggle.open span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
  }

  .nav-toggle.open span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.open span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: var(--white);
    box-shadow: none;
    transform: translateX(100%);
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: transform .3s cubic-bezier(0.25, 1, 0.5, 1), visibility .3s ease, opacity .3s ease;
    padding: 85px 24px 30px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 1001;
    display: flex;
    flex-direction: column;
  }

  .main-nav.open {
    transform: translateX(0);
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }

  .main-nav>ul>li>a {
    width: 100%;
    padding: 14px 16px;
    font-size: 1.05rem;
    justify-content: space-between;
  }

  .dropdown {
    position: static;
    box-shadow: none;
    opacity: 0;
    visibility: hidden;
    transform: none;
    display: none;
    padding-left: 12px;
    border: none;
    background: var(--rose);
    border-radius: 10px;
    margin-top: 4px;
    transition: none;
  }

  .has-dropdown.open .dropdown {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  .dropdown li a {
    padding: 10px 14px;
    font-size: 0.95rem;
    color: var(--maroon-deep);
  }
}

@media (max-width: 760px) {
  .hero-slider-section {
    padding: 30px 0 50px;
  }

  .hero h1,
  .hero-slide h1 {
    font-size: clamp(1.65rem, 6vw, 2.2rem);
    line-height: 1.25;
    margin-bottom: 0.4em;
  }

  .hero-lede {
    font-size: 0.96rem;
    line-height: 1.6;
    max-width: 100%;
    margin-bottom: 1.4em;
  }

  .hero-actions {
    width: 100%;
    gap: 10px;
  }

  .hero-actions .btn {
    flex: 1 1 calc(50% - 10px);
    padding: 10px 16px;
    font-size: 0.9rem;
    text-align: center;
    justify-content: center;
  }

  .hero-trustline {
    font-size: 0.82rem;
    gap: 8px 14px;
    margin-top: 6px;
  }

  .hero-visual {
    max-width: 310px;
    margin: 0 auto;
  }

  .hero-badge {
    position: relative;
    left: auto;
    bottom: auto;
    margin: 16px auto 0;
    max-width: 100%;
    width: max-content;
    padding: 10px 18px;
    border-radius: 999px;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(110, 20, 35, 0.15);
    white-space: normal;
    text-align: center;
    gap: 8px;
  }

  .hero-badge strong {
    font-size: 0.92rem;
    white-space: nowrap;
  }

  .hero-badge span {
    font-size: 0.78rem;
    line-height: 1.3;
  }

  .hero-nav-btn {
    width: 36px;
    height: 36px;
    top: 26%;
    background: rgba(255, 255, 255, 0.94);
    border-color: rgba(201, 162, 39, 0.45);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  }

  .hero-nav-prev {
    left: 4px;
  }

  .hero-nav-next {
    right: 4px;
  }

  .hero-dots {
    margin-top: 28px;
  }

  .services-grid,
  .testimonial-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cta-banner {
    padding: 36px 26px;
  }

  .pillars {
    grid-template-columns: 1fr;
  }

  section {
    padding: 60px 0;
  }

  .blog-article-main {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
    flex: 1 1 100%;
  }
}

/* ---------- Blog Section & Cards ---------- */
.blog-section,
.blog-listing-section,
.blog-detail-section {
  padding: 70px 0;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 36px;
}

.blog-card {
  background: var(--white);
  border-radius: 20px;
  padding: 28px;
  border: 1px solid rgba(201, 162, 39, .22);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: var(--gold);
}

.blog-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.blog-badge {
  display: inline-block;
  background: var(--rose);
  color: var(--maroon-deep);
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 0.78rem;
  padding: 5px 14px;
  border-radius: 999px;
  letter-spacing: 0.03em;
  border: 1px solid rgba(201, 162, 39, .3);
}

.blog-badge-gold {
  background: var(--gold);
  color: var(--maroon-deep);
}

.blog-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(110, 20, 35, .06);
  color: var(--maroon);
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-meta {
  display: flex;
  gap: 14px;
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin-bottom: 12px;
  font-weight: 500;
}

.blog-card-body h3 {
  font-size: 1.22rem;
  line-height: 1.38;
  margin-bottom: 12px;
}

.blog-card-body h3 a {
  color: var(--maroon-deep);
  transition: color .2s ease;
}

.blog-card-body h3 a:hover {
  color: var(--maroon-soft);
}

.blog-card-body p {
  font-size: 0.94rem;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 20px;
}

.blog-card-footer {
  padding-top: 16px;
  border-top: 1px dashed rgba(110, 20, 35, .15);
}

.btn-outline-sm {
  padding: 8px 18px;
  font-size: 0.85rem;
  border-radius: 999px;
  border: 1.5px solid var(--maroon);
  color: var(--maroon);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-outline-sm:hover {
  background: var(--maroon);
  color: var(--white);
}

.blog-cta {
  text-align: center;
  margin-top: 48px;
}

/* Filter Bar */
.blog-filter-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.filter-label {
  font-family: var(--font-label);
  font-weight: 700;
  color: var(--maroon-deep);
  font-size: 0.95rem;
}

.filter-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.filter-tag {
  padding: 7px 18px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid rgba(110, 20, 35, .2);
  color: var(--ink);
  font-family: var(--font-label);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s ease;
}

.filter-tag:hover,
.filter-tag.active {
  background: var(--maroon);
  color: var(--white);
  border-color: var(--maroon);
}

/* Blog Detail Page */
.blog-detail-hero-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, .9);
  font-size: 0.88rem;
  font-weight: 500;
}

.blog-detail-title {
  font-size: clamp(1.8rem, 3.8vw, 2.6rem);
  color: var(--white);
  line-height: 1.28;
  margin: 10px 0 0;
  max-width: 850px;
}

.blog-article-main {
  background: var(--white);
  padding: 40px;
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(201, 162, 39, .2);
}

.article-excerpt-box {
  background: var(--rose);
  border-left: 4px solid var(--gold);
  padding: 20px 24px;
  border-radius: 0 14px 14px 0;
  margin-bottom: 30px;
}

.article-excerpt-box p {
  color: var(--maroon-deep);
  font-size: 1.08rem;
  margin: 0;
  line-height: 1.6;
}

.article-body h3 {
  font-size: 1.38rem;
  margin-top: 1.8em;
  margin-bottom: 0.6em;
  color: var(--maroon-deep);
}

.article-body p {
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--ink-soft);
  margin-bottom: 1.2em;
}

.article-body ul {
  list-style: disc;
  padding-left: 24px;
  margin: 16px 0 24px;
}

.article-body ul li {
  margin-bottom: 10px;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.article-cta-box {
  background: linear-gradient(135deg, var(--cream) 0%, var(--rose) 100%);
  border: 1.5px dashed rgba(201, 162, 39, .45);
  border-radius: 18px;
  padding: 30px;
  margin: 40px 0 30px;
  text-align: center;
}

.article-cta-box h4 {
  color: var(--maroon-deep);
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.article-cta-box p {
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.cta-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.article-nav-links {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(110, 20, 35, .12);
}

/* Sidebar Recent Blogs */
.author-sidebar-box {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 18px;
  border-bottom: 1px dashed rgba(110, 20, 35, .2);
}

.author-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--maroon);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
}

.sidebar-recent-blogs {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 14px;
}

.recent-blog-item {
  display: block;
  padding: 12px 14px;
  border-radius: 12px;
  background: var(--cream);
  border: 1px solid rgba(110, 20, 35, .08);
  transition: all .2s ease;
}

.recent-blog-item:hover {
  background: var(--rose);
  border-color: var(--gold);
  transform: translateX(3px);
}

.recent-blog-cat {
  font-size: 0.72rem;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--maroon-soft);
  letter-spacing: 0.05em;
}

.recent-blog-item h5 {
  font-size: 0.92rem;
  margin: 4px 0 4px;
  color: var(--maroon-deep);
  line-height: 1.35;
}

.recent-blog-date {
  font-size: 0.78rem;
  color: var(--ink-soft);
}

/* Responsive Stat Card Banner */
.stat-banner-section {
  padding: 60px 0;
}

.stat-card-banner {
  background: linear-gradient(135deg, var(--maroon) 0%, var(--maroon-deep) 100%);
  border-radius: 24px;
  padding: 46px 30px;
  border: 1.5px solid rgba(201, 162, 39, 0.35);
  box-shadow: var(--shadow-soft);
}

.stat-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

@media (max-width: 980px) {
  .stat-banner-section {
    padding: 40px 0;
  }

  .stat-card-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
  }
}

@media (max-width: 576px) {
  .stat-banner-section {
    padding: 30px 0;
  }

  .stat-card-banner {
    padding: 28px 16px;
    border-radius: 16px;
  }

  .stat-card-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 12px;
  }
}

/* ---------- Blog Section Mobile Responsiveness ---------- */
@media (max-width: 760px) {
  .blog-section {
    padding: 45px 0;
  }

  .blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 24px;
  }

  .blog-card {
    padding: 20px 18px;
    border-radius: 16px;
  }

  .blog-card-header {
    margin-bottom: 14px;
  }

  .blog-badge {
    font-size: 0.74rem;
    padding: 4px 12px;
  }

  .blog-icon {
    width: 38px;
    height: 38px;
  }

  .blog-icon svg {
    width: 22px;
    height: 22px;
  }

  .blog-meta {
    gap: 8px 14px;
    flex-wrap: wrap;
    font-size: 0.8rem;
    margin-bottom: 10px;
  }

  .blog-card-body h3 {
    font-size: 1.1rem;
    line-height: 1.35;
    margin-bottom: 10px;
  }

  .blog-card-body p {
    font-size: 0.9rem;
    line-height: 1.55;
    margin-bottom: 16px;
  }

  .blog-cta {
    margin-top: 28px;
  }

  .blog-cta .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}

/* ===============================================================
   ENTRANCE ANIMATIONS & SCROLL REVEAL SYSTEM
   =============================================================== */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered entrance for grids & card lists */
.services-grid .service-card.reveal:nth-child(1),
.feature-list .feature-item.reveal:nth-child(1),
.pillars .pillar.reveal:nth-child(1),
.trust-grid .trust-item.reveal:nth-child(1),
.blog-grid .blog-card.reveal:nth-child(1) {
  transition-delay: 0.05s;
}

.services-grid .service-card.reveal:nth-child(2),
.feature-list .feature-item.reveal:nth-child(2),
.pillars .pillar.reveal:nth-child(2),
.trust-grid .trust-item.reveal:nth-child(2),
.blog-grid .blog-card.reveal:nth-child(2) {
  transition-delay: 0.14s;
}

.services-grid .service-card.reveal:nth-child(3),
.feature-list .feature-item.reveal:nth-child(3),
.pillars .pillar.reveal:nth-child(3),
.trust-grid .trust-item.reveal:nth-child(3),
.blog-grid .blog-card.reveal:nth-child(3) {
  transition-delay: 0.23s;
}

.services-grid .service-card.reveal:nth-child(4),
.feature-list .feature-item.reveal:nth-child(4),
.pillars .pillar.reveal:nth-child(4),
.trust-grid .trust-item.reveal:nth-child(4) {
  transition-delay: 0.32s;
}

.services-grid .service-card.reveal:nth-child(5),
.feature-list .feature-item.reveal:nth-child(5) {
  transition-delay: 0.41s;
}

.services-grid .service-card.reveal:nth-child(6),
.feature-list .feature-item.reveal:nth-child(6) {
  transition-delay: 0.5s;
}

/* Hero Entrance Animations */
.hero-content,
.hero-visual,
.page-hero {
  animation: heroEntranceFade 0.85s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.arch-frame {
  animation: floatSoft 6s ease-in-out infinite;
}

@keyframes heroEntranceFade {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatSoft {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

/* Accessibility Support for Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .hero-content,
  .hero-visual,
  .page-hero,
  .arch-frame {
    animation: none !important;
  }
}

/* ---------- Floating Action Buttons ---------- */
.floating-ctas {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.floating-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  font-size: 1.3rem;
  text-decoration: none;
}

.floating-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.floating-wa {
  background: #25D366;
}

.floating-top {
  background: var(--maroon);
  border: 1.5px solid rgba(201, 162, 39, 0.4);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease, box-shadow 0.22s ease;
  font-weight: 700;
  line-height: 1;
}

.floating-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@media (max-width: 600px) {
  .topbar-inner {
    flex-direction: column;
    gap: 6px;
    text-align: center;
    padding: 8px 16px;
    font-size: 0.8rem;
  }

  .floating-ctas {
    bottom: 18px;
    right: 18px;
    gap: 10px;
  }

  .floating-btn {
    width: 46px;
    height: 46px;
    font-size: 1.15rem;
  }
}

/* ---------- Spiritual Quotes Multi-Row Marquee Ribbons ---------- */
.quotes-ribbon-section {
  /* background: linear-gradient(135deg, #2b060d 0%, #150205 50%, #28050c 100%); */

  background: linear-gradient(135deg, var(--maroon-deep) 0%, var(--maroon) 50%, #5d323b 100%);
  color: var(--white);
  padding: 65px 0 70px 0;
  position: relative;
  overflow: hidden;
  border-top: 1.5px solid rgba(201, 162, 39, 0.3);
  border-bottom: 1.5px solid rgba(201, 162, 39, 0.3);
}

.quotes-ribbon-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 25%, rgba(201, 162, 39, 0.09) 0%, transparent 70%);
  pointer-events: none;
}

.quotes-ribbon-header {
  text-align: center;
  margin-bottom: 36px;
  position: relative;
  z-index: 2;
}

.quotes-ribbon-header h2 {
  color: var(--white);
  font-size: 2.1rem;
  font-weight: 700;
  margin: 6px 0 10px 0;
}

.quotes-ribbon-header p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.98rem;
  max-width: 680px;
  margin: 0 auto;
}

.quotes-rows-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  position: relative;
  z-index: 2;
}

.quotes-marquee-row {
  background: rgba(255, 255, 255, 0.035);
  border-top: 1px solid rgba(201, 162, 39, 0.18);
  border-bottom: 1px solid rgba(201, 162, 39, 0.18);
  padding: 14px 0;
  cursor: default;
  transition: background 0.3s ease;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  display: flex;
}

.quotes-marquee-row:hover {
  background: rgba(255, 255, 255, 0.07);
}

.quotes-marquee-row.row-highlight {
  background: rgba(201, 162, 39, 0.08);
  border-top: 1px solid rgba(201, 162, 39, 0.35);
  border-bottom: 1px solid rgba(201, 162, 39, 0.35);
}

.quotes-marquee-row.row-highlight:hover {
  background: rgba(201, 162, 39, 0.14);
}

.quotes-marquee-inner {
  display: flex;
  width: max-content;
  will-change: transform;
}

.quotes-marquee-inner.scroll-left {
  animation: scrollContinuousLeft 95s linear infinite;
}

.quotes-marquee-inner.scroll-right {
  animation: scrollContinuousRight 95s linear infinite;
}

.quotes-marquee-inner.scroll-left-slow {
  animation: scrollContinuousLeft 105s linear infinite;
}

.quotes-marquee-row:hover .quotes-marquee-inner {
  animation-play-state: paused;
}

@keyframes scrollContinuousLeft {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes scrollContinuousRight {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0);
  }
}

.marquee-content-line {
  display: inline-flex;
  align-items: center;
  gap: 32px;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding-right: 32px;
  flex-shrink: 0;
}

.quote-item-inline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.quote-topic-badge {
  display: inline-block;
  background: rgba(201, 162, 39, 0.22);
  color: var(--gold-soft);
  border: 1px solid rgba(201, 162, 39, 0.45);
  font-size: 0.76rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.quote-text-span {
  color: #ffffff;
  font-style: italic;
  font-weight: 500;
}

.quote-author-span {
  color: var(--gold-soft);
  font-weight: 700;
  margin-left: 4px;
}

.quote-meaning-span {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.92rem;
  font-style: normal;
  background: rgba(0, 0, 0, 0.3);
  padding: 2px 10px;
  border-radius: 6px;
  border-left: 2px solid var(--gold);
}

.quote-separator-icon {
  color: var(--gold);
  font-size: 1.15rem;
  opacity: 0.85;
  display: inline-flex;
  align-items: center;
  padding: 0 4px;
}

.urdu-inline-text {
  color: var(--gold-soft);
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0 6px;
  direction: rtl;
}

@media (max-width: 768px) {
  .quotes-ribbon-section {
    padding: 50px 0 55px 0;
  }

  .quotes-ribbon-header h2 {
    font-size: 1.6rem;
  }

  .marquee-content-line {
    font-size: 0.95rem;
    gap: 20px;
    padding-right: 20px;
  }

  .quotes-marquee-row {
    padding: 10px 0;
  }
}