/* ============================================================
   Ashiana Amodh - Active Senior Living, Talegaon Pune
   Stylesheet : style.css
   Author     : Data Integrity System
   ============================================================ */

/* --- Local Fonts with font-display: swap --- */
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Lora';
  src: url('../fonts/Lora-Variable.woff2') format('woff2-variations');
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

/* --- Design Tokens (Brand: Ashiana Amodh) --- */
:root {
  --color-primary: #2e5d3a;       /* deep forest green */
  --color-primary-dark: #1f4128;
  --color-accent: #c0392b;        /* terracotta red */
  --color-gold: #b8924d;          /* warm gold */
  --color-cream: #f5f1e8;         /* parchment background */
  --color-sage: #d4dcc8;          /* soft sage */
  --color-dark: #1c2620;
  --color-text: #2a2a2a;
  --color-text-light: #5a5a5a;
  --color-white: #ffffff;
  --color-border: #e3ddd0;

  --ff-serif: 'Lora', Georgia, 'Times New Roman', serif;
  --ff-sans: 'Poppins', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  /* Senior-friendly font sizes (larger base) */
  --fs-base: 17px;
  --fs-sm: 15px;
  --fs-lg: 19px;
  --fs-h1: clamp(2rem, 5vw, 3.5rem);
  --fs-h2: clamp(1.6rem, 3.5vw, 2.5rem);
  --fs-h3: clamp(1.2rem, 2.5vw, 1.6rem);

  --shadow-sm: 0 2px 8px rgba(28, 38, 32, 0.08);
  --shadow-md: 0 6px 24px rgba(28, 38, 32, 0.12);
  --shadow-lg: 0 16px 48px rgba(28, 38, 32, 0.18);

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
}

/* --- Reset + Base --- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--ff-sans);
  font-size: var(--fs-base);
  line-height: 1.65;
  color: var(--color-text);
  background-color: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); text-decoration: none; transition: color .2s ease; }
a:hover, a:focus { color: var(--color-accent); }
:focus-visible { outline: 3px solid var(--color-gold); outline-offset: 2px; }

h1, h2, h3, h4 { font-family: var(--ff-serif); font-weight: 600; color: var(--color-primary-dark); line-height: 1.2; margin-top: 0; }
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }

.section-title {
  text-align: center;
  margin-bottom: 0.5rem;
}
.section-eyebrow {
  display: block;
  text-align: center;
  color: var(--color-accent);
  font-family: var(--ff-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.section-divider {
  width: 60px;
  height: 3px;
  background: var(--color-gold);
  margin: 1rem auto 3rem;
  border: 0;
}
.section { padding: 5rem 0; }
.section--alt { background-color: var(--color-cream); }
.section--dark { background-color: var(--color-primary-dark); color: var(--color-white); }
.section--dark h2, .section--dark h3 { color: var(--color-white); }

/* --- Buttons --- */
.btn-amodh {
  display: inline-block;
  padding: 14px 32px;
  font-family: var(--ff-sans);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all .25s ease;
  text-align: center;
}
.btn-primary-amodh {
  background-color: var(--color-accent);
  color: var(--color-white);
  border-color: var(--color-accent);
}
.btn-primary-amodh:hover, .btn-primary-amodh:focus {
  background-color: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-outline-amodh {
  background-color: transparent;
  color: var(--color-white);
  border-color: var(--color-white);
}
.btn-outline-amodh:hover, .btn-outline-amodh:focus {
  background-color: var(--color-white);
  color: var(--color-primary-dark);
}
.btn-gold {
  background-color: var(--color-gold);
  color: var(--color-white);
  border-color: var(--color-gold);
}
.btn-gold:hover, .btn-gold:focus {
  background-color: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  color: var(--color-white);
}

/* --- Top Bar --- */
.topbar {
  background-color: var(--color-primary-dark);
  color: var(--color-white);
  padding: 8px 0;
  font-size: 0.85rem;
}
.topbar a { color: var(--color-white); }
.topbar a:hover { color: var(--color-gold); }
.topbar .row { align-items: center; }

/* --- Navbar --- */
.navbar-amodh {
  background-color: var(--color-white);
  box-shadow: var(--shadow-sm);
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 1030;
}
.navbar-amodh .navbar-brand img {
  height: 60px;
  width: auto;
}
.navbar-amodh .nav-link {
  color: var(--color-primary-dark) !important;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 8px 14px !important;
  letter-spacing: 0.3px;
}
.navbar-amodh .nav-link:hover,
.navbar-amodh .nav-link:focus {
  color: var(--color-accent) !important;
}
.navbar-amodh .btn-amodh { padding: 10px 22px; font-size: 0.85rem; }

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--color-primary-dark);
}
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(28, 38, 32, 0.55) 0%, rgba(28, 38, 32, 0.75) 100%);
  z-index: 2;
}
.hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: var(--color-white);
  padding: 4rem 1rem;
  max-width: 980px;
}
.hero__eyebrow {
  display: inline-block;
  color: var(--color-gold);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 6px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  border: 1px solid var(--color-gold);
  padding: 6px 18px;
  border-radius: 30px;
}
.hero h1 {
  color: var(--color-white);
  font-family: var(--ff-serif);
  font-weight: 600;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 16px rgba(0,0,0,0.4);
}
.hero__tag {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: var(--color-sage);
  margin-bottom: 2rem;
}
.hero__location {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-white);
  font-size: 0.95rem;
  margin-bottom: 2rem;
  background: rgba(255,255,255,0.1);
  padding: 6px 18px;
  border-radius: 30px;
  backdrop-filter: blur(4px);
}
.hero__cta-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero__scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: var(--color-white);
  opacity: 0.7;
  animation: gentleBounce 2.5s ease-in-out infinite;
}
@keyframes gentleBounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, -8px); }
}

