/* =============================================================
   ABI RAINBOW GARDEN — Main Stylesheet
   Primary & Secondary colors are defined in :root variables.
   To retheme: change --primary-* and --secondary-* only.
   ============================================================= */

/* ── 1. CSS CUSTOM PROPERTIES (THEME VARIABLES) ── */
:root {
  /* ▼ PRIMARY BRAND COLOR — change to retheme */
  --primary:        #064e3b;
  --primary-dark:   #022c1e;
  --primary-light:  #0d7a52;

  /* ▼ SECONDARY / ACCENT COLOR — change to retheme */
  --secondary:      #c8963e;
  --secondary-dark: #a37830;
  --secondary-light:#e0b468;

  /* Light mode surface & text */
  --bg:             #ffffff;
  --bg-secondary:   #f7f5f2;
  --bg-card:        #ffffff;
  --text:           #1c1c1e;
  --text-muted:     #5a5a6a;
  --text-light:     #9a9aaa;
  --border:         #e4e1db;

  /* Shadows */
  --shadow-xs: 0 1px 4px rgba(0,0,0,0.06);
  --shadow-sm: 0 2px 10px rgba(0,0,0,0.08);
  --shadow-md: 0 6px 24px rgba(0,0,0,0.12);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.16);
  --shadow-xl: 0 20px 64px rgba(0,0,0,0.2);

  /* UI */
  --radius-sm:  8px;
  --radius-md:  14px;
  --radius-lg:  20px;
  --radius-xl:  28px;
  --navbar-h:   72px;
  --transition: 0.3s ease;
}

/* Dark Mode Overrides */
[data-theme="dark"] {
  --bg:           #0d1117;
  --bg-secondary: #161b22;
  --bg-card:      #1e2430;
  --text:         #e6edf3;
  --text-muted:   #8b929a;
  --text-light:   #484f58;
  --border:       #30363d;

  --shadow-xs: 0 1px 4px rgba(0,0,0,0.25);
  --shadow-sm: 0 2px 10px rgba(0,0,0,0.35);
  --shadow-md: 0 6px 24px rgba(0,0,0,0.45);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.55);
  --shadow-xl: 0 20px 64px rgba(0,0,0,0.65);
}

/* ── STICKY CONTACT PANEL ── */
.sticky-contact {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  filter: drop-shadow(var(--shadow-lg));
}

.sticky-contact-label {
  background: var(--primary);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  align-self: flex-end;
  opacity: 0.85;
}

.sticky-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--primary);
  color: #fff;
  text-decoration: none;
  border: none;
  cursor: pointer;
  padding: 0;
  border-radius: 28px 0 0 28px;
  overflow: hidden;
  max-width: 44px;
  transition: max-width 0.4s cubic-bezier(0.4,0,0.2,1), box-shadow 0.3s ease, background 0.2s ease;
  box-shadow: -2px 3px 14px rgba(0,0,0,0.18);
  white-space: nowrap;
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1;
}

.sticky-contact-item:hover,
.sticky-contact-item:focus-visible {
  max-width: 220px;
  background: var(--primary-light);
  box-shadow: -4px 6px 22px rgba(0,0,0,0.28);
  outline: none;
}

