/* ==========================================================================
   Divyansh New Projects — Global Stylesheet
   Fonts: Poppins (headings, 500/600 only) + Inter (body) — no decorative type
   ========================================================================== */

:root {
  /* Color tokens */
  --navy: #0f2a43;
  --navy-dark: #081826;
  --navy-50: #eef2f6;
  --charcoal: #2b2f33;
  --white: #ffffff;
  --gray-50: #f7f8fa;
  --gray-100: #eef0f3;
  --gray-200: #dde1e6;
  --gray-400: #9aa4af;
  --gray-600: #5b6570;
  --gold: #b8902e;
  --gold-dark: #8f6e1f;
  --gold-50: #faf5ea;
  --success: #2e7d4f;

  /* Type */
  --font-head: "Poppins", "Segoe UI", sans-serif;
  --font-body: "Inter", "Segoe UI", sans-serif;

  /* Layout */
  --max-width: 1200px;
  --radius: 6px;
  --shadow-sm: 0 1px 3px rgba(15, 42, 67, 0.08);
  --shadow-md: 0 6px 20px rgba(15, 42, 67, 0.12);
  --header-h: 76px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

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

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--navy-dark);
  line-height: 1.25;
}

h1 { font-size: clamp(1.9rem, 3.6vw, 2.75rem); font-weight: 600; }
h2 { font-size: clamp(1.5rem, 2.6vw, 2rem); }
h3 { font-size: 1.2rem; font-weight: 500; }

p { color: var(--gray-600); }

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 10px;
}

.section {
  padding: 64px 0;
}
.section--alt { background: var(--gray-50); }
.section-head {
  max-width: 640px;
  margin-bottom: 36px;
}
.section-head p { margin-top: 10px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.92rem;
  border: 1px solid transparent;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.btn-primary { background: var(--gold); color: var(--white); }
.btn-primary:hover { background: var(--gold-dark); }
.btn-outline { background: transparent; border-color: var(--gray-200); color: var(--navy-dark); }
.btn-outline:hover { border-color: var(--navy); }
.btn-ghost-white { background: transparent; border-color: rgba(255,255,255,0.5); color: var(--white); }
.btn-ghost-white:hover { background: rgba(255,255,255,0.12); }
.btn-block { width: 100%; }

/* ============ Header ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  height: var(--header-h);
}
.site-header.is-scrolled { box-shadow: var(--shadow-sm); }
.site-header .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--navy-dark);
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo span { font-size: 0.62rem; font-weight: 400; letter-spacing: 0.12em; color: var(--gold-dark); text-transform: uppercase; }

.main-nav { display: flex; align-items: center; gap: 32px; }
.main-nav ul { display: flex; gap: 28px; }
.main-nav a { font-size: 0.92rem; font-weight: 500; color: var(--charcoal); }
.main-nav a:hover { color: var(--gold-dark); }
.header-cta { display: flex; align-items: center; gap: 16px; }
.nav-toggle { display: none; background: none; border: none; font-size: 1.3rem; width: 44px; height: 44px; }

@media (max-width: 900px) {
  .main-nav { position: fixed; top: var(--header-h); left: 0; right: 0; background: var(--white);
    flex-direction: column; align-items: flex-start; padding: 20px 24px; border-bottom: 1px solid var(--gray-100);
    transform: translateY(-8px); opacity: 0; pointer-events: none; transition: 0.18s ease; }
  .main-nav.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .main-nav ul { flex-direction: column; gap: 16px; width: 100%; }
  .nav-toggle { display: block; }
  .header-cta .btn-outline { display: none; }
}

/* ============ Breadcrumbs ============ */
.breadcrumb { background: var(--gray-50); border-bottom: 1px solid var(--gray-100); }
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: 6px; padding: 12px 0; font-size: 0.85rem; color: var(--gray-600); }
.breadcrumb a { color: var(--navy); font-weight: 500; }
.breadcrumb li:not(:last-child)::after { content: "/"; margin-left: 6px; color: var(--gray-400); }
.breadcrumb li[aria-current] { color: var(--gray-600); }

/* ============ Hero ============ */
.hero {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy) 65%);
  color: var(--white);
  padding: 76px 0 96px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 82% 20%, rgba(184,144,46,0.18), transparent 55%);
}
.hero .container { position: relative; }
.hero h1 { color: var(--white); max-width: 760px; }
.hero .subhead { color: rgba(255,255,255,0.78); max-width: 620px; margin-top: 16px; font-size: 1.05rem; }
.hero-badges { display: flex; gap: 24px; margin-top: 28px; flex-wrap: wrap; }
.hero-badges div { font-size: 0.85rem; color: rgba(255,255,255,0.75); }
.hero-badges strong { display: block; font-family: var(--font-head); font-size: 1.4rem; color: var(--white); font-weight: 600; }

