/* ==========================================================================
   Mahindra Lifespaces Sadahalli — Marketing Microsite
   Palette: Mahindra red + deep charcoal + warm cream + sustainable green
   Type: Inter (modern sans-serif, matches Mahindra's clean minimal aesthetic)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Fraunces:ital,wght@0,400;0,500;0,600;1,400;1,500&display=swap');

:root {
  /* Mahindra brand palette */
  --brand-red: #E1261C;
  --brand-red-dark: #B01F17;
  --brand-red-soft: #FDEEEC;
  --charcoal: #0F1E3D;
  --charcoal-soft: #2A3654;
  --cream: #FAF7F0;
  --cream-warm: #F3EFE5;
  --off-white: #FFFFFF;
  --sustainable-green: #2D7A3E;
  --sustainable-green-soft: #E8F3EB;
  --gold-accent: #C9A97A;
  --gold-accent-soft: #F5EFE3;

  /* Text */
  --text-primary: #0F1E3D;
  --text-secondary: #4A5573;
  --text-muted: #6B7591;
  --text-inverse: #FFFFFF;

  /* Structure */
  --border-color: #E5E1D7;
  --border-soft: #F0EDE4;
  --shadow-sm: 0 1px 3px rgba(15, 30, 61, .08);
  --shadow-md: 0 6px 24px rgba(15, 30, 61, .10);
  --shadow-lg: 0 16px 40px rgba(15, 30, 61, .14);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;

  /* Type */
  --font-sans: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Fraunces', 'Inter', Georgia, serif;
}