/* --- Trust strip --- */
.trust-strip {
  background-color: var(--color-cream);
  padding: 2rem 0;
  border-bottom: 1px solid var(--color-border);
}
.trust-strip__item {
  text-align: center;
  padding: 1rem 0.5rem;
}
.trust-strip__item .num {
  font-family: var(--ff-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
  display: block;
}
.trust-strip__item .lbl {
  font-size: 0.85rem;
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 0.5rem;
  display: block;
}

/* --- Overview --- */
.overview p {
  font-size: var(--fs-lg);
  line-height: 1.75;
  color: var(--color-text);
  margin-bottom: 1.25rem;
}
.overview .lead-line {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--color-primary);
  margin-bottom: 2rem;
  padding-left: 1.5rem;
  border-left: 3px solid var(--color-gold);
}

/* --- Highlights Grid --- */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.highlight-card {
  background-color: var(--color-white);
  padding: 2rem 1.25rem;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: transform .25s ease, box-shadow .25s ease;
}
.highlight-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.highlight-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  color: var(--color-primary);
}
.highlight-card__icon svg { width: 100%; height: 100%; fill: currentColor; }
.highlight-card h3 {
  font-size: 1.05rem;
  font-family: var(--ff-sans);
  font-weight: 600;
  color: var(--color-primary-dark);
  margin-bottom: 0.5rem;
}
.highlight-card p {
  font-size: 0.9rem;
  color: var(--color-text-light);
  margin: 0;
}

/* --- Senior Living Lifestyle --- */
.lifestyle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.lifestyle-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--color-white);
  transition: transform .3s ease;
}
.lifestyle-card:hover { transform: translateY(-4px); }
.lifestyle-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.lifestyle-card__body {
  padding: 1.25rem 1.5rem;
}
.lifestyle-card__body h3 {
  font-size: 1.15rem;
  font-family: var(--ff-sans);
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--color-primary-dark);
}
.lifestyle-card__body p {
  font-size: 0.95rem;
  color: var(--color-text-light);
  margin: 0;
}