.sc-whatsapp       { background: #25d366; }
.sc-whatsapp:hover,
.sc-whatsapp:focus-visible { background: #1ebe5a; }

.sc-email          { background: var(--secondary); }
.sc-email:hover,
.sc-email:focus-visible { background: var(--secondary-dark); }

.sc-enquire        { background: #e63946; }
.sc-enquire:hover,
.sc-enquire:focus-visible { background: #c1121f; }

.sc-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  font-size: 1rem;
}

.sc-text {
  padding-right: 16px;
  font-size: 0.85rem;
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.25s ease 0.1s;
  pointer-events: none;
}

.sticky-contact-item:hover .sc-text,
.sticky-contact-item:focus-visible .sc-text {
  opacity: 1;
}

@media (max-width: 480px) {
  .sticky-contact-label { display: none; }
  .sticky-contact-item  { max-width: 40px; border-radius: 50% 0 0 50%; }
  .sc-icon              { width: 40px; height: 40px; font-size: 0.9rem; }
  .sticky-contact-item:hover,
  .sticky-contact-item:focus-visible { max-width: 40px; }
  .sc-text { display: none; }
}

/* ── 2. RESET & BASE ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  transition: background-color var(--transition), color var(--transition);
}

img    { max-width: 100%; display: block; }
a      { color: inherit; text-decoration: none; }
button { font-family: inherit; }
h1, h2, h3, h4, h5 { line-height: 1.2; }
ul, ol { list-style: none; }

/* ── 3. LAYOUT UTILITIES ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 90px 0;
}

.section-alt {
  background: var(--bg-secondary);
}

/* ── 4. SECTION HEADER ── */
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 1rem;
  box-shadow: 0 3px 12px rgba(200,150,62,0.3);
}

.section-title {
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

[data-theme="dark"] .section-title {
  color: var(--secondary-light);
}

.section-title.left-aligned { text-align: left; }

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto;
}

/* ── 5. BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
  color: #fff;
  box-shadow: 0 4px 18px rgba(200,150,62,0.35);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--secondary-light) 0%, var(--secondary) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(200,150,62,0.45);
}
.btn-primary:active { transform: translateY(0); }

.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.65);
  backdrop-filter: blur(4px);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
  transform: translateY(-2px);
}

.btn-full { width: 100%; }

/* ── 6. SCROLL REVEAL ANIMATION ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hero entrance animations */
.animate-fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) var(--delay, 0s) forwards;
}
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ── 7. NAVBAR ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--navbar-h);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition), background var(--transition);
}
[data-theme="dark"] .navbar {
  background: rgba(13,17,23,0.92);
}
.navbar.scrolled {
  box-shadow: var(--shadow-md);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-logo img {
  height: 46px;
  width: auto;
  object-fit: contain;
  transition: opacity var(--transition);
}
.nav-logo:hover img { opacity: 0.85; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.nav-links a:hover {
  color: var(--secondary);
  background: rgba(200,150,62,0.09);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 6px;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0; transform: scaleX(0);
}
.hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── 8. HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--primary-dark);
  background-image: url('assets/site/sitephoto1.jpeg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
@supports not (background-attachment: fixed) {
  .hero { background-attachment: scroll; }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    150deg,
    rgba(2, 44, 30, 0.93) 0%,
    rgba(6, 78, 59, 0.60) 50%,
    rgba(1, 14, 8, 0.93) 100%
  );
}

/* Floating particle dots */
.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-particle {
  position: absolute;
  width: 3px; height: 3px;
  border-radius: 50%;
  background: rgba(200,150,62,0.6);
  animation: particleDrift linear infinite;
}
@keyframes particleDrift {
  0%   { transform: translateY(0) rotate(0deg); opacity: 1; }
  100% { transform: translateY(-80vh) rotate(360deg); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: calc(var(--navbar-h) + 2rem) 1.5rem 2rem;
  max-width: 820px;
  width: 100%;
}

.hero-badge {
  display: inline-block;
  background: rgba(200,150,62,0.18);
  border: 1px solid rgba(200,150,62,0.55);
  color: #e8c07a;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 7px 22px;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: clamp(2.6rem, 7vw, 5.2rem);
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.03em;
  margin-bottom: 0.6rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
  line-height: 1.05;
}

.hero-tagline {
  font-size: clamp(1rem, 2.5vw, 1.45rem);
  color: var(--secondary-light);
  font-style: italic;
  font-weight: 400;
  margin-bottom: 1.25rem;
  letter-spacing: 0.02em;
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.78);
  max-width: 580px;
  margin: 0 auto 2.5rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.55);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  animation: scrollBounce 2.4s ease-in-out infinite;
  text-decoration: none;
}
.hero-scroll-hint i { font-size: 1rem; color: var(--secondary-light); }
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.7; }
  50%       { transform: translateX(-50%) translateY(10px); opacity: 1; }
}

