/* ============================================================
   Services for NRI Ltd. — Shared Stylesheet
   Design system extracted from the original bundled Services page.
   Fonts: Poppins 400–800 (loaded via Google Fonts in each page head)
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  /* India tricolour palette — saffron, white, India green */
  --saffron: #ff9933;          /* India saffron — identity / decorative fills */
  --saffron-soft: #ffb366;
  --orange: #f5821f;           /* deeper saffron — legible text, links, hover */
  --orange-dark: #e0731a;
  --green: #138808;            /* India flag green */
  --green-dark: #0e6606;
  --heading: #10742b;          /* dark green for readable headings */
  --navy: #14243f;             /* navbar text / logo navy */
  --footer-top: #0e3d24;
  --footer-bottom: #08260f;
  --body: #6f6f6f;
  --ink: #1a1a1a;
  --muted: #9fb3a6;
  --line: #eadfc9;             /* warm hairline on cream */
  --cream: #fbf6ea;            /* content sheet */
  --cream-deep: #f3ead6;       /* soft section tint */
  --bg-soft: #f5eedd;          /* warm cream for soft sections */
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, .06);
  --shadow-md: 0 12px 34px rgba(0, 0, 0, .10);
  --shadow-lg: 0 26px 60px rgba(10, 46, 27, .18);
  --radius: 6px;
  --container: 1140px;
  --header-h: 108px;           /* includes the toran bunting strip */
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- Reset / base ---------- */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Poppins', system-ui, -apple-system, sans-serif;
  color: var(--body);
  /* Gujarati motif wallpaper shows in the margins around the content sheet,
     drifting slowly upwards (marquee) */
  background: #f2e9d8 url("images/gujarati-background.png") repeat fixed;
  background-size: 900px auto;
  animation: wallpaperUp 80s linear infinite;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
/* one vertical tile = 900px x (1080/1920) = 506.25px, so the loop is seamless */
@keyframes wallpaperUp { from { background-position: 0 0; } to { background-position: 0 -506.25px; } }
@media (prefers-reduced-motion: reduce) { body { animation: none; } }

/* Gujarati as UI language: prefer the Gujarati face site-wide */
html[lang="gu"] body, html[lang="gu"] button, html[lang="gu"] input, html[lang="gu"] select, html[lang="gu"] textarea {
  font-family: 'Noto Sans Gujarati', 'Poppins', system-ui, sans-serif;
}

/* Central content sheet: pages render on a cream column, wallpaper at the sides */
main {
  display: block;
  max-width: 1320px;
  margin: 0 auto;
  background: var(--cream);
  box-shadow: 0 0 60px rgba(96, 70, 21, .14);
}

/* Gujarati script accents (eyebrows etc.) */
.gu { font-family: 'Noto Sans Gujarati', 'Poppins', sans-serif; }

/* Google Website Translator: hide all of its injected chrome, keep our own toggle */
#google_translate_element,
.goog-te-banner-frame, .goog-te-balloon-frame,
#goog-gt-tt, .goog-tooltip, .goog-te-spinner-pos { display: none !important; }
.skiptranslate { display: none !important; }
body { top: 0 !important; }
.goog-text-highlight { background: none !important; box-shadow: none !important; }
/* Once translated, render the whole site in the Gujarati typeface */
html.translated-ltr body, html.translated-rtl body {
  font-family: 'Noto Sans Gujarati', 'Poppins', system-ui, sans-serif;
}

a { text-decoration: none; color: inherit; transition: color .2s var(--ease); }
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4 { color: var(--heading); font-weight: 700; line-height: 1.25; margin: 0; }
p { margin: 0 0 1rem; }
ul { margin: 0; }
::selection { background: var(--orange); color: #fff; }

/* Respect reduced-motion preferences */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 6vw; }
.section { padding: 60px 0; }
.section--soft { background: var(--bg-soft); }
.text-center { text-align: center; }

.eyebrow {
  display: inline-block;
  color: var(--orange);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(29px, 4.4vw, 43px);
  color: var(--heading);
  margin: 0 0 16px;
}
.section-intro { max-width: 660px; margin: 0 auto 8px; color: var(--body); font-size: 16.5px; }
.section-head { margin-bottom: 42px; }