/* --- Amenities Grid --- */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}
.amenity-tile {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  padding: 1.5rem 1rem;
  text-align: center;
  border-radius: var(--radius-md);
  transition: all .25s ease;
}
.amenity-tile:hover {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.amenity-tile:hover .amenity-tile__icon { color: var(--color-gold); }
.amenity-tile:hover p { color: var(--color-white); }
.amenity-tile__icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 0.75rem;
  color: var(--color-primary);
  transition: color .25s ease;
}
.amenity-tile__icon svg { width: 100%; height: 100%; fill: currentColor; }
.amenity-tile p {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text);
  transition: color .25s ease;
}

/* --- Floor Plans --- */
.floor-plan-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.floor-plan-card__header {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 1.25rem 1.5rem;
  text-align: center;
}
.floor-plan-card__header h3 {
  color: var(--color-white);
  font-size: 1.3rem;
  margin: 0;
  font-family: var(--ff-sans);
  font-weight: 600;
  letter-spacing: 1px;
}
.floor-plan-card__type {
  font-size: 0.85rem;
  opacity: 0.85;
  display: block;
  margin-top: 4px;
}
.floor-plan-card__body {
  padding: 1.75rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.floor-plan-card__specs {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}
.floor-plan-card__specs li {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px dashed var(--color-border);
  font-size: 0.95rem;
}
.floor-plan-card__specs li:last-child { border-bottom: none; }
.floor-plan-card__specs strong { color: var(--color-primary-dark); }
.floor-plan-card__cta {
  margin-top: auto;
  text-align: center;
}

/* --- Pricing Table --- */
.price-table-wrapper {
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  border: 1px solid var(--color-border);
}
.price-table {
  width: 100%;
  border-collapse: collapse;
}
.price-table th {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 16px 18px;
  text-align: left;
  font-weight: 600;
  font-family: var(--ff-sans);
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}
.price-table td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.95rem;
}
.price-table tr:last-child td { border-bottom: none; }
.price-table tr:hover td { background-color: var(--color-cream); }
.price-table .price-highlight {
  font-weight: 600;
  color: var(--color-accent);
  font-size: 1.05rem;
}
.price-note {
  font-size: 0.8rem;
  color: var(--color-text-light);
  text-align: center;
  margin-top: 1rem;
  font-style: italic;
}

/* --- Location --- */
.location-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.location-card {
  background: var(--color-white);
  padding: 1.75rem 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}
.location-card h3 {
  font-family: var(--ff-sans);
  font-size: 1.05rem;
  color: var(--color-primary);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.location-card h3 svg { width: 22px; height: 22px; fill: var(--color-accent); }
.location-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.location-card li {
  padding: 8px 0;
  border-bottom: 1px dashed var(--color-border);
  font-size: 0.93rem;
  color: var(--color-text-light);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.location-card li:last-child { border-bottom: none; }
.location-card li span:last-child {
  color: var(--color-primary);
  font-weight: 600;
  white-space: nowrap;
}

/* --- Gallery --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--color-cream);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(28, 38, 32, 0.75) 100%);
  opacity: 0;
  transition: opacity .3s ease;
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item__label {
  position: absolute;
  bottom: 14px;
  left: 16px;
  right: 16px;
  color: var(--color-white);
  font-size: 0.95rem;
  font-weight: 500;
  z-index: 2;
  opacity: 0;
  transform: translateY(8px);
  transition: all .3s ease;
}
.gallery-item:hover .gallery-item__label { opacity: 1; transform: translateY(0); }

/* --- Developer --- */
.developer-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 768px) {
  .developer-block { grid-template-columns: 1fr 1.2fr; }
}
.developer-block h2 { margin-bottom: 1rem; }

.developer-block p { font-size: 1.05rem; line-height: 1.7; color: var(--color-cream); margin-bottom: 1rem; }

/* --- FAQ --- */
.faq-list {
  max-width: 880px;
  margin: 2rem auto 0;
}
.faq-item {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: transparent;
  border: none;
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-family: var(--ff-sans);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-primary-dark);
  cursor: pointer;
}
.faq-question:hover { color: var(--color-accent); }
.faq-question .faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin-left: 1rem;
  transition: transform .3s ease;
  color: var(--color-accent);
}
.faq-item.is-open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq-item.is-open .faq-answer { max-height: 500px; }
.faq-answer__inner {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--color-text-light);
}