/* Search bar */
.search-bar {
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px;
  margin-top: 36px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr auto;
  gap: 12px;
  box-shadow: var(--shadow-md);
  max-width: 900px;
}
.search-bar select, .search-bar input {
  border: 1px solid var(--gray-200);
  border-radius: 4px;
  padding: 12px;
  font-size: 0.9rem;
  color: var(--charcoal);
  background: var(--white);
  font-family: var(--font-body);
}
@media (max-width: 760px) { .search-bar { grid-template-columns: 1fr; } }

/* ============ Cards: Projects ============ */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 980px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .card-grid { grid-template-columns: 1fr; } }

.project-card {
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}
.project-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.card-media {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--navy-50), var(--gray-100));
  position: relative;
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-400);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.card-tag {
  position: absolute; top: 12px; left: 12px;
  background: var(--gold); color: var(--white);
  font-size: 0.7rem; font-weight: 600; padding: 4px 10px; border-radius: 3px;
  text-transform: uppercase;
}
.card-body { padding: 18px; }
.card-body h3 { margin-bottom: 4px; }
.card-loc { font-size: 0.85rem; color: var(--gray-600); margin-bottom: 10px; }
.card-meta { display: flex; justify-content: space-between; align-items: center; margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--gray-100); }
.card-price { font-family: var(--font-head); font-weight: 600; color: var(--navy-dark); }
.card-price small { display: block; font-weight: 400; font-size: 0.72rem; color: var(--gray-400); }

/* Location tiles */
.loc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
@media (max-width: 900px) { .loc-grid { grid-template-columns: repeat(2, 1fr); } }
.loc-tile {
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 22px 18px;
  background: var(--white);
}
.loc-tile:hover { border-color: var(--gold); }
.loc-tile h3 { font-size: 1rem; margin-bottom: 4px; }
.loc-tile span { font-size: 0.8rem; color: var(--gray-400); }

/* Feature list */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
@media (max-width: 900px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .feature-grid { grid-template-columns: 1fr; } }
.feature-item .icon {
  width: 44px; height: 44px; border-radius: 8px;
  background: var(--gold-50); color: var(--gold-dark);
  display: flex; align-items: center; justify-content: center;
  font-weight: 600; margin-bottom: 14px; font-family: var(--font-head);
}
.feature-item h3 { margin-bottom: 6px; font-size: 1.05rem; }
.feature-item p { font-size: 0.92rem; }

/* Trust stats */
.stats-bar { background: var(--navy-dark); color: var(--white); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); text-align: center; }
@media (max-width: 700px) { .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; } }
.stat strong { display: block; font-family: var(--font-head); font-size: 2rem; font-weight: 600; color: var(--gold); }
.stat span { font-size: 0.82rem; color: rgba(255,255,255,0.65); }

/* About split */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } }
.media-block {
  aspect-ratio: 4/3; border-radius: var(--radius);
  background: linear-gradient(135deg, var(--navy-50), var(--gray-100));
  display: flex; align-items: center; justify-content: center; color: var(--gray-400); font-size: 0.8rem;
}

/* Blog cards */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 900px) { .blog-grid { grid-template-columns: 1fr; } }
.blog-card { border: 1px solid var(--gray-100); border-radius: var(--radius); overflow: hidden; }
.blog-card .card-body p { font-size: 0.88rem; }
.blog-date { font-size: 0.75rem; color: var(--gray-400); text-transform: uppercase; letter-spacing: 0.05em; }

/* FAQ accordion */
.faq-list { max-width: 760px; }
.faq-item { border-bottom: 1px solid var(--gray-100); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none;
  padding: 18px 4px; display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-head); font-weight: 500; font-size: 0.98rem; color: var(--navy-dark);
}
.faq-q .plus { transition: transform 0.15s ease; color: var(--gold-dark); font-size: 1.2rem; }
.faq-item.is-open .plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.2s ease; font-size: 0.92rem; }
.faq-item.is-open .faq-a { max-height: 400px; padding-bottom: 18px; }

