/* =========================================
   GODREJ ARAVYA ESTATE - PREMIUM LP THEME
   Optimized for performance (light animations)
   Pure CSS, no Bootstrap dependencies
========================================= */

/* Root + Base ------------------------------------------------------ */

:root {
  --bg-body: #05060a;
  --bg-elevated: #11131c;
  --bg-soft: #191c26;
  --accent-gold: #d4af37;
  --accent-gold-soft: #f1d77a;
  --text-main: #f8f8fb;
  --text-muted: #a5a8b5;
  --text-soft: #fdfdff;
  --border-subtle: rgba(255, 255, 255, 0.06);
  --danger: #ff6b6b;

  --radius-lg: 1.25rem;
  --radius-md: 0.75rem;
  --radius-sm: 0.5rem;

  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.8);

  --transition-fast: 0.2s ease;
  --transition-med: 0.3s ease;

  --header-height: 76px;
  --container-max: 1200px;
}



/* === FIX Lighthouse Deprecated API: H1UserAgentFontSizeInSection === */
h1, h2, h3, h4, h5, h6 {
  all: unset;
  display: block;
  font-weight: 600;
  line-height: 1.25;
}
 


/* Explicit heading sizes */
h1 { font-size: clamp(2.4rem, 4.5vw, 3.4rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }
h5 { font-size: 1.05rem; }
h6 { font-size: 0.95rem; }

/* Ensure Playfair headings still keep style */
.luxury-heading {
  font-family: "Playfair Display", serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background: #05060a;
  color: var(--text-main);
  min-height: 100vh;
  padding-top: var(--header-height);
  overflow-x: hidden;
}

/* Scrollbar */

::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #080910;
}
::-webkit-scrollbar-thumb {
  background: #2a2d3b;
  border-radius: 4px;
}

/* Helpers ----------------------------------------------------------- */

.container-xl {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2.2rem;
}

.luxury-heading {
  font-family: "Playfair Display", serif;
}

.text-center {
  text-align: center;
}

.lead-text {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Section blocks use content-visibility for performance */
.section-dark {
  padding: 3rem 0;
  background: #05060a;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  content-visibility: auto;
  contain-intrinsic-size: 600px;
}

.section-inner {
  display: flex;
  flex-direction: column;
  gap: 0rem;
}

.section-heading {
  margin-bottom: 1.5rem;
}

.section-heading.text-center {
  margin-bottom: 2.25rem;
}

.styled-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}
.styled-list li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.80rem;
  font-size: 1rem;
  color: var(--text-muted);
}
.styled-list li::before {
  content: "●";
  position: absolute;
  left: 0;
  top: 0.1rem;
  font-size: 0.6rem;
  color: var(--accent-gold);
}

/* Buttons ----------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.6rem 1.6rem;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid transparent;
  transition:
    transform var(--transition-fast),
    opacity var(--transition-med),
    background-color var(--transition-med),
    border-color var(--transition-med),
    color var(--transition-med);
  text-decoration: none;
  outline: none;
}

.btn-gold {
  background: linear-gradient(120deg, #f7e39d, var(--accent-gold));
  color: #14151c;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.6);
}
.btn-gold:hover {
  transform: translateY(-1px);
  background: linear-gradient(120deg, var(--accent-gold-soft), var(--accent-gold));
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--text-main);
  background: transparent;
}
.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.6);
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-main);
  padding: 0.4rem 0.75rem;
  font-size: 0.85rem;
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-full {
  width: 100%;
  margin-top: 0.3rem;
}

/* Header / Navbar --------------------------------------------------- */

.site-header {
  position: fixed;
  top: 0;
  inset-inline: 0;
  height: var(--header-height);
  display: flex;
  align-items: center;
  z-index: 1000;
  background: rgba(6, 7, 12, 0.97);
  border-bottom: 1px solid var(--border-subtle);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: 100%;
}

.navbar-brand {
  color: var(--text-main);
  font-weight: 600;
  font-size: 1.3rem;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  margin-right: auto;
}
.brand-highlight {
  color: var(--accent-gold);
}
.brand-sub {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-soft);
  margin-top: 0.15rem;
}

.navbar-collapse {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-left: auto;
}

.navbar-nav {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.6rem;
  margin: 0;
  padding: 0;
}

.nav-link {
  text-decoration: none;
  color: var(--text-soft);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 0.1rem;
}