/* ── 9. HIGHLIGHTS STRIP ── */
.highlights-strip {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 1.25rem 0;
  overflow-x: auto;
}
.highlights-inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.highlight-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255,255,255,0.9);
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
}
.highlight-item i {
  color: var(--secondary-light);
  font-size: 1rem;
}

/* ── 10. CAROUSEL ── */
.carousel {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  background: #000;
}

.carousel-track {
  display: flex;
  will-change: transform;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.carousel-slide {
  min-width: 100%;
  position: relative;
}
.carousel-slide img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
  transition: opacity 0.3s;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1.5px solid rgba(255,255,255,0.28);
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  z-index: 10;
}
.carousel-btn:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  transform: translateY(-50%) scale(1.08);
}
.carousel-prev { left: 1.25rem; }
.carousel-next { right: 1.25rem; }

.carousel-dots {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.carousel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}
.carousel-dot.active {
  width: 28px;
  border-radius: 4px;
  background: var(--secondary);
}

/* ── 11. CMDA APPROVAL ── */
.approval-wrapper {
  display: flex;
  justify-content: center;
}
.approval-card {
  max-width: 720px;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.approval-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}
.approval-verified-banner {
  background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
  color: #fff;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
}
.approval-verified-banner i { font-size: 1.1rem; }
.approval-img {
  width: 100%;
  display: block;
}
.approval-footer-strip {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: rgba(255,255,255,0.9);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.88rem;
  font-weight: 600;
}
.approval-footer-strip i { color: var(--secondary-light); font-size: 1.1rem; }

/* ── 12. ABOUT US ── */
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.5fr;
  gap: 3.5rem;
  align-items: center;
  margin-bottom: 4rem;
}
.about-img-frame {
  position: relative;
  display: flex;
  justify-content: center;
}
.about-logo-img {
  max-width: 300px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
}
.about-img-accent {
  position: absolute;
  width: 80%;
  height: 80%;
  background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
  border-radius: var(--radius-lg);
  bottom: -14px;
  right: -14px;
  opacity: 0.18;
  z-index: 0;
}
.about-subtitle {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
}
[data-theme="dark"] .about-subtitle { color: var(--secondary-light); }
.about-text-side p {
  color: var(--text-muted);
  margin-bottom: 0.9rem;
  font-size: 1.02rem;
}
.about-text-side strong { color: var(--text); }
.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.25rem;
}
.about-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(200,150,62,0.1);
  border: 1px solid rgba(200,150,62,0.3);
  color: var(--secondary-dark);
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
}
[data-theme="dark"] .about-tag { color: var(--secondary-light); }
.about-tag i { color: var(--secondary); }

/* ── 13. STATS ── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}
.stat-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 2rem 1.25rem;
  text-align: center;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s ease, transform 0.65s ease, box-shadow var(--transition);
}
.stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary), var(--secondary-light));
}
.stat-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.stat-card:hover {
  transform: translateY(-7px) !important;
  box-shadow: var(--shadow-lg);
}
.stat-icon {
  width: 58px; height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.1rem;
  color: #fff;
  font-size: 1.35rem;
  box-shadow: 0 4px 16px rgba(26,60,94,0.35);
}
.stat-number {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--secondary);
  line-height: 1.1;
  margin-bottom: 0.45rem;
}
.stat-label {
  font-size: 0.79rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ── 14. PROJECT INTRO ── */
.project-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.project-intro-img {
  position: relative;
}
.project-intro-img img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}
.project-intro-img-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: rgba(10,22,40,0.85);
  backdrop-filter: blur(8px);
  color: #fff;
  padding: 0.6rem 1rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  border: 1px solid rgba(200,150,62,0.4);
}
.project-intro-img-badge i { color: var(--secondary-light); }