/* Forms */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
.form-grid label { display: block; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 0.82rem; font-weight: 500; color: var(--charcoal); }
.field input, .field select, .field textarea {
  border: 1px solid var(--gray-200); border-radius: 4px; padding: 11px 12px; font-size: 0.9rem; font-family: var(--font-body);
}
.field.full { grid-column: 1 / -1; }

.contact-split { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
@media (max-width: 900px) { .contact-split { grid-template-columns: 1fr; } }
.map-embed {
  height: 100%; min-height: 320px; border-radius: var(--radius);
  background: repeating-linear-gradient(45deg, var(--gray-100), var(--gray-100) 10px, var(--gray-50) 10px, var(--gray-50) 20px);
  display: flex; align-items: center; justify-content: center; color: var(--gray-400); font-size: 0.85rem;
}

/* Project page layout (main content + sticky enquiry sidebar) */
.project-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  padding-top: 48px;
}
@media (max-width: 980px) {
  .project-layout { grid-template-columns: 1fr; gap: 32px; padding-top: 32px; }
  .sticky-enquiry { position: static; }
}

/* Project page specific */
.hero-project { padding: 40px 0 0; background: var(--gray-50); border-bottom: 1px solid var(--gray-100); }
.hero-project .top { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; padding-bottom: 32px; }
.hero-project h1 { margin-bottom: 6px; }
.hero-project .loc-line { color: var(--gray-600); font-size: 0.95rem; }
.rera-badge { display: inline-flex; align-items: center; gap: 6px; background: var(--white); border: 1px solid var(--gray-200); border-radius: 4px; padding: 6px 12px; font-size: 0.78rem; color: var(--gray-600); margin-top: 10px; }
.cta-row { display: flex; gap: 12px; flex-wrap: wrap; align-items: flex-start; }

.tab-strip { display: flex; gap: 4px; overflow-x: auto; border-top: 1px solid var(--gray-100); }
.tab-strip a { padding: 14px 18px; font-size: 0.88rem; font-weight: 500; color: var(--gray-600); white-space: nowrap; border-bottom: 2px solid transparent; }
.tab-strip a:hover { color: var(--navy-dark); border-color: var(--gray-200); }

.config-table, .price-table { width: 100%; border-collapse: collapse; font-size: 0.92rem; }
.config-table th, .config-table td, .price-table th, .price-table td { padding: 12px 14px; border-bottom: 1px solid var(--gray-100); text-align: left; }
.config-table th, .price-table th { background: var(--gray-50); font-family: var(--font-head); font-weight: 500; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--gray-600); }
.table-wrap { overflow-x: auto; border: 1px solid var(--gray-100); border-radius: var(--radius); }

.amenity-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 900px) { .amenity-grid { grid-template-columns: repeat(2, 1fr); } }
.amenity-item { border: 1px solid var(--gray-100); border-radius: var(--radius); padding: 16px; text-align: center; font-size: 0.85rem; }
.amenity-item .icon { width: 36px; height: 36px; margin: 0 auto 10px; border-radius: 50%; background: var(--gold-50); color: var(--gold-dark); display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-weight: 600; font-size: 0.8rem; }

.distance-list li { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px dashed var(--gray-200); font-size: 0.9rem; }
.distance-list li span:last-child { color: var(--gray-600); }

.status-track { display: flex; gap: 8px; margin-top: 18px; }
.status-track .step { flex: 1; height: 6px; border-radius: 3px; background: var(--gray-200); }
.status-track .step.done { background: var(--gold); }

.developer-box { display: flex; gap: 20px; align-items: flex-start; background: var(--gray-50); border: 1px solid var(--gray-100); border-radius: var(--radius); padding: 24px; }
.developer-box .logo-circle { width: 56px; height: 56px; border-radius: 50%; background: var(--navy); color: var(--white); display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-weight: 600; flex-shrink: 0; }

.disclaimer-strip { background: var(--gray-100); padding: 18px 0; }
.disclaimer-strip p { font-size: 0.78rem; color: var(--gray-600); text-align: center; max-width: 900px; margin: 0 auto; }

/* Sticky enquiry (project pages) */
.sticky-enquiry { position: sticky; top: calc(var(--header-h) + 20px); border: 1px solid var(--gray-100); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-sm); }
.sticky-enquiry h3 { margin-bottom: 14px; }