/* GPU-safe underline using transform, not width */
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.25rem;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent-gold), var(--accent-gold-soft));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-fast);
}
.nav-link:hover {
  color: var(--text-main);
}
.nav-link:hover::after {
  transform: scaleX(1);
}

.nav-item-cta .btn-gold {
  padding-inline: 1.4rem;
  font-size: 0.9rem;
}

/* Navbar Toggler (Mobile) */

.navbar-toggler {
  display: none;
  flex-direction: column;
  gap: 0.2rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
}
.navbar-toggler-line {
  width: 20px;
  height: 2px;
  background: #ffffff;
  border-radius: 999px;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

/* Hero Section ------------------------------------------------------ */

.hero-section {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: stretch;
  padding: 3.5rem 0 4.5rem;
  background: #05060a;
  overflow: hidden;
  font-size: 16px;
  content-visibility: auto;
  contain-intrinsic-size: 800px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.55;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, .7), rgba(0, 0, 0, .3));
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}

.hero-text {
  max-width: 580px;
}

/* HERO TEXT PURE WHITE OVER BANNER */
.hero-tag,
.hero-title,
.hero-subtitle,
.hero-keypoints li {
  color: #ffffff;
}

.hero-tag {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  margin: 0 0 0.75rem;
}

.hero-title {
  font-size: clamp(2.3rem, 4vw, 3.1rem);
  margin: 0 0 0.5rem;
}

.hero-subtitle {
  margin: 0 0 1.2rem;
  font-size: 1rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.3rem;
}
.badge-pill {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 0.35rem 0.9rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-soft);
  background: rgba(12, 12, 18, 0.8);
}

.hero-keypoints {
  list-style: none;
  padding: 0;
  margin: 0 0 1.6rem;
}
.hero-keypoints li {
  display: flex;
  gap: 0.5rem;
  font-size: 0.95rem;
  margin-bottom: 0.3rem;
}
.hero-keypoints li::before {
  content: "▹";
  color: var(--accent-gold);
  margin-top: 0.05rem;
}

/* Hero Form --------------------------------------------------------- */

.hero-form-wrapper {
  display: flex;
  justify-content: flex-end;
}

.form-card {
  width: 100%;
  max-width: 380px;
  padding: 1.9rem 1.75rem;
  border-radius: var(--radius-lg);
  background: rgba(7, 8, 15, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow-soft);
}

.form-title {
  font-size: 1.4rem;
  margin: 0 0 0.4rem;
}
.form-subtitle {
  font-size: 0.85rem;
  margin: 0 0 1.2rem;
  color: var(--text-soft);
}

.form-group {
  margin-bottom: 0.75rem;
}
.form-label {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 0.35rem;
}

.form-control {
  width: 100%;
  border-radius: 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(4, 5, 10, 0.85);
  padding: 0.65rem 0.9rem;
  color: var(--text-main);
  font-size: 0.92rem;
  outline: none;
  transition:
    border-color var(--transition-fast),
    background-color var(--transition-fast),
    color var(--transition-fast);
}
.form-control::placeholder {
  color: rgba(255, 255, 255, 0.38);
}
.form-control:focus {
  border-color: var(--accent-gold);
  background: rgba(5, 6, 14, 0.98);
}

/* --- PHONE NUMBER ROW (Country Code + Input) --- */
.phone-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 0.6rem;
}

.country-select {
  height: 45px;
  border-radius: 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(4, 5, 10, 0.85);
  color: var(--text-main);
  padding: 0 0.6rem;
  font-size: 0.92rem;
  outline: none;
}
.country-select option {
  background: #10121b;
}

.phone-input {
  height: 45px;
}

/* Captcha */

.captcha-row {
  display: grid;
  grid-template-columns: 0.9fr 1.4fr;
  gap: 0.6rem;
  align-items: stretch;
}
.captcha-display {
  border-radius: 0.7rem;
  border: 1px dashed rgba(255, 255, 255, 0.26);
  background: repeating-linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.04),
    rgba(255, 255, 255, 0.04) 8px,
    rgba(255, 255, 255, 0.01) 8px,
    rgba(255, 255, 255, 0.01) 16px
  );
  font-family: "Courier New", monospace;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: line-through;
  user-select: none;
  height: 45px;
}

.captcha-input-wrap {
  display: flex;
  align-items: stretch;
}
.captcha-input-group {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.4rem;
  width: 100%;
}