.project-tagline {
  font-size: 1.15rem;
  color: var(--secondary);
  font-style: italic;
  font-weight: 500;
  margin-bottom: 1rem;
}
.project-intro-text p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 1.02rem;
}
.why-invest-list {
  margin-bottom: 2rem;
}
.why-invest-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.55rem 0;
  color: var(--text);
  font-size: 0.95rem;
  border-bottom: 1px solid var(--border);
}
.why-invest-list li:last-child { border-bottom: none; }
.why-invest-list li i {
  color: var(--secondary);
  font-size: 0.95rem;
  margin-top: 3px;
  flex-shrink: 0;
}

/* ── 15. MAP ── */
.map-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  margin-bottom: 3rem;
  border: 1px solid var(--border);
}
.map-wrapper iframe {
  width: 100%;
  height: 420px;
  border: none;
  display: block;
}
.map-open-btn {
  position: absolute;
  bottom: 1.25rem;
  right: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.65rem 1.25rem;
  border-radius: 50px;
  box-shadow: 0 4px 16px rgba(200,150,62,0.4);
  transition: all var(--transition);
}
.map-open-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,150,62,0.5);
}

/* ── 16. TABS ── */
.tabs-wrapper {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  overflow: hidden;
}
.tab-buttons {
  display: flex;
  flex-wrap: nowrap;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
  scrollbar-width: none;
}
.tab-buttons::-webkit-scrollbar { display: none; }
.tab-btn {
  flex: 1;
  min-width: 140px;
  padding: 1.05rem 1rem;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  white-space: nowrap;
  transition: all var(--transition);
  letter-spacing: 0.01em;
}
.tab-btn:hover {
  color: var(--secondary);
  background: rgba(200,150,62,0.06);
}
.tab-btn.active {
  color: var(--secondary);
  border-bottom-color: var(--secondary);
  background: rgba(200,150,62,0.07);
}
.tab-btn i { font-size: 0.95rem; }

.tab-content {
  display: none;
  padding: 1.75rem;
  animation: tabReveal 0.35s ease;
}
.tab-content.active { display: block; }
@keyframes tabReveal {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.tab-intro {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}
.tab-intro-icon {
  font-size: 1.8rem;
  color: var(--secondary);
  flex-shrink: 0;
}
.tab-intro h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.2rem;
}
[data-theme="dark"] .tab-intro h3 { color: var(--secondary-light); }
.tab-intro p { font-size: 0.88rem; color: var(--text-muted); }

/* ── 17. TABLES ── */
.location-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}
.location-table thead th {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: rgba(255,255,255,0.95);
  padding: 0.85rem 1.1rem;
  text-align: left;
  font-weight: 600;
  letter-spacing: 0.04em;
  font-size: 0.82rem;
  text-transform: uppercase;
}
.location-table thead th:last-child { text-align: right; }
.location-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}
.location-table tbody tr:last-child { border-bottom: none; }
.location-table tbody tr:hover { background: rgba(200,150,62,0.07); }
.location-table tbody td {
  padding: 0.85rem 1.1rem;
  color: var(--text);
  vertical-align: middle;
}
.location-table tbody td:first-child { font-weight: 500; }
.location-table tbody td:last-child {
  text-align: right;
  font-weight: 700;
  color: var(--secondary-dark);
}
[data-theme="dark"] .location-table tbody td:last-child { color: var(--secondary-light); }