/* ==========================================================================
   Base
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-primary);
  background: var(--off-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: var(--brand-red);
  text-decoration: none;
  transition: color .2s ease;
}
a:hover { color: var(--brand-red-dark); text-decoration: underline; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.2;
  margin: 0 0 1rem;
  letter-spacing: -.01em;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1.125rem; font-weight: 600; }
h2 em, h1 em { font-style: italic; color: var(--brand-red); font-weight: 400; }

p { margin: 0 0 1rem; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: 4.5rem 0;
}
section.bg-soft {
  background: var(--cream);
}
section.bg-green {
  background: var(--sustainable-green-soft);
}
section.bg-dark {
  background: var(--charcoal);
  color: var(--text-inverse);
}
section.bg-dark h1, section.bg-dark h2, section.bg-dark h3 { color: var(--text-inverse); }

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .95rem 1.75rem;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: .98rem;
  font-weight: 600;
  letter-spacing: .02em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .25s ease;
  text-decoration: none;
  min-height: 48px;
}
.btn:hover { transform: translateY(-2px); text-decoration: none; }
.btn-primary {
  background: var(--brand-red);
  color: var(--text-inverse);
  border-color: var(--brand-red);
}
.btn-primary:hover {
  background: var(--brand-red-dark);
  color: var(--text-inverse);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
}
.btn-outline:hover {
  background: var(--charcoal);
  color: var(--text-inverse);
}
.btn-outline-light {
  background: transparent;
  color: var(--text-inverse);
  border-color: var(--text-inverse);
}
.btn-outline-light:hover {
  background: var(--text-inverse);
  color: var(--charcoal);
}
.btn-outline-dark {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
  padding: .7rem 1.25rem;
  font-size: .88rem;
  min-height: 40px;
}
.btn-outline-dark:hover {
  background: var(--charcoal);
  color: var(--text-inverse);
}
.btn-green {
  background: var(--sustainable-green);
  color: var(--text-inverse);
  border-color: var(--sustainable-green);
}
.btn-green:hover {
  background: #1F5E2B;
  color: var(--text-inverse);
}
.btn-block { width: 100%; }

/* ==========================================================================
   Header / Navigation
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-soft);
  transition: box-shadow .25s ease;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 2rem;
}
.brand {
  display: inline-flex;
  align-items: baseline;
  gap: .5rem;
  text-decoration: none;
  color: var(--charcoal);
}
.brand:hover { text-decoration: none; }
.brand-mark {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -.02em;
  color: var(--brand-red);
  line-height: 1;
}
.brand-sub {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: .7rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--text-secondary);
  padding-left: .55rem;
  border-left: 1px solid var(--border-color);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.85rem;
}
.main-nav a {
  font-family: var(--font-sans);
  font-size: .92rem;
  font-weight: 500;
  color: var(--text-primary);
  text-decoration: none;
  position: relative;
  padding: .5rem 0;
  transition: color .2s ease;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--brand-red);
  transition: width .25s ease;
}
.main-nav a:hover, .main-nav a.active { color: var(--brand-red); }
.main-nav a.active::after, .main-nav a:hover::after { width: 100%; }

.mobile-toggle {
  display: none;
  background: none;
  border: 0;
  padding: .5rem;
  cursor: pointer;
  color: var(--charcoal);
}
.mobile-toggle svg { width: 24px; height: 24px; }

@media (max-width: 960px) {
  .main-nav {
    position: fixed;
    top: 62px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 1rem 1.5rem 2rem;
    gap: 1.25rem;
    align-items: flex-start;
    box-shadow: var(--shadow-md);
    max-height: calc(100vh - 62px);
    overflow-y: auto;
    transform: translateY(-100%);
    transition: transform .3s ease;
  }
  .main-nav.open { transform: translateY(0); }
  .main-nav a { font-size: 1rem; padding: .5rem 0; width: 100%; }
  .mobile-toggle { display: block; }
  .btn-enquire-header { display: none; }
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: center;
  color: white;
  background: linear-gradient(180deg, rgba(15,30,61,.15) 20%, rgba(15,30,61,.85) 100%),
              url('../images/mahindra-sadahalli-landscaped-garden-representative.webp') center/cover no-repeat;
  padding: 5rem 0;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.3) 0%, rgba(0,0,0,.1) 30%, rgba(0,0,0,.7) 100%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 780px;
}
.hero-eyebrow {
  display: inline-block;
  background: var(--brand-red);
  color: white;
  padding: .5rem 1.1rem;
  border-radius: 50px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero h1 {
  color: white;
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  line-height: 1.1;
  margin-bottom: 1.25rem;
}
.hero h1 em { color: var(--gold-accent); font-style: italic; font-weight: 400; }
.hero-sub {
  font-size: clamp(.98rem, 1.35vw, 1.15rem);
  line-height: 1.7;
  color: rgba(255,255,255,.92);
  margin-bottom: 2rem;
  max-width: 620px;
}
.hero-sub strong { color: white; font-weight: 600; }
.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.25rem;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255,255,255,.25);
  max-width: 640px;
}
.hero-stat-value {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 500;
  color: white;
  line-height: 1;
}
.hero-stat-label {
  font-size: .75rem;
  color: rgba(255,255,255,.75);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-top: .35rem;
}
@media (max-width: 640px) {
  .hero { min-height: 70vh; padding: 3.5rem 0; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
  .hero-ctas .btn { width: 100%; }
}

/* Interior hero (not homepage) — smaller */
.page-hero {
  background: linear-gradient(180deg, rgba(15,30,61,.4) 0%, rgba(15,30,61,.7) 100%),
              url('../images/mahindra-sadahalli-tower-elevation-poolside-representative.webp') center/cover no-repeat;
  color: white;
  padding: 5rem 0 3rem;
  position: relative;
}
.page-hero h1 { color: white; margin-bottom: .75rem; }
.page-hero-sub {
  color: rgba(255,255,255,.9);
  font-size: 1.05rem;
  max-width: 700px;
}

.breadcrumb {
  padding: 1rem 0;
  font-size: .85rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border-soft);
  background: var(--cream);
}
.breadcrumb a { color: var(--text-secondary); }
.breadcrumb a:hover { color: var(--brand-red); }
.breadcrumb-sep { margin: 0 .5rem; opacity: .5; }

/* ==========================================================================
   Section utilities
   ========================================================================== */

.section-tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: .8rem;
  font-weight: 600;
  color: var(--brand-red);
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.section-lead {
  font-size: 1.08rem;
  color: var(--text-secondary);
  max-width: 720px;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 800px) {
  .two-col { grid-template-columns: 1fr; gap: 2rem; }
}