/* ensure captcha input same height */
#captcha-input {
  height: 45px;
}

.captcha-error {
  margin-top: 0.25rem;
  font-size: 0.78rem;
  color: var(--danger);
}

.inquiry-message {
  margin-top: 0.75rem;
  font-size: 0.82rem;
  padding: 0.6rem 0.8rem;
  border-radius: 0.7rem;
  background: rgba(36, 166, 120, 0.14);
  color: #b8f6d5;
  border: 1px solid rgba(36, 166, 120, 0.5);
}

/* About / Two Column Layout ---------------------------------------- */

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
  content-visibility: auto;
  contain-intrinsic-size: 520px;
}

.about-content p {
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0 0 0.9rem;
}

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.9);
}
.img-cover {
  width: 100%;
  display: block;
  height: 100%;
  object-fit: cover;
}

/* NEW GALLERY GRID (No slider) ------------------------ */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.2rem;
  margin-top: 2rem;
  content-visibility: auto;
  contain-intrinsic-size: 400px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid rgba(255,255,255,0.08);
  cursor: pointer;
  transform: translateY(0);
  transition: transform .35s ease;
}

.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 38px rgba(0,0,0,0.5);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.gallery-item:hover img {
  transform: scale(1.12);
}

/* Popup Animation (opacity only) */
.gallery-modal {
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
}

.gallery-modal.active {
  opacity: 1;
  pointer-events: auto;
}

/* Location Map ------------------------------------------------------ */

.map-wrapper {
  margin-top: 1.5rem;
  border-radius: 1.1rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7);
  height: 500px;
}

/* Static Map Placeholder (Dark Luxury Style) */
.static-map-placeholder {
  position: relative;
  width: 100%;
  height: 420px;
  border-radius: 1.1rem;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  background: #0b0b0f;
}

.static-map-placeholder .static-map-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;       /* luxury dark look */
}

.load-map-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0.9rem 1.8rem;
  font-size: 1.05rem;
  font-weight: 600;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  background: #d4af37;
  color: #111217;
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.5);
  transition: transform .2s ease, box-shadow .2s ease;
}

/* Only scale, keep center fixed */
.load-map-btn:hover {
  transform: translate(-50%, -50%) scale(1.03);
  box-shadow: 0 14px 30px rgba(212, 175, 55, 0.7);
}




/* Dark luxury placeholder background */
.static-map-placeholder {
  width: 100%;
  height: 100%;
  background: url("images/location-placeholder.webp") center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Centered map button */
.load-map-btn {
  padding: 0.9rem 1.8rem;
  font-size: 1.05rem;
  font-weight: 600;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  background: #d4af37;
  color: #111217;
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.5);
  transition: transform .2s ease, box-shadow .2s ease;
}
.load-map-btn:hover {
  transform: scale(1.06);
  box-shadow: 0 14px 30px rgba(212, 175, 55, 0.7);
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  display: block;
}

/* FAQ / Accordion --------------------------------------------------- */

.accordion {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  content-visibility: auto;
  contain-intrinsic-size: 480px;
}

.accordion-item {
  border-radius: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(13, 14, 22, 0.9);
  overflow: hidden;
}

.accordion-button {
  width: 100%;
  text-align: left;
  padding: 0.85rem 1.1rem;
  background: transparent;
  border: none;
  color: var(--text-main);
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  cursor: pointer;
}
.accordion-button::after {
  content: "＋";
  position: absolute;
  right: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.1rem;
  color: var(--accent-gold);
}
.accordion-item.open .accordion-button::after {
  content: "－";
}

/* NO height animation (avoid layout jank) */
.accordion-body {
  display: none;
  padding: 0 1.1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.accordion-item.open .accordion-body {
  display: block;
  padding-bottom: 0.9rem;
}

/* Custom Enquiry Modal ---------------------------------------------- */

.custom-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(1, 1, 4, 0.82);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1200;
}

.modal-content-wrapper {
  width: 92%;
  max-width: 440px;
  border-radius: 1.35rem;
  padding: 2rem 1.75rem 1.75rem;
  background: #05060a;
  position: relative;
}

.close-modal {
  position: absolute;
  top: 0.7rem;
  right: 1rem;
  border: none;
  background: transparent;
  color: var(--text-main);
  font-size: 1.8rem;
  cursor: pointer;
}