/* ── 18. CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(6,1fr);
  gap: 1.5rem;
}
.contact-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  transition-delay: var(--card-delay, 0s);
}
.contact-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-lg);
}
.contact-icon {
  width: 58px; height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.1rem;
  color: #fff;
  font-size: 1.25rem;
  box-shadow: 0 4px 16px rgba(200,150,62,0.35);
}
.contact-icon-fb {
  background: linear-gradient(135deg, #1877f2 0%, #0d5dbf 100%);
  box-shadow: 0 4px 16px rgba(24,119,242,0.35);
}
.contact-icon-ig {
  background: linear-gradient(135deg, #f58529 0%, #dd2a7b 50%, #8134af 100%);
  box-shadow: 0 4px 16px rgba(221,42,123,0.35);
}
.contact-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
[data-theme="dark"] .contact-card h3 { color: var(--secondary-light); }
.contact-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.contact-card a {
  color: var(--secondary-dark);
  font-weight: 500;
  transition: color var(--transition);
}
[data-theme="dark"] .contact-card a { color: var(--secondary-light); }
.contact-card a:hover { text-decoration: underline; }

/* ── 19. FOOTER ── */
.footer {
  background: linear-gradient(160deg, #010e08 0%, var(--primary-dark) 50%, #022c1e 100%);
  color: rgba(255,255,255,0.65);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  gap: 2.5rem;
}

/* Left – logo */
.footer-brand {
  flex-shrink: 0;
  padding-right: 2.5rem;
  border-right: 1px solid rgba(255,255,255,0.12);
}
.footer-logo {
  height: 56px;
  object-fit: contain;
  background: rgba(255,255,255,0.92);
  padding: 6px 16px;
  border-radius: var(--radius-sm);
  display: block;
}

/* Right – tagline + social */
.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4rem;
  text-align: left;
  padding-left: 0.5rem;
}
.footer-tagline {
  font-size: 1.1rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  margin: 0;
}
.footer-sub-tagline {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.48);
  margin: 0;
}
.footer-social {
  display: flex;
  gap: 0.6rem;
  margin-top: 0.4rem;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  transition: all var(--transition);
}
.footer-social a:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  color: #fff;
  transform: translateY(-2px);
}

/* Bottom bar */
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.25rem 1.5rem;
  text-align: center;
  font-size: 0.82rem;
  opacity: 0.5;
  padding: 1.1rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-bottom p { margin: 0; }
.footer-bottom a { color: var(--secondary-light); }
.footer-bottom a:hover { text-decoration: underline; }

/* Responsive */
@media (max-width: 600px) {
  .footer-inner {
    flex-direction: column;
    align-items: center;
    padding: 2rem 1.25rem;
    text-align: center;
    gap: 1.5rem;
  }
  .footer-brand {
    padding-right: 0;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.12);
    padding-bottom: 1.5rem;
  }
  .footer-right {
    align-items: center;
    text-align: center;
    padding-left: 0;
  }
  .footer-social { justify-content: center; }
}

/* ── 20. FLOATING ENQUIRE FAB ── */
.enquire-fab {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1.6rem;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 30px rgba(200,150,62,0.5);
  transition: transform var(--transition), box-shadow var(--transition);
  animation: fabPulse 2.5s ease-in-out infinite;
  letter-spacing: 0.02em;
}
.enquire-fab i { font-size: 1.05rem; }
.enquire-fab:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 12px 40px rgba(200,150,62,0.6);
  animation: none;
}
.enquire-fab:active { transform: scale(0.97); }
@keyframes fabPulse {
  0%, 100% { box-shadow: 0 6px 30px rgba(200,150,62,0.5); }
  50%       { box-shadow: 0 6px 40px rgba(200,150,62,0.75); }
}

/* ── 21. MODAL ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.modal {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 460px;
  position: relative;
  box-shadow: var(--shadow-xl);
  transform: scale(0.88) translateY(20px);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  max-height: 92vh;
  overflow: hidden; /* clips scrollbar within rounded corners */
  display: flex;
  flex-direction: column;
}
.modal-body {
  overflow-y: auto;
  padding: 2.5rem 2.25rem;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
  flex: 1;
}
.modal-overlay.open .modal {
  transform: scale(1) translateY(0);
}
.modal-close {
  position: absolute;
  top: 1.1rem; right: 1.1rem;
  z-index: 10;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: all var(--transition);
}
.modal-close:hover {
  background: #fee2e2;
  color: #dc2626;
  border-color: #fca5a5;
}
.modal-header {
  text-align: center;
  margin-bottom: 2rem;
}
.modal-logo {
  height: 50px;
  margin: 0 auto 1rem;
  object-fit: contain;
}
.modal-header h2 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.35rem;
}
[data-theme="dark"] .modal-header h2 { color: var(--secondary-light); }
.modal-header p { font-size: 0.88rem; color: var(--text-muted); }