.rich-text p { color: var(--text-secondary); line-height: 1.75; }
.rich-text strong { color: var(--charcoal); }
.rich-text h3 { margin-top: 2rem; }
.rich-text ul { padding-left: 1.5rem; }
.rich-text li { margin-bottom: .5rem; color: var(--text-secondary); }

/* ==========================================================================
   Cards & Grids
   ========================================================================== */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.feature-card {
  background: white;
  padding: 1.75rem 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-soft);
  transition: all .25s ease;
}
.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.feature-icon {
  font-size: 2rem;
  margin-bottom: .75rem;
  line-height: 1;
}
.feature-card h3 { font-family: var(--font-sans); font-size: 1.1rem; font-weight: 600; margin-bottom: .5rem; color: var(--charcoal); }
.feature-card p { color: var(--text-secondary); font-size: .95rem; line-height: 1.6; margin: 0; }

.config-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.config-card {
  background: white;
  padding: 1.75rem 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  text-align: left;
}
.config-tag {
  display: inline-block;
  background: var(--brand-red-soft);
  color: var(--brand-red);
  padding: .3rem .75rem;
  border-radius: 50px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: .5rem;
}
.config-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--charcoal);
  margin-bottom: .5rem;
}
.config-size {
  font-size: .95rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  min-height: 3em;
}
.config-price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--brand-red);
  margin-bottom: 1.25rem;
  line-height: 1.2;
}
.config-price small {
  display: block;
  font-family: var(--font-sans);
  font-size: .75rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-top: .25rem;
}

/* ==========================================================================
   Tables
   ========================================================================== */

.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.5rem;
  background: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.spec-table th, .spec-table td {
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--border-soft);
  font-size: .95rem;
}
.spec-table th {
  background: var(--cream);
  font-weight: 600;
  color: var(--charcoal);
  width: 40%;
}
.spec-table td { color: var(--text-secondary); }
.spec-table tr:last-child th, .spec-table tr:last-child td { border-bottom: 0; }

/* ==========================================================================
   Amenities cloud
   ========================================================================== */

.amenities-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin: 1.25rem 0 2rem;
}
.amenity-chip {
  background: white;
  border: 1px solid var(--border-color);
  color: var(--charcoal);
  padding: .55rem 1.1rem;
  border-radius: 50px;
  font-size: .9rem;
  font-weight: 500;
  transition: all .2s ease;
}
.amenity-chip:hover {
  border-color: var(--brand-red);
  color: var(--brand-red);
  transform: translateY(-1px);
}

/* ==========================================================================
   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;
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(180deg, rgba(15,30,61,0), rgba(15,30,61,.85));
  color: white;
  padding: 2rem 1.25rem 1rem;
  font-size: .9rem;
  font-weight: 500;
}

/* ==========================================================================
   Sustainability stat cards
   ========================================================================== */

.sustainability-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.sustainability-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  text-align: center;
  border-top: 4px solid var(--sustainable-green);
  box-shadow: var(--shadow-sm);
}
.sustainability-stat {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--sustainable-green);
  line-height: 1;
  margin-bottom: .5rem;
}
.sustainability-card h4 {
  font-family: var(--font-sans);
  font-weight: 600;
  color: var(--charcoal);
  font-size: 1rem;
  margin-bottom: .5rem;
}
.sustainability-card p {
  color: var(--text-secondary);
  font-size: .9rem;
  line-height: 1.5;
  margin: 0;
}

/* ==========================================================================
   Forms
   ========================================================================== */

.lead-form {
  background: white;
  padding: 2rem 1.75rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border-top: 4px solid var(--brand-red);
}
.lead-form h3 {
  font-family: var(--font-display);
  color: var(--charcoal);
  margin-bottom: .5rem;
}
.lead-form-sub {
  font-size: .9rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}