/* Gallery Modal ----------------------------------------------------- */

.gallery-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-modal-inner {
  width: min(900px, 94%);
  border-radius: 1.1rem;
  overflow: hidden;
  position: relative;
  background: #020309;
  border: 1px solid rgba(255, 255, 255, 0.16);
}
.gallery-modal-inner img {
  max-height: 80vh;
  width: 100%;
  object-fit: cover;
}
.gallery-close {
  position: absolute;
  top: 0.6rem;
  right: 0.8rem;
  border: none;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 1.6rem;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  cursor: pointer;
}

/* Footer ------------------------------------------------------------ */

.site-footer {
  border-top: 1px solid var(--border-subtle);
  padding: 1.8rem 0 2.2rem;
  background: #05060a;
  content-visibility: auto;
  contain-intrinsic-size: 260px;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  align-items: center;
  justify-content: space-between;
}

.footer-title {
  margin: 0 0 0.35rem;
  font-size: 1.2rem;
}

.footer-note {
  font-size: 0.8rem;
  color: var(--text-soft);
  margin: 0;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-link {
  color: var(--text-muted);
  font-size: 0.85rem;
  text-decoration: none;
}
.footer-link:hover {
  color: var(--accent-gold);
}

.footer-divider {
  color: var(--text-soft);
}

/* Scroll to Top ------------------------- */

.scroll-top-btn {
  position: fixed;
  bottom: 1.8rem;
  right: 1.6rem;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: none;
  background: var(--accent-gold);
  color: #111217;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: 0 18px 40px rgba(212, 175, 55, 0.75);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition:
    opacity var(--transition-med),
    transform var(--transition-med);
  text-decoration: none;
  z-index: 900;
}
.scroll-top-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Floating Arrow Button (round enquiry shortcut) */
.floating-arrow-btn {
  position: fixed;
  bottom: 80px;
  right: 18px;
  width: 50px;
  height: 50px;
  background: #d4af37;
  color: #111217;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(212, 175, 55, 0.55);
  z-index: 9999;
  transition: transform 0.2s ease, opacity 0.2s ease;
  opacity: 0;
  pointer-events: none;
}
.floating-arrow-btn.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .floating-arrow-btn {
    bottom: 70px;
  }
}

/* Utilities --------------------------------------------------------- */

.d-none {
  display: none !important;
}

/* Responsive -------------------------------------------------------- */

@media (max-width: 991px) {
  .navbar-toggler {
    display: flex;
  }

  .navbar-collapse {
    position: absolute;
    inset-inline: 0;
    top: var(--header-height);
    background: rgba(6, 7, 12, 0.98);
    border-bottom: 1px solid var(--border-subtle);
    transform-origin: top;
    transform: scaleY(0.7);
    opacity: 0;
    pointer-events: none;
    transition:
      transform var(--transition-med),
      opacity var(--transition-med);
  }

  .navbar-collapse.open {
    transform: scaleY(1);
    opacity: 1;
    pointer-events: auto;
  }

  .navbar-nav {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.75rem 1.4rem 1.1rem;
    gap: 0.4rem;
  }

  .nav-item-cta {
    margin-top: 0.3rem;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 2.8rem;
  }
  .hero-section {
    padding: 3rem 0 3.6rem;
  }
  .hero-text {
    max-width: 100%;
  }
  .hero-form-wrapper {
    justify-content: flex-start;
  }
  .form-card {
    max-width: 100%;
  }

  .two-column {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-inner {
    align-items: flex-start;
  }

  .phone-row {
    grid-template-columns: 100px 1fr;
  }
}

@media (max-width: 575px) {
  body {
    padding-top: calc(var(--header-height) + 4px);
  }

  .hero-title {
    font-size: 2rem;
  }
  .hero-subtitle {
    font-size: 0.95rem;
  }
  .hero-badges {
    gap: 0.3rem;
  }
  .badge-pill {
    font-size: 0.7rem;
  }

  .form-card {
    padding: 1.5rem 1.4rem;
  }
  .captcha-row {
    grid-template-columns: 1fr;
  }

  .map-wrapper {
    min-height: 240px;
    height: auto;
  }

  .footer-inner {
    flex-direction: column;
  }
}
/* ===== FORCE ALL TEXT WHITE ===== */
body, body * {
  color: #ffffff !important;
}

p {
  text-align: justify;
  text-justify: inter-word;
}