/* Tricolour divider flourish under centered headings (saffron → white → green) */
.section-head .section-title::after {
  content: "";
  display: block;
  width: 66px;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--saffron) 0 33%, #ffffff 33% 66%, var(--green) 66% 100%);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, .04);
  margin: 18px auto 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 13px 28px;
  border-radius: 3px;
  border: 2px solid transparent;
  cursor: pointer;
  font-family: inherit;
  transition: transform .2s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease), color .25s var(--ease);
}
.btn svg { width: 15px; height: 15px; fill: currentColor; }
.btn-primary { background: linear-gradient(135deg, var(--saffron), var(--orange)); color: #fff; box-shadow: 0 10px 24px rgba(245, 130, 31, .32); }
.btn-primary:hover { background: linear-gradient(135deg, var(--orange), var(--orange-dark)); transform: translateY(-3px); box-shadow: 0 16px 30px rgba(245, 130, 31, .4); }
.btn-green { background: var(--green); color: #fff; box-shadow: 0 10px 24px rgba(10, 125, 59, .28); }
.btn-green:hover { background: var(--green-dark); transform: translateY(-3px); }
.btn-outline { background: transparent; border-color: var(--orange); color: var(--orange); }
.btn-outline:hover { background: var(--orange); color: #fff; transform: translateY(-3px); }
.btn-ghost-light { background: rgba(255, 255, 255, .12); color: #fff; border-color: rgba(255, 255, 255, .4); }
.btn-ghost-light:hover { background: #fff; color: var(--green); transform: translateY(-3px); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 38px 6vw 13px;   /* top padding leaves room for the toran bunting */
  /* Frosted cream bar so the navy nav text stays readable over any hero */
  background: linear-gradient(180deg, rgba(252, 247, 236, .97), rgba(252, 247, 236, .86));
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(96, 70, 21, .1);
  transition: background .3s var(--ease), box-shadow .3s var(--ease), padding .3s var(--ease);
}
/* More solid once scrolled */
.site-header.scrolled {
  background: rgba(252, 247, 236, .98);
  box-shadow: var(--shadow-sm);
  padding: 34px 6vw 9px;
}

/* Festive toran bunting pinned along the very top of the header */
.header-toran {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 26px;
  background: url("images/toran.svg") repeat-x top left;
  background-size: auto 26px;
  pointer-events: none;
}

.brand { display: flex; align-items: center; gap: 13px; }
.brand__logo { height: 50px; width: auto; display: block; border-radius: 7px; }
.brand__name {
  font-weight: 800;
  font-size: 21px;
  letter-spacing: 1.5px;
  line-height: 1.05;
  color: var(--navy);
  white-space: nowrap;
  transition: color .3s var(--ease);
}

/* Navy nav text on the frosted bar */
.site-nav { display: flex; align-items: center; gap: 32px; }
.site-nav a {
  position: relative;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--navy);
  padding: 4px 0;
  transition: color .25s var(--ease);
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--orange);
  transition: width .25s var(--ease);
}
.site-nav a:hover { color: var(--orange); }
.site-nav a:hover::after { width: 100%; }
.site-nav a.active { color: var(--orange); font-weight: 600; }
.site-nav a.active::after { width: 100%; }

.header-cta { margin-left: 6px; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px; height: 42px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 70;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--navy);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s var(--ease), background .3s var(--ease);
}
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10, 46, 27, .5);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s var(--ease), visibility .3s var(--ease);
  z-index: 55;
}
body.nav-open .nav-backdrop { opacity: 1; visibility: visible; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: center;
  padding: var(--header-h) 6vw 40px;
  background: linear-gradient(90deg, #e9edf1 0%, #dfe4ea 45%, #c9d2da 100%);
  overflow: hidden;
}
.hero__img {
  position: absolute;
  inset: 0;
  /* start the photo BELOW the fixed header so its top (e.g. the statue's
     head) is never hidden behind the header bar */
  top: var(--header-h);
  width: 100%; height: calc(100% - var(--header-h));
  object-fit: cover;
  z-index: 0;
}
body.has-notice .hero__img { top: calc(var(--header-h) + 30px); height: calc(100% - var(--header-h) - 30px); }
@media (max-width: 620px) {
  body.has-notice .hero__img { top: calc(var(--header-h) + 40px); height: calc(100% - var(--header-h) - 40px); }
}
.hero__overlay {
  position: absolute;
  inset: 0;
  top: var(--header-h);            /* match the image box below the header */
  background: linear-gradient(90deg, rgba(12, 40, 25, .78) 0%, rgba(12, 40, 25, .45) 45%, rgba(12, 40, 25, .2) 100%);
  z-index: 1;
}
body.has-notice .hero__overlay { top: calc(var(--header-h) + 30px); }
@media (max-width: 620px) {
  body.has-notice .hero__overlay { top: calc(var(--header-h) + 40px); }
}
.hero__inner { position: relative; z-index: 2; width: 100%; max-width: var(--container); margin: 0 auto; }
.hero__title { color: #fff; font-size: clamp(34px, 6vw, 56px); font-weight: 700; margin: 34px 0 8px; }
.hero__crumb { color: rgba(255, 255, 255, .85); font-size: 13px; font-weight: 500; }
.hero__crumb a:hover { color: var(--orange); }

/* Interior-page hero: light Gujarati cream gradient, dark title, no photo */
.hero--page {
  min-height: 250px;
  background:
    radial-gradient(700px 220px at 85% 20%, rgba(245, 130, 31, .16), transparent 70%),
    linear-gradient(115deg, #fdf9f0 0%, #f7edd9 55%, #edd9b5 100%);
}
.hero--page .hero__title { color: #1c1c1c; margin: 26px 0 6px; animation: fadeInHero .8s var(--ease) .1s both; }
.hero--page .hero__crumb { color: #7a6b4f; }
.hero--page .hero__crumb a:hover { color: var(--orange); }
.hero__gu {
  display: block;
  font-family: 'Noto Sans Gujarati', 'Poppins', sans-serif;
  color: var(--orange);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-top: 30px;
  animation: fadeInHero .8s var(--ease) both;
}

/* Home hero (taller, with copy + CTA) */
.hero--home { min-height: 640px; align-items: center; }
.hero--home .hero__overlay {
  /* neutral scrim (no green tint) — darker on the left for text legibility,
     clearer on the right so the photo shows through */
  background: linear-gradient(90deg, rgba(8, 12, 10, .68) 0%, rgba(8, 12, 10, .38) 45%, rgba(8, 12, 10, .08) 100%);
}
/* Keep hero copy crisp over the photo now that the tint is lighter */
.hero--home .hero-copy h1,
.hero--home .hero-copy p,
.hero--home .hero-copy .eyebrow { text-shadow: 0 2px 20px rgba(0, 0, 0, .55); }
.hero-copy { max-width: 620px; }
.hero-copy .eyebrow { color: #ffd9b0; }
.hero-copy h1 {
  color: #fff;
  font-size: clamp(34px, 5.4vw, 58px);
  line-height: 1.12;
  margin: 0 0 20px;
}
.hero-copy h1 .accent { color: var(--orange); }
.hero-copy p { color: rgba(255, 255, 255, .9); font-size: 16px; margin: 0 0 30px; max-width: 520px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* ============================================================
   SERVICE ROWS (alternating image/text)
   ============================================================ */
.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 92px;
}
.service-row:last-child { margin-bottom: 0; }
.service-row.reverse .service-row__media { order: 2; }
.service-row__media {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.service-row__media img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; transition: transform .6s var(--ease); }
.service-row__media:hover img { transform: scale(1.05); }

.service-icon {
  width: 54px; height: 54px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  background: linear-gradient(135deg, var(--saffron), var(--orange));
  border-radius: 12px;
  margin-bottom: 18px;
  box-shadow: 0 8px 20px rgba(245, 130, 31, .3);
}
.service-icon svg { width: 30px; height: 30px; fill: currentColor; }
.service-row h2 {
  color: var(--heading);
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 12px;
  text-transform: uppercase;
}
.service-row .lead { color: var(--ink); font-weight: 600; font-size: 15px; margin: 0 0 16px; }
.service-row p { font-size: 13.8px; color: var(--body); margin: 0 0 14px; }
.service-row ul { font-size: 13.8px; color: var(--body); padding-left: 18px; display: flex; flex-direction: column; gap: 8px; margin: 0; }
.service-row ul li::marker { color: var(--orange); }

/* ============================================================
   CARD GRID (service highlights, why-us, values)
   ============================================================ */
.grid { display: grid; gap: 28px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 34px 30px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  height: 100%;
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: transparent; }
.card__icon {
  width: 58px; height: 58px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(245, 130, 31, .12);
  color: var(--orange);
  margin-bottom: 20px;
  transition: background .3s var(--ease), color .3s var(--ease);
}
.card:hover .card__icon { background: var(--orange); color: #fff; }
.card__icon svg { width: 30px; height: 30px; fill: currentColor; }
.card h3 { font-size: 17px; color: var(--heading); margin: 0 0 10px; }
.card p { font-size: 13.6px; color: var(--body); margin: 0 0 14px; }
.card .card__link { font-size: 12px; font-weight: 600; letter-spacing: .5px; text-transform: uppercase; color: var(--orange); display: inline-flex; align-items: center; gap: 6px; }
.card .card__link svg { width: 13px; height: 13px; fill: currentColor; transition: transform .2s var(--ease); }
.card:hover .card__link svg { transform: translateX(4px); }

/* ---------- Property-type cards (real estate) ---------- */
.property-card {
  display: block;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.property-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: transparent; }
.property-card__media { overflow: hidden; }
.property-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform .5s var(--ease); }
.property-card:hover img { transform: scale(1.06); }
.property-card__body { padding: 20px 24px 24px; }
.property-card__body h3 { font-size: 18px; color: var(--heading); margin: 0 0 8px; display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.property-card__body h3 svg { width: 16px; height: 16px; fill: var(--orange); transition: transform .2s var(--ease); }
.property-card:hover .property-card__body h3 svg { transform: translateX(4px); }
.property-card__body p { font-size: 13.4px; color: var(--body); margin: 0; }

/* ---------- Stats band ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { text-align: center; color: #fff; }
.stat__num { font-size: clamp(30px, 4vw, 44px); font-weight: 800; color: #fff; line-height: 1; }
.stat__num .accent { color: var(--orange); }
.stat__label { font-size: 13px; color: rgba(255, 255, 255, .8); margin-top: 8px; }
.band-green { background: linear-gradient(120deg, var(--footer-top), var(--footer-bottom)); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.quote {
  background: #fff;
  border-radius: 14px;
  padding: 34px 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  position: relative;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.quote:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.quote__mark { font-size: 60px; line-height: .6; color: rgba(245, 130, 31, .25); font-weight: 800; font-family: Georgia, serif; }
.quote p { font-size: 14px; color: #555; font-style: italic; margin: 6px 0 22px; }
.quote__person { display: flex; align-items: center; gap: 12px; }
.quote__person img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; }
.quote__name { font-weight: 600; color: var(--heading); font-size: 14px; }
.quote__role { font-size: 12px; color: var(--body); }
.stars { color: var(--orange); font-size: 13px; letter-spacing: 2px; margin-bottom: 4px; }

/* ============================================================
   TEAM
   ============================================================ */
.team { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.member { text-align: center; }
.member__photo {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 16px;
  position: relative;
}
.member__photo img { width: 100%; aspect-ratio: 3 / 3.4; object-fit: cover; transition: transform .5s var(--ease); }
.member:hover .member__photo img { transform: scale(1.06); }
.member__social {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  display: flex; justify-content: center; gap: 10px;
  padding: 12px;
  background: linear-gradient(0deg, rgba(10, 46, 27, .85), transparent);
  transform: translateY(100%);
  transition: transform .3s var(--ease);
}
.member:hover .member__social { transform: translateY(0); }
.member__social a { width: 30px; height: 30px; border-radius: 50%; background: rgba(255, 255, 255, .18); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 12px; font-weight: 700; }
.member__social a:hover { background: var(--orange); }
.member h3 { font-size: 16px; margin: 0 0 3px; }
.member__role { font-size: 12.5px; color: var(--orange); font-weight: 600; text-transform: uppercase; letter-spacing: .5px; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gallery__item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4 / 3;
}
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.gallery__item:hover img { transform: scale(1.08); }
.gallery__cap {
  position: absolute;
  inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  background: linear-gradient(0deg, rgba(10, 46, 27, .78), rgba(10, 46, 27, .15));
  color: #fff;
  opacity: 0;
  transition: opacity .3s var(--ease);
  text-align: center;
  padding: 16px;
}
.gallery__item:hover .gallery__cap { opacity: 1; }
.gallery__cap span { font-size: 12px; letter-spacing: 1px; text-transform: uppercase; color: var(--orange); font-weight: 600; }
.gallery__cap strong { font-size: 16px; font-weight: 600; }
.gallery__zoom { width: 44px; height: 44px; border-radius: 50%; border: 2px solid #fff; display: flex; align-items: center; justify-content: center; }
.gallery__zoom svg { width: 18px; height: 18px; fill: #fff; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(8, 26, 16, .92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 5vw;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 84vh; border-radius: 8px; box-shadow: var(--shadow-lg); }
.lightbox__close { position: absolute; top: 24px; right: 30px; color: #fff; font-size: 34px; cursor: pointer; line-height: 1; background: none; border: none; }
.lightbox__nav { position: absolute; top: 50%; transform: translateY(-50%); color: #fff; font-size: 44px; cursor: pointer; background: none; border: none; padding: 10px 18px; opacity: .8; }
.lightbox__nav:hover { opacity: 1; }
.lightbox__prev { left: 2vw; }
.lightbox__next { right: 2vw; }

/* ============================================================
   NEWS / BLOG
   ============================================================ */
.news-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 44px; align-items: start; }
.post-list { display: flex; flex-direction: column; gap: 40px; }
.post {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 26px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.post:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.post__media { overflow: hidden; align-self: stretch; }
.post__media img { width: 100%; height: 100%; min-height: 210px; object-fit: cover; transition: transform .5s var(--ease); }
.post:hover .post__media img { transform: scale(1.06); }
.post__body { padding: 24px 26px 24px 0; }
.post__meta { font-size: 12px; color: var(--orange); font-weight: 600; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 10px; display: flex; gap: 14px; flex-wrap: wrap; }
.post__meta .cat { color: var(--green); }
.post h3 { font-size: 20px; color: var(--heading); margin: 0 0 10px; }
.post p { font-size: 13.8px; color: var(--body); margin: 0 0 14px; }

/* Sidebar */
.sidebar { display: flex; flex-direction: column; gap: 34px; }
.widget { background: var(--bg-soft); border: 1px solid var(--line); border-radius: 14px; padding: 26px; }
.widget h4 { font-size: 16px; color: var(--heading); margin: 0 0 18px; position: relative; padding-bottom: 12px; }
.widget h4::after { content: ""; position: absolute; left: 0; bottom: 0; width: 34px; height: 3px; background: var(--orange); border-radius: 3px; }
.widget ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.widget ul a { font-size: 13.5px; color: var(--body); display: flex; align-items: center; gap: 8px; }
.widget ul a:hover { color: var(--orange); }
.widget ul a::before { content: "›"; color: var(--orange); font-weight: 700; }
.mini-post { display: flex; gap: 12px; align-items: center; }
.mini-post img { width: 62px; height: 62px; border-radius: 8px; object-fit: cover; flex-shrink: 0; }
.mini-post .t { font-size: 13px; font-weight: 600; color: var(--heading); line-height: 1.4; }
.mini-post .d { font-size: 11.5px; color: var(--orange); }
.tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tags a { font-size: 12px; padding: 6px 14px; background: #fff; border: 1px solid var(--line); border-radius: 40px; color: var(--body); }
.tags a:hover { background: var(--orange); color: #fff; border-color: var(--orange); }

/* Article (single post typography, reused on privacy) */
.article { max-width: 820px; margin: 0 auto; }
.article h2 { font-size: 26px; margin: 40px 0 16px; }
.article h3 { font-size: 19px; margin: 28px 0 12px; }
.article p { font-size: 15px; color: #5f5f5f; margin: 0 0 18px; }
.article ul, .article ol { padding-left: 22px; margin: 0 0 18px; display: flex; flex-direction: column; gap: 10px; }
.article ul li, .article ol li { font-size: 15px; color: #5f5f5f; }
.article ul li::marker, .article ol li::marker { color: var(--orange); }
.article a { color: var(--orange); font-weight: 600; }
.article a:hover { text-decoration: underline; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: start; }
.info-card { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 26px; }
.info-card__icon {
  width: 50px; height: 50px; flex-shrink: 0;
  border-radius: 12px;
  background: rgba(10, 125, 59, .1);
  color: var(--green);
  display: flex; align-items: center; justify-content: center;
}
.info-card__icon svg { width: 24px; height: 24px; fill: currentColor; }
.info-card h4 { font-size: 15px; color: var(--heading); margin: 0 0 4px; }
.info-card p { font-size: 13.8px; color: var(--body); margin: 0; }
.info-card a:hover { color: var(--orange); }

.form { display: grid; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label { display: block; font-size: 12.5px; font-weight: 600; color: var(--heading); margin-bottom: 6px; }
.field input, .field textarea, .field select {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-family: inherit;
  font-size: 13.5px;
  color: var(--ink);
  background: #fff;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(245, 130, 31, .14);
}
.field textarea { resize: vertical; min-height: 140px; }
.form__note { font-size: 12px; color: var(--body); }
.form-status { font-size: 13px; font-weight: 600; padding: 4px 0; min-height: 20px; }
.form-status.ok { color: var(--green); }
.form-status.err { color: #c0392b; }

.map-embed { border-radius: 14px; overflow: hidden; box-shadow: var(--shadow-md); line-height: 0; }
.map-embed iframe { width: 100%; height: 380px; border: 0; }

/* ============================================================
   CTA STRIP
   ============================================================ */
.cta-strip {
  position: relative;
  overflow: hidden;
  background: linear-gradient(120deg, var(--footer-top), var(--footer-bottom));
  color: #fff;
  text-align: center;
  padding: 74px 6vw;
}
.cta-strip h2 { color: #fff; font-size: clamp(24px, 4vw, 34px); margin: 0 0 14px; }
.cta-strip p { color: rgba(255, 255, 255, .82); max-width: 560px; margin: 0 auto 28px; }
.cta-strip .btn { margin: 0 6px; }
.cta-strip::before {
  content: "";
  position: absolute;
  right: -80px; top: -80px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: rgba(245, 130, 31, .14);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  position: relative;
  background: linear-gradient(180deg, var(--footer-top), var(--footer-bottom));
  color: #c9d6cd;
  padding: 60px 6vw 0;
  font-size: 13px;
}
/* Tricolour accent bar across the top of the footer */
.site-footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--saffron) 0 33.33%, #ffffff 33.33% 66.66%, var(--green) 66.66% 100%);
}
.footer-top { max-width: 1140px; margin: 0 auto; display: grid; grid-template-columns: 1.3fr 1fr 1.2fr 1.1fr; gap: 40px; }
.footer-col h3 { color: #fff; font-size: 19px; font-weight: 700; margin: 0 0 14px; }
.footer-col h4 { color: #fff; font-size: 15px; font-weight: 600; margin: 0 0 16px; }
.footer-col p { color: var(--muted); font-size: 12.5px; margin: 0 0 16px; }
.footer-links { display: flex; flex-direction: column; gap: 11px; list-style: none; padding: 0; }
.footer-links a { font-size: 13px; color: #c9d6cd; display: inline-flex; align-items: center; gap: 8px; width: fit-content; }
.footer-links a::before { content: "›"; color: var(--orange); font-weight: 700; }
.footer-links a:hover { color: #fff; transform: translateX(3px); }
.footer-links.services a { color: #e08a3c; }
.footer-links.services a:hover { color: var(--orange); }

.subscribe input {
  width: 100%;
  padding: 11px 13px;
  margin-bottom: 10px;
  border: none;
  border-radius: 4px;
  font-size: 12.5px;
  font-family: inherit;
}
.subscribe input:focus { outline: 2px solid var(--orange); }
.subscribe button { width: 100%; }

.footer-contact { display: flex; flex-direction: column; gap: 16px; }
.footer-contact .label { color: #fff; font-weight: 600; margin-bottom: 3px; font-size: 13px; }
.footer-contact .val { color: var(--muted); font-size: 12.5px; }
.footer-contact a.val:hover, .footer-contact .val a:hover { color: var(--orange); }
.footer-contact .val a { color: #e08a3c; }

.socials { display: flex; gap: 9px; margin-top: 2px; }
.socials a {
  width: 30px; height: 30px;
  border: 1px solid #e08a3c;
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  color: #e08a3c;
  font-size: 12px; font-weight: 700;
  transition: background .2s var(--ease), color .2s var(--ease), transform .2s var(--ease);
}
.socials a:hover { background: var(--orange); border-color: var(--orange); color: #fff; transform: translateY(-3px); }

.footer-bottom {
  max-width: 1140px;
  margin: 46px auto 0;
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding: 20px 0 24px;
  text-align: center;
}
.footer-bottom .disclaimer { color: #8fa89a; font-size: 10.5px; line-height: 1.7; margin: 0 0 10px; }
.footer-bottom .copy { margin: 0; color: #6f8578; font-size: 11px; }

/* Floating WhatsApp button (always visible) */
.wa-float {
  position: fixed;
  right: 24px; bottom: 24px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 28px rgba(37, 211, 102, .45);
  z-index: 85;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
  animation: waPulse 2.4s ease-in-out infinite;
}
.wa-float:hover { transform: scale(1.08); box-shadow: 0 16px 34px rgba(37, 211, 102, .6); }
.wa-float svg { width: 32px; height: 32px; fill: currentColor; }
.wa-float .wa-tip {
  position: absolute;
  right: 68px;
  white-space: nowrap;
  background: #0e3d24;
  color: #fff;
  font-size: 12px; font-weight: 600;
  padding: 8px 12px;
  border-radius: 6px;
  opacity: 0; transform: translateX(8px);
  pointer-events: none;
  transition: opacity .25s var(--ease), transform .25s var(--ease);
  box-shadow: var(--shadow-sm);
}
.wa-float:hover .wa-tip { opacity: 1; transform: translateX(0); }
@keyframes waPulse { 0%, 100% { box-shadow: 0 12px 28px rgba(37, 211, 102, .45); } 50% { box-shadow: 0 12px 28px rgba(37, 211, 102, .45), 0 0 0 12px rgba(37, 211, 102, 0); } }

/* Back-to-top (sits above the WhatsApp button) */
.to-top {
  position: fixed;
  right: 30px; bottom: 90px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 24px rgba(245, 130, 31, .4);
  opacity: 0; visibility: hidden;
  transform: translateY(14px);
  transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s var(--ease), background .2s var(--ease);
  z-index: 84;
}
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--orange-dark); }
.to-top svg { width: 20px; height: 20px; fill: currentColor; }

@media (prefers-reduced-motion: reduce) { .wa-float { animation: none; } }
@media (max-width: 620px) {
  .wa-float { width: 52px; height: 52px; right: 16px; bottom: 16px; }
  .to-top { right: 20px; bottom: 78px; }
  .wa-float .wa-tip { display: none; }
}

/* ============================================================
   SCROLL-REVEAL ANIMATIONS
   ============================================================ */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in-view { opacity: 1; transform: none; }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal-left.in-view { opacity: 1; transform: none; }
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal-right.in-view { opacity: 1; transform: none; }
.reveal-zoom { opacity: 0; transform: scale(.92); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal-zoom.in-view { opacity: 1; transform: none; }
.reveal-blur { opacity: 0; filter: blur(14px); transform: translateY(24px); transition: opacity .8s var(--ease), filter .8s var(--ease), transform .8s var(--ease); }
.reveal-blur.in-view { opacity: 1; filter: none; transform: none; }
/* Stagger children via a --d delay (set in markup or auto-assigned by site.js) */
.reveal, .reveal-left, .reveal-right, .reveal-zoom, .reveal-blur { transition-delay: var(--d, 0s); will-change: opacity, transform; }

@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.float { animation: floaty 5s ease-in-out infinite; }

@keyframes fadeInHero { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
.hero-copy .eyebrow { animation: fadeInHero .7s var(--ease) both; }
.hero-copy h1 { animation: fadeInHero .7s var(--ease) .12s both; }
.hero-copy p { animation: fadeInHero .7s var(--ease) .24s both; }
.hero-actions { animation: fadeInHero .7s var(--ease) .36s both; }
/* Interior-page hero banners animate their title + breadcrumb in */
.hero__title { animation: fadeInHero .8s var(--ease) .1s both; }
.hero__crumb { animation: fadeInHero .8s var(--ease) .22s both; }

/* Count-up numbers start hidden until JS reveals */
.stat__num[data-count] { transition: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 34px; }
  .team { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  /* Mobile nav */
  .nav-toggle { display: flex; }
  .header-cta { display: none; }
  .site-nav {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(78vw, 320px);
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 96px 32px 40px;
    box-shadow: -20px 0 50px rgba(0, 0, 0, .18);
    transform: translateX(100%);
    transition: transform .35s var(--ease);
    z-index: 65;
    overflow-y: auto;
  }
  body.nav-open .site-nav { transform: translateX(0); }
  /* Drawer is white, so links are always dark inside it regardless of scroll state */
  .site-nav a, .site-header.scrolled .site-nav a { font-size: 16px; width: 100%; padding: 12px 0; color: #333; border-bottom: 1px solid #f0f0f0; }
  .site-nav a.active { color: var(--orange); }
  .site-nav a::after { display: none; }

  .grid-3, .grid-4, .testimonials, .stats { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .news-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }

  /* Stack service rows */
  .service-row { grid-template-columns: 1fr; gap: 26px; margin-bottom: 60px; }
  .service-row.reverse .service-row__media { order: 0; }
  .service-row__media { max-width: 480px; }

  .hero--home { min-height: 560px; }
  .section { padding: 68px 0; }
}

@media (max-width: 620px) {
  :root { --header-h: 72px; }
  .grid-3, .grid-4, .grid-2, .testimonials, .stats, .team { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; gap: 12px; }
  .form-row { grid-template-columns: 1fr; }
  .post { grid-template-columns: 1fr; }
  .post__media img { min-height: 200px; }
  .post__body { padding: 0 22px 24px; }
  .footer-top { grid-template-columns: 1fr; gap: 30px; }
  .hero__title { margin-top: 20px; }
  .service-row__media { max-width: none; }
  .cta-strip .btn { display: flex; margin: 8px auto 0; width: fit-content; }
  .section { padding: 56px 0; }
}

/* ============================================================
   PREMIUM MOTION LAYER
   Smooth scroll, parallax, scroll progress, tilt, sheen,
   shimmer, animated blobs, and cross-page View Transitions.
   ============================================================ */

/* Cross-document View Transitions (SPA-like page fades in supporting browsers) */
@view-transition { navigation: auto; }
/* Old page stays put while the new page glides up over it — avoids the
   white "flash" a plain crossfade produces between documents */
::view-transition-old(root) { animation: none; }
::view-transition-new(root) { animation: pageGlide .5s cubic-bezier(.22, .61, .36, 1) both; }
@keyframes pageGlide { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@media (prefers-reduced-motion: reduce) {
  ::view-transition-old(root), ::view-transition-new(root) { animation: none; }
}

/* Lenis smooth-scroll helper styles */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }

/* Scroll progress bar — styled as the Indian tricolour with an Ashoka-blue chakra */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 6px; width: 100%;
  z-index: 100;
  pointer-events: none;
  background: rgba(10, 46, 27, .07);   /* faint track */
}
.scroll-progress__fill {
  display: block;
  height: 100%; width: 0;
  /* smooth saffron -> white -> green blend, anchored to the viewport so the
     colour proportions stay correct as the fill grows left to right */
  background: linear-gradient(90deg, var(--saffron) 0%, #ffffff 50%, var(--green) 100%);
  background-size: 100vw 100%;
  background-repeat: no-repeat;
}

/* Hero image: over-scale so JS parallax has room, plus a soft fade-in.
   transform-origin is pinned to the top so the zoom never pushes the top
   of the photo (e.g. the statue's head) out of the frame */
.hero__img { transform: scale(1.2); transform-origin: top center; will-change: transform; animation: heroImgIn 1.4s var(--ease) both; }
@keyframes heroImgIn { from { opacity: 0; } to { opacity: 1; } }

/* Animated shimmer on the hero accent words */
.hero-copy h1 .accent {
  background: linear-gradient(90deg, var(--saffron), #ffe0b8, var(--saffron));
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: shimmer 4.5s linear infinite;
}
@keyframes shimmer { to { background-position: 200% center; } }

/* Glossy sheen sweep on primary buttons */
.btn-primary, .btn-green { position: relative; overflow: hidden; }
.btn-primary::after, .btn-green::after {
  content: "";
  position: absolute;
  top: 0; left: -130%;
  width: 60%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .45), transparent);
  transform: skewX(-20deg);
  transition: left .6s var(--ease);
}
.btn-primary:hover::after, .btn-green:hover::after { left: 140%; }

/* Floating blobs on CTA strips for depth */
.cta-strip::before { animation: floaty 8s ease-in-out infinite; }
.cta-strip::after {
  content: "";
  position: absolute;
  left: -70px; bottom: -90px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: rgba(19, 136, 8, .16);
  animation: floaty 11s ease-in-out infinite reverse;
  pointer-events: none;
}

/* Card lift gains a shadow-follow feel via 3D tilt (JS-driven) */
.card, .property-card, .quote, .post { transform-style: preserve-3d; will-change: transform; }

/* Nav link underline already animates; give the mobile drawer links a slide-in */
@keyframes drawerIn { from { opacity: 0; transform: translateX(16px); } to { opacity: 1; transform: none; } }
@media (max-width: 900px) {
  body.nav-open .site-nav a { animation: drawerIn .4s var(--ease) both; }
  body.nav-open .site-nav a:nth-child(2) { animation-delay: .05s; }
  body.nav-open .site-nav a:nth-child(3) { animation-delay: .10s; }
  body.nav-open .site-nav a:nth-child(4) { animation-delay: .15s; }
  body.nav-open .site-nav a:nth-child(5) { animation-delay: .20s; }
  body.nav-open .site-nav a:nth-child(6) { animation-delay: .25s; }
}

/* Honour reduced-motion: freeze the showy stuff, keep the hero readable */
@media (prefers-reduced-motion: reduce) {
  .hero__img { transform: scale(1); animation: none; }
  .hero-copy h1 .accent { animation: none; background: none; -webkit-text-fill-color: var(--orange); color: var(--orange); }
  .scroll-progress { display: none; }
  .cta-strip::after { animation: none; }
  .coin-cursor { display: none !important; }
}

/* ============================================================
   BATCH UPDATES — logo, footer map, coin cursor, testimonials,
   services layout, phone/country field
   ============================================================ */

/* Brand responsiveness */
@media (max-width: 640px) {
  .brand__logo { height: 44px; }
  .brand__name { font-size: 15px; letter-spacing: 1px; }
}
@media (max-width: 400px) { .brand__name { display: none; } }

/* Footer clickable map */
.footer-map {
  display: block; position: relative;
  border-radius: 10px; overflow: hidden;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .28);
  margin: 2px 0;
}
.footer-map img { width: 100%; height: 116px; object-fit: cover; display: block; transition: transform .45s var(--ease); }
.footer-map:hover img { transform: scale(1.06); }
.footer-map__pill {
  position: absolute; left: 8px; bottom: 8px;
  display: inline-flex; align-items: center; gap: 6px;
  background: #fff; color: #0e3d24;
  font-size: 11px; font-weight: 600;
  padding: 6px 11px; border-radius: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .25);
}
.footer-map__pill svg { width: 13px; height: 13px; fill: var(--orange); }

/* Single coin that trails the cursor smoothly (no flashing) */
.coin-cursor {
  position: fixed;
  top: 0; left: 0;
  z-index: 92;
  width: 40px; height: 40px;
  margin: -20px 0 0 -20px;      /* centre on the pointer */
  pointer-events: none;
  opacity: 0;
  transition: opacity .35s ease;
  will-change: transform;
}
.coin-cursor.on { opacity: 1; }
.coin-cursor svg { display: block; width: 100%; height: 100%; animation: coinSpin 3s linear infinite; filter: drop-shadow(0 3px 5px rgba(0,0,0,.25)); }
@keyframes coinSpin { to { transform: rotateY(360deg); } }

/* Testimonials: compact cards sized to content, name sits right under the review */
.testimonials { align-items: start; }
.quote { display: flex; flex-direction: column; padding: 22px 22px 20px; }
.quote .stars { margin-bottom: 2px; font-size: 12px; }
.quote__mark { font-size: 34px; line-height: .3; margin-bottom: 0; }
.quote p { margin: 2px 0 14px; font-size: 13px; line-height: 1.5; }
.quote__person { margin-top: 0; align-items: center; gap: 10px; }
.quote__person img { width: 38px; height: 38px; }
.quote__name { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-size: 13.5px; }
.quote__role { white-space: nowrap; font-size: 11.5px; }
.quote:hover .quote__mark { transform: scale(1.15); }
.quote__mark { transition: transform .3s var(--ease); }

/* Services: the media fills the row height set by the text column, so the
   image starts level with the headline and ends where the copy ends */
.service-row { align-items: stretch; }
.service-row__media { position: relative; align-self: stretch; min-height: 300px; }
.service-row__media img { position: absolute; inset: 0; width: 100%; height: 100%; aspect-ratio: auto; object-fit: cover; }
.service-row__text { align-self: stretch; display: flex; flex-direction: column; justify-content: flex-start; }
.service-head { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.service-head .service-icon { margin-bottom: 0; flex-shrink: 0; }
.service-head h2 { margin: 0; }
@media (max-width: 900px) {
  .service-row__media { height: 240px; min-height: 0; align-self: auto; }
}

/* Phone field with country-code select */
.phone-group { display: flex; gap: 8px; }
.phone-group select { flex: 0 0 170px; }
.phone-group input { flex: 1 1 auto; min-width: 0; }
@media (max-width: 480px) { .phone-group { flex-direction: column; } .phone-group select { flex: 1 1 auto; } }
.field .err-msg { display: block; color: #c0392b; font-size: 11.5px; margin-top: 5px; min-height: 14px; }
input.invalid, select.invalid, textarea.invalid { border-color: #c0392b !important; box-shadow: 0 0 0 3px rgba(192, 57, 43, .12); }

/* ============================================================
   HEADER RIGHT GROUP + THEME TOGGLE
   ============================================================ */
.header-right { display: flex; align-items: center; gap: 18px; }
.theme-toggle {
  width: 40px; height: 40px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid rgba(20, 36, 63, .18);
  background: rgba(255, 255, 255, .5);
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background .2s var(--ease), transform .2s var(--ease), color .2s var(--ease);
}
.theme-toggle:hover { transform: translateY(-2px); background: rgba(255, 255, 255, .9); }
.theme-toggle svg { width: 19px; height: 19px; fill: currentColor; }
.theme-toggle .sun { display: none; }
.theme-toggle .moon { display: block; }

/* ============================================================
   COUNTRY MARQUEE
   ============================================================ */
.country-strip {
  background: linear-gradient(180deg, #ffffff, var(--bg-soft));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
  overflow: hidden;
}
.country-strip__mask {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.country-track { display: flex; gap: 44px; width: max-content; animation: marquee 34s linear infinite; }
.country-strip:hover .country-track { animation-play-state: paused; }
.country { display: flex; flex-direction: column; align-items: center; gap: 9px; flex-shrink: 0; }
.country__flag {
  width: 58px; height: 58px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff;
  box-shadow: 0 5px 14px rgba(20, 36, 63, .18);
  background: #eee;
}
.country__name { font-size: 12.5px; font-weight: 600; color: var(--navy); letter-spacing: .3px; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (max-width: 620px) { .country__flag { width: 48px; height: 48px; } .country-track { gap: 32px; } }

/* CTA paragraph width tuning */
.cta-strip p.narrow { max-width: 470px; }

/* ============================================================
   DARK MODE  (light is the default; toggled via [data-theme="dark"])
   ============================================================ */
html[data-theme="dark"] {
  --heading: #5fce88;
  --green: #27b054;
  --green-dark: #1f9247;
  --body: #a8b2ac;
  --ink: #eef2ee;
  --line: #29332d;
  --bg-soft: #101613;
  --navy: #e8edf4;              /* nav text becomes light in dark mode */
  color-scheme: dark;
}
html[data-theme="dark"] body { background: #0d1310; color: var(--body); }
html[data-theme="dark"] .site-header {
  background: linear-gradient(180deg, rgba(17, 24, 20, .96), rgba(17, 24, 20, .82));
  box-shadow: 0 1px 0 rgba(255, 255, 255, .06);
}
html[data-theme="dark"] .site-header.scrolled { background: rgba(14, 20, 17, .98); }
html[data-theme="dark"] .theme-toggle { background: rgba(255, 255, 255, .08); border-color: rgba(255, 255, 255, .16); }
html[data-theme="dark"] .theme-toggle .moon { display: none; }
html[data-theme="dark"] .theme-toggle .sun { display: block; }
html[data-theme="dark"] .card,
html[data-theme="dark"] .quote,
html[data-theme="dark"] .property-card,
html[data-theme="dark"] .post,
html[data-theme="dark"] .widget,
html[data-theme="dark"] .country-strip { background: #151c18; border-color: #26302a; }
html[data-theme="dark"] .country-strip { background: linear-gradient(180deg, #121814, #0d1310); }
html[data-theme="dark"] .section--soft { background: #0f1512; }
html[data-theme="dark"] .quote p { color: #c3cdc7; }
html[data-theme="dark"] .article p,
html[data-theme="dark"] .article ul li,
html[data-theme="dark"] .article ol li { color: #b6c0ba; }
html[data-theme="dark"] .service-row p,
html[data-theme="dark"] .service-row ul { color: var(--body); }
html[data-theme="dark"] .field input,
html[data-theme="dark"] .field textarea,
html[data-theme="dark"] .field select,
html[data-theme="dark"] .subscribe input { background: #0f1512; color: var(--ink); border-color: #29332d; }
html[data-theme="dark"] .tags a { background: #101613; border-color: #29332d; color: var(--body); }
html[data-theme="dark"] .mobile-safe, html[data-theme="dark"] .site-nav { }
html[data-theme="dark"] .nav-backdrop { background: rgba(0, 0, 0, .6); }
@media (max-width: 900px) {
  html[data-theme="dark"] .site-nav { background: #121814; }
  html[data-theme="dark"] .site-nav a, html[data-theme="dark"] .site-header.scrolled .site-nav a { color: #e8edf4; border-bottom-color: #26302a; }
}

/* ============================================================
   AESTHETIC / MOTION POLISH
   ============================================================ */
/* Slowly drifting gradient on the CTA + stats bands */
.cta-strip { background-size: 180% 180%; animation: bandDrift 16s ease-in-out infinite; }
@keyframes bandDrift { 0%, 100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }

/* Cards: a tricolour accent line grows in, icon springs, on hover */
.card { position: relative; overflow: hidden; }
.card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--saffron), var(--green));
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s var(--ease);
}
.card:hover::before { transform: scaleX(1); }
.card__icon { transition: background .3s var(--ease), color .3s var(--ease), transform .35s cubic-bezier(.34, 1.56, .64, 1); }
.card:hover .card__icon { transform: rotate(-8deg) scale(1.08); }

/* Property cards darken slightly on hover for depth */
.property-card__media { position: relative; }
.property-card__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(10, 46, 27, .42), transparent 55%);
  opacity: 0; transition: opacity .4s var(--ease); pointer-events: none;
}
.property-card:hover .property-card__media::after { opacity: 1; }

/* Warm glow at the top of light "soft" sections */
.section--soft { background: radial-gradient(1100px 380px at 50% -12%, rgba(245, 130, 31, .06), transparent 70%), var(--bg-soft); }

/* Icons gain a springy hover on info + service rows */
.info-card__icon { transition: transform .3s var(--ease), background .3s var(--ease); }
.info-card:hover .info-card__icon { transform: translateY(-3px) scale(1.06); }
.service-icon { transition: transform .35s cubic-bezier(.34, 1.56, .64, 1), box-shadow .3s var(--ease); }
.service-row:hover .service-icon { transform: translateY(-4px) rotate(-6deg); }

@media (prefers-reduced-motion: reduce) {
  .cta-strip { animation: none; }
}

/* ============================================================
   GUJARATI THEME ADDITIONS
   ============================================================ */
/* Cream tuning for pre-existing white surfaces */
.country-strip { background: linear-gradient(180deg, var(--cream), var(--bg-soft)); }
.card, .quote, .property-card, .post { background: #fffdf8; }
.field input, .field textarea, .field select, .subscribe input { background: #fffdf8; }

/* Image-backed band: photo fills the section, soft white fade keeps text
   readable, slight blur + overscale hides upscaling artifacts */
.band-img { position: relative; overflow: hidden; }
.band-img__bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%;
  filter: blur(2px) saturate(1.05);
  transform: scale(1.06);
}
.band-img__fade {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(252, 247, 236, .94), rgba(252, 247, 236, .72) 45%, rgba(252, 247, 236, .92));
}
.band-img__fade--strong { background: rgba(252, 247, 236, .88); }
.band-img > .band-inner, .band-img > .container, .band-img > .hero__inner { position: relative; z-index: 2; }
.band-inner { padding: 64px 6vw; }

/* Big clear caption used inside image bands */
.band-title { text-align: center; margin-bottom: 36px; }
.band-title .gu {
  display: block;
  font-family: 'Noto Sans Gujarati', 'Poppins', sans-serif;
  font-size: clamp(24px, 3.4vw, 34px);
  font-weight: 700;
  color: var(--orange);
  text-shadow: 0 1px 0 #fff;
}
.band-title .en { font-size: 16px; color: #3f3f3f; font-weight: 600; letter-spacing: .4px; }

/* Stats + CTA text flip to dark when sitting on a light image band */
.band-img .stat__num { color: var(--heading); }
.band-img .stat__num .accent { color: var(--orange); }
.band-img .stat__label { color: #4f4f4f; }
.cta-strip.on-img { background: none; animation: none; }
.cta-strip.on-img::before, .cta-strip.on-img::after { display: none; }
.cta-strip.on-img h2 { color: #16391f; }
.cta-strip.on-img p { color: #4a4a4a; }
.cta-strip.on-img .btn-ghost-light { background: var(--green); border-color: var(--green); color: #fff; }
.cta-strip.on-img .btn-ghost-light:hover { background: var(--green-dark); }

/* Dark mode variants */
html[data-theme="dark"] .band-img__fade { background: linear-gradient(180deg, rgba(10, 15, 12, .93), rgba(10, 15, 12, .74) 45%, rgba(10, 15, 12, .92)); }
html[data-theme="dark"] .band-img__fade--strong { background: rgba(10, 15, 12, .88); }
html[data-theme="dark"] .band-img .stat__label { color: #a8b2ac; }
html[data-theme="dark"] .cta-strip.on-img h2 { color: #eef2ee; }
html[data-theme="dark"] .cta-strip.on-img p { color: #a8b2ac; }
html[data-theme="dark"] .band-title .gu { text-shadow: none; }
html[data-theme="dark"] .band-title .en { color: #c3cdc7; }

/* ============================================================
   COMPLIANCE: notice bar, legal footer, price chips
   ============================================================ */
/* Thin dismissible notice bar pinned above the fixed header */
.notice-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 70;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--navy);
  color: #e9eef6;
  font-size: 11.5px; line-height: 1.45;
  padding: 6px 40px 6px 14px;
  text-align: center;
  min-height: 30px;
}
.notice-bar__close {
  position: absolute; right: 8px; top: 50%; transform: translateY(-50%);
  width: 24px; height: 24px;
  background: rgba(255, 255, 255, .12);
  border: none; border-radius: 50%;
  color: #fff; font-size: 15px; line-height: 1; cursor: pointer;
}
.notice-bar__close:hover { background: rgba(255, 255, 255, .25); }
/* Shift the fixed header + heroes down while the bar is visible */
body.has-notice .site-header { top: 30px; }
body.has-notice .hero { padding-top: calc(var(--header-h) + 30px); }
body.has-notice .scroll-progress { top: 30px; }
html[data-theme="dark"] .notice-bar { background: #0b1220; }
@media (max-width: 620px) {
  .notice-bar { font-size: 10.5px; min-height: 40px; }
  body.has-notice .site-header { top: 40px; }
  body.has-notice .hero { padding-top: calc(var(--header-h) + 40px); }
  body.has-notice .scroll-progress { top: 40px; }
}

/* Footer: Quick Links | Our Services | Legal | Get in Touch (subscribe removed) */
.footer-top { grid-template-columns: 0.9fr 1.3fr 1.3fr 1.2fr; }
@media (max-width: 1024px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .footer-top { grid-template-columns: 1fr; } }

/* Visible service pricing chip */
.price-chip {
  display: inline-flex; align-items: baseline; gap: 7px;
  background: rgba(19, 136, 8, .09);
  border: 1px solid rgba(19, 136, 8, .25);
  color: var(--heading);
  font-weight: 700; font-size: 14px;
  padding: 7px 14px; border-radius: 40px;
  margin: 2px 0 12px;
}
.price-chip small { font-weight: 500; font-size: 11px; color: var(--body); }
html[data-theme="dark"] .price-chip { background: rgba(39, 176, 84, .12); border-color: rgba(39, 176, 84, .3); }

/* Payment consent checkbox */
.consent-row { display: flex; align-items: flex-start; gap: 9px; font-size: 12.5px; color: var(--body); cursor: pointer; line-height: 1.5; }
.consent-row input { width: 16px; height: 16px; margin-top: 2px; flex-shrink: 0; accent-color: var(--green); }
.consent-row a { color: var(--orange); font-weight: 600; }
.btn[disabled] { opacity: .5; cursor: not-allowed; pointer-events: none; }

/* ============================================================
   FLOATING ENQUIRY WIDGET  (side tab + Gujarati-styled modal)
   ============================================================ */
.enquiry-tab {
  position: fixed;
  right: 0; top: 50%;
  transform: translateY(-50%);
  z-index: 86;
  display: flex; align-items: center; gap: 8px;
  writing-mode: vertical-rl;
  background: linear-gradient(180deg, var(--saffron), var(--orange));
  color: #fff;
  font-weight: 700; font-size: 13px; letter-spacing: 1px;
  padding: 16px 8px;
  border-radius: 10px 0 0 10px;
  box-shadow: -4px 4px 18px rgba(140, 80, 10, .3);
  cursor: pointer; border: none;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
  font-family: inherit;
}
.enquiry-tab:hover { transform: translateY(-50%) translateX(-3px); box-shadow: -8px 6px 24px rgba(140, 80, 10, .4); }
.enquiry-tab svg { width: 18px; height: 18px; fill: #fff; transform: rotate(90deg); }

.enquiry-overlay {
  position: fixed; inset: 0;
  z-index: 210;
  background: rgba(20, 15, 5, .55);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  display: none;
  align-items: center; justify-content: center;
  padding: 5vw;
  opacity: 0; transition: opacity .3s var(--ease);
}
.enquiry-overlay.open { display: flex; opacity: 1; }
.enquiry-modal {
  position: relative;
  width: 100%; max-width: 460px;
  max-height: 90vh;
  display: flex; flex-direction: column;
  overflow: hidden;                 /* keeps ALL four corners crisply rounded */
  background: var(--cream);
  border-radius: 18px;
  box-shadow: 0 30px 70px rgba(20, 15, 5, .45);
  transform: translateY(16px) scale(.98);
  transition: transform .3s var(--ease);
}
/* Inner scroll area — the scrollbar lives here, inside the rounded frame */
.enquiry-body {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  padding: 30px 26px 26px;
}
.enquiry-overlay.open .enquiry-modal { transform: none; }
.enquiry-modal::before {   /* toran strip along the top */
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 14px;
  border-radius: 18px 18px 0 0;
  background: url("images/toran.svg") repeat-x top left;
  background-size: auto 14px;
}
.enquiry-close {
  position: absolute; top: 14px; right: 14px;
  width: 32px; height: 32px; border-radius: 50%;
  border: none; background: rgba(0, 0, 0, .06); color: #333;
  font-size: 20px; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s var(--ease);
}
.enquiry-close:hover { background: rgba(0, 0, 0, .12); }
.enquiry-modal h3 { font-size: 20px; color: var(--heading); margin: 4px 0 2px; }
.enquiry-modal .gu { font-family: 'Noto Sans Gujarati', 'Poppins', sans-serif; color: var(--orange); font-size: 15px; font-weight: 600; display: block; }
.enquiry-modal .sub { font-size: 12.5px; color: var(--body); margin: 3px 0 13px; }
.enquiry-modal .form { gap: 10px; }
.enquiry-modal .field input, .enquiry-modal .field select, .enquiry-modal .field textarea { padding: 10px 12px; }
.enquiry-check { display: flex; align-items: center; gap: 8px; font-size: 12.5px; color: var(--body); cursor: pointer; }
.enquiry-check input { width: 16px; height: 16px; accent-color: var(--green); }

html[data-theme="dark"] .enquiry-modal { background: #151c18; }
html[data-theme="dark"] .enquiry-close { background: rgba(255, 255, 255, .1); color: #eee; }
html[data-theme="dark"] .enquiry-check { color: #a8b2ac; }

/* Small teaser bubble that appears beside the Enquire tab after 20s */
.enquiry-teaser {
  position: fixed;
  right: 62px; top: 50%;
  transform: translateY(-50%);
  z-index: 85;
  max-width: 235px;
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  padding: 12px 14px;
  cursor: pointer;
  animation: teaserIn .45s var(--ease) both;
}
@keyframes teaserIn {
  from { opacity: 0; transform: translateY(-50%) translateX(18px); }
  to { opacity: 1; transform: translateY(-50%) translateX(0); }
}
.enquiry-teaser .t-txt { font-size: 12px; color: #555; line-height: 1.45; display: block; }
.enquiry-teaser .t-txt strong { display: block; font-size: 13.5px; color: var(--heading); margin-bottom: 2px; }
.enquiry-teaser .t-txt .gu { color: var(--orange); }
.enquiry-teaser .t-close {
  position: absolute; top: -9px; left: -9px;
  width: 22px; height: 22px;
  border: none; border-radius: 50%;
  background: var(--navy); color: #fff;
  font-size: 13px; line-height: 1; cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, .3);
}
html[data-theme="dark"] .enquiry-teaser { background: #151c18; }
html[data-theme="dark"] .enquiry-teaser .t-txt { color: #a8b2ac; }
@media (max-width: 620px) { .enquiry-teaser { right: 52px; max-width: 200px; } }

@media (max-width: 620px) {
  .enquiry-tab { font-size: 11px; padding: 12px 7px; }
  .enquiry-body { padding: 26px 20px 22px; }
}

/* Full-width culture photo bands between sections */
.photo-band { position: relative; overflow: hidden; height: clamp(220px, 34vw, 360px); }
.photo-band img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 6s var(--ease); }
.photo-band:hover img { transform: scale(1.06); }
.photo-band__cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 40px 6vw 18px;
  background: linear-gradient(0deg, rgba(20, 15, 5, .62), transparent);
  color: #fff; font-size: 13px; font-weight: 600; letter-spacing: 1px;
}
.photo-band__cap .gu { color: #ffd9b0; margin-right: 10px; font-size: 15px; }

/* Diagonal two-image composite (PAN + OCI) */
.diagonal-duo { position: relative; width: 100%; height: 100%; min-height: 300px; }
.diagonal-duo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.diagonal-duo img:first-child { clip-path: polygon(0 0, 100% 0, 0 100%); }
.diagonal-duo img:last-child { clip-path: polygon(100% 0, 100% 100%, 0 100%); }
.diagonal-duo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(45deg, transparent calc(50% - 3px), var(--cream) calc(50% - 3px), var(--cream) calc(50% + 3px), transparent calc(50% + 3px));
  pointer-events: none;
}

/* Header account buttons */
.btn-auth {
  font-size: 12px; font-weight: 600;
  color: var(--navy);
  border: 1.5px solid rgba(20, 36, 63, .3);
  padding: 8px 16px; border-radius: 40px;
  transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
  white-space: nowrap;
}
.btn-auth:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.btn-pay {
  font-size: 12px; font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--saffron), var(--orange));
  padding: 9px 18px; border-radius: 40px;
  box-shadow: 0 6px 16px rgba(245, 130, 31, .35);
  white-space: nowrap;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.btn-pay:hover { transform: translateY(-2px); box-shadow: 0 10px 22px rgba(245, 130, 31, .45); }

/* Auth & payment pages */
.auth-wrap { max-width: 460px; margin: 0 auto; }
.auth-card {
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 34px 32px;
  box-shadow: var(--shadow-md);
}
.auth-tabs { display: flex; gap: 6px; background: var(--bg-soft); border-radius: 40px; padding: 5px; margin-bottom: 26px; }
.auth-tabs button {
  flex: 1; border: none; background: transparent; cursor: pointer;
  font-family: inherit; font-size: 13px; font-weight: 600; color: var(--body);
  padding: 10px; border-radius: 40px;
  transition: background .25s var(--ease), color .25s var(--ease);
}
.auth-tabs button.active { background: #fffdf8; color: var(--heading); box-shadow: var(--shadow-sm); }
.btn-social {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; padding: 12px;
  border: 1px solid var(--line); border-radius: 8px;
  background: #fffdf8; cursor: pointer;
  font-family: inherit; font-size: 13.5px; font-weight: 600; color: #333;
  transition: background .2s var(--ease), transform .2s var(--ease), box-shadow .2s var(--ease);
  margin-bottom: 10px;
}
.btn-social:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn-social svg { width: 18px; height: 18px; }
.btn-social.facebook { background: #1877f2; border-color: #1877f2; color: #fff; }
.auth-or { display: flex; align-items: center; gap: 12px; color: var(--body); font-size: 12px; margin: 18px 0; }
.auth-or::before, .auth-or::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.auth-foot { font-size: 12.5px; color: var(--body); text-align: center; margin-top: 16px; }
.auth-foot a { color: var(--orange); font-weight: 600; }

/* Dark mode: hide wallpaper, darken sheet + new components */
html[data-theme="dark"] body { background: #0a0f0c; }
html[data-theme="dark"] main { background: #0d1310; box-shadow: none; }
html[data-theme="dark"] .site-header { background: linear-gradient(180deg, rgba(17, 24, 20, .97), rgba(17, 24, 20, .86)); }
html[data-theme="dark"] .hero--page { background: radial-gradient(700px 220px at 85% 20%, rgba(245, 130, 31, .12), transparent 70%), linear-gradient(115deg, #131a15, #0f1512); }
html[data-theme="dark"] .hero--page .hero__title { color: #eef2ee; }
html[data-theme="dark"] .hero--page .hero__crumb { color: #a8b2ac; }
html[data-theme="dark"] .card, html[data-theme="dark"] .quote, html[data-theme="dark"] .property-card,
html[data-theme="dark"] .post, html[data-theme="dark"] .auth-card, html[data-theme="dark"] .btn-social:not(.facebook) { background: #151c18; color: var(--body); }
html[data-theme="dark"] .field input, html[data-theme="dark"] .field textarea,
html[data-theme="dark"] .field select, html[data-theme="dark"] .subscribe input { background: #0f1512; }
html[data-theme="dark"] .auth-tabs { background: #0f1512; }
html[data-theme="dark"] .auth-tabs button.active { background: #1a231e; color: var(--heading); }
html[data-theme="dark"] .btn-auth { color: #e8edf4; border-color: rgba(232, 237, 244, .3); }
html[data-theme="dark"] .btn-auth:hover { background: #e8edf4; color: #14243f; }
html[data-theme="dark"] .diagonal-duo::after {
  background: linear-gradient(45deg, transparent calc(50% - 3px), #0d1310 calc(50% - 3px), #0d1310 calc(50% + 3px), transparent calc(50% + 3px));
}

@media (max-width: 900px) {
  .header-right .btn-pay, .header-right .btn-auth { display: none; }
}