.form-field {
  margin-bottom: 1.1rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 480px) {
  .form-row { grid-template-columns: 1fr; }
}
.form-field label {
  display: block;
  font-size: .85rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: .35rem;
}
.form-field label .req { color: var(--brand-red); margin-left: 2px; }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: .75rem .95rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: .95rem;
  color: var(--text-primary);
  background: white;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 0;
  border-color: var(--brand-red);
  box-shadow: 0 0 0 3px var(--brand-red-soft);
}
.form-field input.invalid,
.form-field select.invalid {
  border-color: var(--brand-red);
  background: var(--brand-red-soft);
}
.form-field textarea { resize: vertical; min-height: 80px; }
.form-consent {
  font-size: .78rem;
  color: var(--text-muted);
  margin-top: 1rem;
  line-height: 1.5;
}
.form-consent a { color: var(--brand-red); }

/* Hero lead form overlay */
.hero-form-wrap {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 900px) {
  .hero-form-wrap { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Modals
   ========================================================================== */

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15,30,61,.6);
  backdrop-filter: blur(4px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
  padding: 1rem;
  animation: fadeIn .25s ease;
}
.modal-backdrop.open { display: flex; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem;
  max-width: 460px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: slideUp .3s ease;
}
@keyframes slideUp { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.modal-close {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--cream);
  border: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--charcoal);
}
.modal-close:hover { background: var(--brand-red); color: white; }
.modal-close svg { width: 18px; height: 18px; }
.modal h3 { color: var(--charcoal); margin-bottom: .35rem; }
.modal p { color: var(--text-secondary); margin-bottom: 1.25rem; font-size: .93rem; }

/* ==========================================================================
   RERA / disclaimer bar
   ========================================================================== */

.rera-alert {
  background: linear-gradient(90deg, #FFF7ED 0%, #FFECD4 100%);
  border-left: 4px solid #C2410C;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  margin: 1.5rem 0;
  font-size: .9rem;
  line-height: 1.6;
}
.rera-alert strong { color: #7C2D12; }

/* ==========================================================================
   FAQ
   ========================================================================== */

.faq-list { max-width: 860px; }
.faq-item {
  border-bottom: 1px solid var(--border-color);
  padding: 1.25rem 0;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--charcoal);
  padding: .25rem 0;
  transition: color .2s ease;
}
.faq-question:hover { color: var(--brand-red); }
.faq-toggle {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .25s ease, background .2s ease;
  color: var(--brand-red);
  font-weight: 700;
}
.faq-item.open .faq-toggle { transform: rotate(45deg); background: var(--brand-red); color: white; }
.faq-answer {
  display: none;
  padding-top: 1rem;
  color: var(--text-secondary);
  line-height: 1.75;
}
.faq-item.open .faq-answer { display: block; }

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background: var(--charcoal);
  color: rgba(255,255,255,.75);
  padding: 4rem 0 2rem;
  font-size: .92rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-brand {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 1.25rem;
  color: white;
  letter-spacing: -.02em;
  display: block;
  margin-bottom: 1rem;
}
.footer-brand span {
  display: block;
  font-size: .7rem;
  font-weight: 500;
  color: rgba(255,255,255,.6);
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-top: .35rem;
  border-top: 1px solid rgba(255,255,255,.15);
  padding-top: .5rem;
}
.site-footer h4 {
  font-family: var(--font-sans);
  color: white;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: .55rem; }
.site-footer a {
  color: rgba(255,255,255,.7);
  text-decoration: none;
  font-size: .9rem;
  transition: color .2s ease;
}
.site-footer a:hover { color: var(--brand-red); text-decoration: none; }
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-top: .75rem;
  color: rgba(255,255,255,.75);
  font-size: .88rem;
}
.footer-contact-item svg { flex-shrink: 0; color: var(--brand-red); }