/* --- Contact / Lead Form --- */
.contact-form-wrap {
  max-width: 540px;
  margin: 0 auto;
  background: var(--color-white);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border-top: 4px solid var(--color-accent);
}
.contact-form-wrap h2 {
  text-align: center;
  margin-bottom: 0.5rem;
  font-size: 1.7rem;
}
.contact-form-wrap .subline {
  text-align: center;
  color: var(--color-text-light);
  margin-bottom: 1.75rem;
  font-size: 0.95rem;
}
.form-group-amodh { margin-bottom: 1rem; }
.form-control-amodh {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: var(--ff-sans);
  font-size: 1rem;
  background: var(--color-white);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.form-control-amodh:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(46, 93, 58, 0.12);
  outline: none;
}
.form-error {
  color: var(--color-accent);
  font-size: 0.85rem;
  margin-top: 4px;
  display: none;
}
.form-error.show { display: block; }
.consent-row {
  font-size: 0.78rem;
  color: var(--color-text-light);
  line-height: 1.55;
  margin-top: 0.75rem;
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.consent-row a { color: var(--color-primary); text-decoration: underline; }
.btn-submit-amodh {
  width: 100%;
  padding: 16px;
  background: var(--color-accent);
  color: var(--color-white);
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--ff-sans);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s ease;
}
.btn-submit-amodh:hover, .btn-submit-amodh:focus { background: var(--color-primary-dark); }
.btn-submit-amodh:disabled { opacity: 0.6; cursor: not-allowed; }