/* Footer */
.site-footer { background: var(--navy-dark); color: rgba(255,255,255,0.75); padding: 56px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; padding-bottom: 40px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 { color: var(--white); font-size: 0.92rem; margin-bottom: 16px; }
.site-footer ul li { margin-bottom: 10px; font-size: 0.88rem; }
.site-footer a:hover { color: var(--gold); }
.footer-logo { font-family: var(--font-head); font-size: 1.2rem; color: var(--white); font-weight: 600; margin-bottom: 12px; }
.social-icons { display: flex; gap: 12px; margin-top: 18px; }
.social-icons a { width: 34px; height: 34px; border: 1px solid rgba(255,255,255,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.8rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 18px 0; font-size: 0.78rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.footer-bottom a { margin-left: 14px; }

/* Utility */
.text-center { text-align: center; margin-left: auto; margin-right: auto; }
.mt-24 { margin-top: 24px; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible {
  outline: 2px solid var(--gold); outline-offset: 2px;
}
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; scroll-behavior: auto !important; }
}

/* ==========================================================================
   Mobile / small-device fine-tuning
   Tightens spacing, type, and touch targets below tablet width so the
   site reads well on phones (320px+) as well as tablets, without
   changing layout logic already handled by component-level breakpoints.
   ========================================================================== */
@media (max-width: 760px) {
  .section { padding: 44px 0; }
  .hero { padding: 48px 0 64px; }
  .hero-project { padding: 28px 0 0; }
  .section-head { margin-bottom: 26px; }
  .stats-grid .stat { padding: 28px 0 !important; }
  .card-grid, .blog-grid, .amenity-grid, .feature-grid { gap: 18px; }
  .developer-box { flex-direction: column; }
  .cta-row { width: 100%; }
  .cta-row .btn { flex: 1; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .logo { font-size: 1.05rem; }
  .logo span { font-size: 0.56rem; }
  .header-cta { gap: 8px; }
  .header-cta .btn-primary { padding: 10px 14px; font-size: 0.82rem; }
  .hero-badges { gap: 16px; }
  .hero-badges strong { font-size: 1.15rem; }
  .search-bar { padding: 12px; }
  .btn { padding: 11px 16px; font-size: 0.88rem; }
  .config-table th, .config-table td,
  .price-table th, .price-table td { padding: 10px; font-size: 0.85rem; }
  .amenity-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-bottom a { margin-left: 0; margin-right: 14px; }
}

/* Any table wider than its container scrolls instead of breaking layout */
.table-wrap { -webkit-overflow-scrolling: touch; }
.table-wrap table { min-width: 480px; }

/* Comfortable tap targets on touch devices */
@media (hover: none) and (pointer: coarse) {
  .faq-q, .btn, .main-nav a, .tab-strip a { min-height: 44px; }
}

/* ==========================================================================
   Trust top-bar (desktop) — unique brand touch above main header
   ========================================================================== */
.top-bar { background: var(--navy-dark); color: rgba(255,255,255,0.82); font-size: 0.78rem; }
.top-bar .container { display: flex; justify-content: space-between; align-items: center; padding: 7px 24px; flex-wrap: wrap; gap: 6px; }
.top-bar .tb-links { display: flex; gap: 22px; flex-wrap: wrap; }
.top-bar a:hover { color: var(--gold); }
.top-bar .tb-trust { color: rgba(255,255,255,0.55); letter-spacing: 0.02em; }
@media (max-width: 760px) { .top-bar { display: none; } }

/* ==========================================================================
   Modal / Popup system (Enquiry, Brochure, View Details)
   ========================================================================== */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(8, 24, 38, 0.62);
  display: none; align-items: center; justify-content: center;
  padding: 20px; z-index: 999;
}
.modal-overlay.is-open { display: flex; }
.modal-box {
  background: var(--white); border-radius: 10px; max-width: 520px; width: 100%;
  max-height: 92vh; overflow-y: auto; position: relative; box-shadow: var(--shadow-md);
  animation: modalPop 0.22s ease;
}
@keyframes modalPop { from { transform: translateY(14px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.modal-close {
  position: absolute; top: 12px; right: 12px; width: 34px; height: 34px; border-radius: 50%;
  border: none; background: var(--gray-100); font-size: 1.05rem; line-height: 1; color: var(--charcoal);
  display: flex; align-items: center; justify-content: center; z-index: 2;
}
.modal-close:hover { background: var(--gray-200); }
.modal-band { height: 8px; background: linear-gradient(90deg, var(--gold), var(--navy)); border-radius: 10px 10px 0 0; }
.modal-body-inner { padding: 30px 28px; }
.modal-body-inner h3 { margin-bottom: 4px; }
.modal-body-inner .modal-sub { font-size: 0.88rem; color: var(--gray-600); margin-bottom: 20px; }

/* ==========================================================================
   Sidebar "Enquire Now" tab + slide-in panel
   ========================================================================== */
.side-tab { position: fixed; top: 58%; right: 0; transform: translateY(-50%); z-index: 500; }
.side-tab-btn {
  writing-mode: vertical-rl; text-orientation: mixed; background: var(--gold); color: var(--white);
  padding: 16px 11px; border-radius: 6px 0 0 6px; font-weight: 600; font-size: 0.82rem; letter-spacing: 0.04em;
  border: none; cursor: pointer; box-shadow: var(--shadow-md);
}
.side-tab-btn:hover { background: var(--gold-dark); }
.side-panel {
  position: fixed; top: 0; right: -360px; width: 340px; max-width: 90vw; height: 100%;
  background: var(--white); box-shadow: -8px 0 30px rgba(8, 24, 38, 0.18); z-index: 998;
  transition: right 0.25s ease; overflow-y: auto; padding: 26px 24px;
}
.side-panel.is-open { right: 0; }
.side-panel .panel-head { display: flex; justify-content: space-between; align-items: flex-start; }
.side-panel h3 { margin-bottom: 4px; }
.side-panel .lead-note { font-size: 0.85rem; color: var(--gray-600); margin-bottom: 6px; }

/* ==========================================================================
   Floating quick actions (Call / WhatsApp) — desktop & tablet
   ========================================================================== */
.quick-actions { position: fixed; bottom: 24px; right: 22px; display: flex; flex-direction: column; gap: 10px; z-index: 480; }
.quick-actions a {
  width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.3rem; box-shadow: var(--shadow-md);
}
.quick-actions .qa-whatsapp { background: #25d366; }
.quick-actions .qa-call { background: var(--navy); }
@media (max-width: 760px) { .quick-actions { bottom: 78px; right: 14px; } }

/* ==========================================================================
   Mobile sticky action bar
   ========================================================================== */
.mobile-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 490; display: none;
  background: var(--white); border-top: 1px solid var(--gray-100); box-shadow: 0 -4px 16px rgba(8, 24, 38, 0.08);
}
.mobile-bar .row { display: grid; grid-template-columns: repeat(3, 1fr); }
.mobile-bar a, .mobile-bar button {
  border: none; background: none; padding: 10px 4px 12px; display: flex; flex-direction: column; align-items: center; gap: 3px;
  font-size: 0.72rem; font-weight: 600; color: var(--navy-dark); border-right: 1px solid var(--gray-100);
}
.mobile-bar a:last-child, .mobile-bar button:last-child { border-right: none; }
.mobile-bar .mb-icon { font-size: 1.05rem; }
@media (max-width: 760px) {
  .mobile-bar { display: block; }
  body { padding-bottom: 58px; }
}

/* ==========================================================================
   Full-width "Enquire Now" banner section (project pages)
   ========================================================================== */
.enquire-banner { background: var(--navy-dark); }
.enquire-banner .eb-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; }
.enquire-banner .eb-media {
  min-height: 340px;
  background:
    radial-gradient(circle at 20% 20%, rgba(184,144,46,0.28), transparent 55%),
    repeating-linear-gradient(135deg, rgba(255,255,255,0.04), rgba(255,255,255,0.04) 14px, transparent 14px, transparent 28px),
    var(--navy);
}
.enquire-banner .eb-content { padding: 48px; }
.enquire-banner h2 { color: var(--white); }
.enquire-banner p { color: rgba(255,255,255,0.72); }
.enquire-banner .eb-divider { display: block; width: 56px; height: 3px; background: var(--gold); margin: 12px 0 20px; }
.enquire-banner .field label { color: rgba(255,255,255,0.85); }
@media (max-width: 860px) {
  .enquire-banner .eb-grid { grid-template-columns: 1fr; }
  .enquire-banner .eb-media { min-height: 160px; }
  .enquire-banner .eb-content { padding: 34px 22px; }
}

/* ==========================================================================
   Form usability polish
   ========================================================================== */
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--gold); box-shadow: 0 0 0 3px rgba(184,144,46,0.14);
}
.field .hint { font-size: 0.74rem; color: var(--gray-400); margin-top: 2px; }
.form-note:empty { display: none; }
.form-note { font-weight: 500; }

/* Comfortable, legible base type across devices (no oversized/undersized text) */
@media (max-width: 400px) {
  h1 { font-size: 1.65rem; }
  h2 { font-size: 1.35rem; }
  body { font-size: 15.5px; }
}