/* Form */
.form-group { margin-bottom: 1.2rem; }
.form-group label {
  display: block;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.45rem;
  letter-spacing: 0.02em;
}
.required { color: #dc2626; }
.input-wrapper {
  position: relative;
}
.input-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-light);
  font-size: 0.85rem;
  pointer-events: none;
}
.form-group input {
  width: 100%;
  padding: 0.875rem 1rem 0.875rem 2.75rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--bg);
  color: var(--text);
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input::placeholder { color: var(--text-light); }
.form-group input:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(200,150,62,0.18);
}
.form-group input.input-error { border-color: #dc2626; }
.form-group input.input-error:focus {
  box-shadow: 0 0 0 3px rgba(220,38,38,0.16);
}

.form-error-inline {
  display: block;
  font-size: 0.79rem;
  color: #dc2626;
  margin-top: 0.35rem;
  min-height: 1rem;
}
.spinner {
  width: 18px; height: 18px;
  border: 2.5px solid rgba(255,255,255,0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.65s linear infinite;
  flex-shrink: 0;
}
@keyframes spin { to { transform: rotate(360deg); } }
.hidden { display: none !important; }

.form-feedback {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 600;
  margin-top: 0.9rem;
  background: #dcfce7;
  color: #15803d;
}
.form-feedback-error {
  background: #fee2e2;
  color: #dc2626;
}
.form-feedback i { font-size: 1rem; flex-shrink: 0; }

/* ── 22. RESPONSIVE ── */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-grid .stat-card:nth-child(4),
  .stats-grid .stat-card:nth-child(5) {
    grid-column: auto;
  }
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-logo-img { max-width: 200px; }
  .project-intro { grid-template-columns: 1fr; gap: 2rem; }
  .project-intro-img { order: -1; }
  .project-intro-img img { height: 300px; }
  .project-intro-text .section-title { text-align: center; }
  .project-tagline { text-align: center; }
  .why-invest-list { text-align: left; }
  .project-intro-text .btn { display: flex; margin: 0 auto; width: fit-content; }
}

@media (max-width: 768px) {
  .section { padding: 70px 0; }
  .nav-links {
    position: fixed;
    top: var(--navbar-h);
    left: 0; right: 0;
    background: var(--bg);
    flex-direction: column;
    padding: 1rem;
    gap: 0.2rem;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s ease, opacity 0.3s ease;
    z-index: 999;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .nav-links a { padding: 0.75rem 1rem; font-size: 0.95rem; }
  .hamburger { display: flex; }
  .carousel-slide img { height: 300px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid .stat-card:last-child {
    grid-column: 1 / -1;
    max-width: 280px;
    margin: 0 auto;
    width: 100%;
  }
  .tab-btn span { display: none; }
  .tab-btn { min-width: 56px; padding: 1rem 0.75rem; }
  .tab-btn i { font-size: 1.05rem; }
  .tab-intro { flex-direction: column; text-align: center; }
  .enquire-fab span { display: none; }
  .enquire-fab {
    width: 56px; height: 56px;
    padding: 0;
    border-radius: 50%;
    justify-content: center;
  }
  .hero-scroll-hint { display: none; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.3rem; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .hero-buttons .btn { width: 100%; max-width: 280px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .modal { padding: 2rem 1.5rem; }
  .location-table { font-size: 0.85rem; }
  .location-table th, .location-table td { padding: 0.7rem 0.75rem; }
}