/* --- Footer --- */
.footer-amodh {
  background-color: var(--color-primary-dark);
  color: #c8d4cb;
  padding: 4rem 0 0;
  font-size: 0.92rem;
}
.footer-amodh h4 {
  color: var(--color-white);
  font-family: var(--ff-sans);
  font-size: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.footer-amodh a { color: #c8d4cb; }
.footer-amodh a:hover { color: var(--color-gold); }
.footer-amodh ul { list-style: none; padding: 0; margin: 0; }
.footer-amodh li { padding: 5px 0; }
.footer-amodh .logo-foot img { height: 70px; margin-bottom: 1rem; filter: brightness(0) invert(1); }
.footer-disclaimer {
  background: rgba(0,0,0,0.2);
  padding: 1.75rem 0;
  margin-top: 3rem;
  font-size: 0.8rem;
  line-height: 1.6;
  color: #9ba8a0;
}
.footer-bottom {
  text-align: center;
  padding: 1rem 0;
  background: rgba(0,0,0,0.35);
  font-size: 0.8rem;
}
.footer-rera {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
}
.footer-rera img {
  width: 90px;
  height: 90px;
  background: var(--color-white);
  padding: 6px;
  border-radius: 6px;
}
.footer-rera__text {
  font-size: 0.85rem;
  color: #c8d4cb;
}
.footer-rera__text strong { color: var(--color-white); display: block; }

/* --- Modal --- */
.amodh-modal-backdrop {
  position: fixed;
  inset: 0;
  background-color: rgba(28, 38, 32, 0.75);
  z-index: 1080;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.amodh-modal-backdrop.is-open { display: flex; }
.amodh-modal {
  background: var(--color-white);
  border-radius: var(--radius-md);
  max-width: 460px;
  width: 100%;
  padding: 2rem 1.75rem;
  position: relative;
  box-shadow: var(--shadow-lg);
  border-top: 5px solid var(--color-accent);
  max-height: 95vh;
  overflow-y: auto;
}
.amodh-modal__close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: transparent;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--color-text-light);
  line-height: 1;
  padding: 4px 8px;
}
.amodh-modal__close:hover { color: var(--color-accent); }
.amodh-modal__head { text-align: center; margin-bottom: 1.5rem; }
.amodh-modal__head img { height: 55px; margin: 0 auto 0.75rem; }
.amodh-modal__head h3 {
  font-size: 1.35rem;
  margin: 0.25rem 0;
}
.amodh-modal__head p {
  font-size: 0.88rem;
  color: var(--color-text-light);
  margin: 0;
}
.lead-magnets {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin: 1rem 0 1.5rem;
  flex-wrap: wrap;
}
.lead-magnets span {
  font-size: 0.78rem;
  color: var(--color-primary);
  background: var(--color-sage);
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 500;
}

/* --- Mobile Sticky CTA Bar --- */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-white);
  z-index: 1040;
  box-shadow: 0 -2px 12px rgba(0,0,0,0.12);
  border-top: 1px solid var(--color-border);
}
.mobile-cta-bar ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}
.mobile-cta-bar li {
  flex: 1;
  border-right: 1px solid var(--color-border);
}
.mobile-cta-bar li:last-child { border-right: none; }
.mobile-cta-bar a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 4px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: var(--color-primary-dark);
  text-decoration: none;
  min-height: 56px;
}
.mobile-cta-bar a svg {
  width: 22px;
  height: 22px;
  margin-bottom: 3px;
}
.mobile-cta-bar .cta-call { color: var(--color-primary); }
.mobile-cta-bar .cta-enquire {
  background: var(--color-accent);
  color: var(--color-white);
}
.mobile-cta-bar .cta-enquire:hover, .mobile-cta-bar .cta-enquire:focus { color: var(--color-white); }
.mobile-cta-bar .cta-whatsapp { color: #25D366; }

@media (max-width: 767.98px) {
  .mobile-cta-bar { display: block; }
  body { padding-bottom: 64px; }
  .section { padding: 3.5rem 0; }
  .navbar-amodh .btn-amodh { display: none; }
  .hero { min-height: 78vh; }
}

/* --- Scroll reveal (light, GPU friendly) --- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s ease, transform .7s ease;
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__scroll { animation: none; }
}

/* --- Thank You Page --- */
.thankyou-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  background: var(--color-cream);
  text-align: center;
}
.thankyou-card {
  max-width: 560px;
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 3rem 2rem;
  box-shadow: var(--shadow-md);
  border-top: 5px solid var(--color-primary);
}
.thankyou-card img { height: 70px; margin: 0 auto 1.5rem; }
.thankyou-card h1 {
  font-size: 2rem;
  color: var(--color-primary-dark);
  margin-bottom: 0.5rem;
}
.thankyou-card .check-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.5rem;
  background: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
}
.thankyou-card .check-icon svg { width: 40px; height: 40px; }
.thankyou-card p { color: var(--color-text-light); margin-bottom: 1.5rem; font-size: 1.05rem; }

/* --- Legal pages --- */
.legal-wrap {
  max-width: 940px;
  margin: 0 auto;
  padding: 3rem 1.5rem 5rem;
}
.legal-wrap h1 {
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--color-gold);
}
.legal-wrap h2 {
  font-size: 1.35rem;
  margin-top: 2.25rem;
  margin-bottom: 0.75rem;
  color: var(--color-primary);
}
.legal-wrap h3 { font-size: 1.1rem; margin-top: 1.5rem; }
.legal-wrap p, .legal-wrap li { font-size: 1rem; line-height: 1.7; color: var(--color-text); }
.legal-wrap ul { padding-left: 1.5rem; }
.legal-wrap li { margin-bottom: 0.5rem; }

/* --- Utility --- */
.text-gold { color: var(--color-gold) !important; }
.bg-primary-amodh { background-color: var(--color-primary) !important; }
.mt-section { margin-top: 5rem; }

/* --- Honeypot (anti-spam) --- */
.hp-field {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

/* --- Skip link for accessibility --- */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--color-primary-dark);
  color: var(--color-white);
  padding: 10px 16px;
  z-index: 1100;
  text-decoration: none;
}
.skip-link:focus { top: 0; color: var(--color-white); }