.rera-line {
  background: rgba(255,255,255,.05);
  border-left: 3px solid var(--brand-red);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  margin: 2rem 0 1.5rem;
  font-size: .85rem;
  line-height: 1.7;
  color: rgba(255,255,255,.85);
}
.rera-line strong { color: white; }
.rera-line a { color: #FF8C82; }

.footer-disclaimer {
  font-size: .78rem;
  color: rgba(255,255,255,.55);
  line-height: 1.7;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,.1);
  margin-top: 1.5rem;
}
.footer-disclaimer em { color: #FF8C82; font-style: normal; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.1);
  margin-top: 1.5rem;
  font-size: .82rem;
  color: rgba(255,255,255,.55);
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom-links {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

/* ==========================================================================
   Floating WhatsApp + Sticky mobile CTA
   ========================================================================== */

.wa-float {
  position: fixed;
  bottom: 90px;
  right: 20px;
  z-index: 90;
  background: #25D366;
  color: white;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, .35);
  text-decoration: none;
  animation: pulse 2.5s infinite;
}
.wa-float:hover { text-decoration: none; transform: scale(1.05); color: white; }
.wa-float svg { width: 28px; height: 28px; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 6px 20px rgba(37, 211, 102, .35); }
  50% { box-shadow: 0 6px 20px rgba(37, 211, 102, .7), 0 0 0 8px rgba(37, 211, 102, .1); }
}

.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: white;
  border-top: 1px solid var(--border-color);
  z-index: 80;
  padding: .6rem;
  gap: .5rem;
  box-shadow: 0 -4px 12px rgba(15,30,61,.08);
}
.mobile-cta-bar a {
  flex: 1;
  padding: .75rem .5rem;
  border-radius: var(--radius-sm);
  text-align: center;
  font-size: .8rem;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.mobile-cta-bar a svg { width: 16px; height: 16px; }
.mobile-cta-bar .cta-call { background: var(--cream); color: var(--charcoal); }
.mobile-cta-bar .cta-wa { background: #25D366; color: white; }
.mobile-cta-bar .cta-enquire { background: var(--brand-red); color: white; }
@media (max-width: 700px) {
  .mobile-cta-bar { display: flex; }
  .wa-float { bottom: 80px; }
  body { padding-bottom: 60px; }
}

/* ==========================================================================
   EOI chat widget (bottom-right pop)
   ========================================================================== */

.eoi-chat {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 95;
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  max-width: 300px;
  padding: 1rem 1rem 1rem 1.25rem;
  display: none;
  animation: slideInRight .35s ease;
  border-left: 4px solid var(--brand-red);
}
.eoi-chat.open { display: block; }
@keyframes slideInRight {
  from { transform: translateX(120%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}
.eoi-chat-close {
  position: absolute;
  top: 6px; right: 8px;
  background: none; border: 0;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 1.2rem;
  line-height: 1;
  padding: 4px 8px;
}
.eoi-chat-msg { color: var(--charcoal); font-size: .88rem; font-weight: 500; margin-bottom: .75rem; line-height: 1.5; }
.eoi-chat-msg strong { color: var(--brand-red); }
.eoi-chat a {
  display: inline-block;
  background: #25D366;
  color: white;
  padding: .5rem 1rem;
  border-radius: var(--radius-sm);
  font-size: .85rem;
  font-weight: 600;
  text-decoration: none;
  transition: background .2s ease;
}
.eoi-chat a:hover { background: #1DA851; text-decoration: none; }
@media (max-width: 700px) {
  .eoi-chat { bottom: 80px; right: 12px; left: 12px; max-width: none; }
  .wa-float { bottom: 150px; }
}

/* ==========================================================================
   Utility
   ========================================================================== */

.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.hide-mobile { }
@media (max-width: 640px) { .hide-mobile { display: none; } }

/* Blog article typography */
.blog-article {
  max-width: 780px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text-secondary);
}
.blog-article h2 { margin-top: 2.5rem; margin-bottom: 1rem; }
.blog-article h3 { margin-top: 2rem; margin-bottom: .75rem; color: var(--charcoal); }
.blog-article p { margin-bottom: 1.25rem; }
.blog-article ul, .blog-article ol { padding-left: 1.5rem; margin-bottom: 1.5rem; }
.blog-article li { margin-bottom: .5rem; }
.blog-article strong { color: var(--charcoal); }
.blog-article blockquote {
  border-left: 4px solid var(--brand-red);
  padding: .5rem 1.25rem;
  margin: 2rem 0;
  background: var(--cream);
  color: var(--charcoal);
  font-style: italic;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.blog-meta {
  font-size: .85rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  letter-spacing: .05em;
  text-transform: uppercase;
}
