/* ============================================================
   style.css — Metro Habitat Real Estate
   Color Palette: Navy #1B3A6B | Crimson #C0202A | White #FFFFFF
   ============================================================ */

/* ── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ── CSS Variables ───────────────────────────────────────── */
:root {
  --navy:        #1B3A6B;
  --navy-dark:   #122850;
  --navy-light:  #254d8f;
  --crimson:     #C0202A;
  --crimson-dark:#9c1821;
  --white:       #FFFFFF;
  --off-white:   #F7F8FC;
  --light-gray:  #EEF0F6;
  --gray:        #8892A4;
  --dark:        #0D1B2E;
  --text:        #2C3E50;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;

  --shadow-sm:   0 2px 12px rgba(27,58,107,0.10);
  --shadow-md:   0 6px 28px rgba(27,58,107,0.14);
  --shadow-lg:   0 16px 48px rgba(27,58,107,0.18);
  --radius:      12px;
  --radius-lg:   20px;
  --transition:  0.3s ease;
}

/* ── Reset & Base ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }

/* ── Typography ──────────────────────────────────────────── */
h1,h2,h3,h4 { font-family: var(--font-display); line-height: 1.25; color: var(--navy); }
h1 { font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); font-weight: 700; }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.5rem); font-weight: 600; }
p  { font-size: 1rem; color: var(--gray); }

/* ── Layout Utilities ────────────────────────────────────── */
.container { width: 92%; max-width: 1200px; margin: 0 auto; }
.section    { padding: 80px 0; }
.section-sm { padding: 50px 0; }
.text-center { text-align: center; }

/* ── Section Heading ─────────────────────────────────────── */
.section-heading {
  text-align: center;
  margin-bottom: 50px;
}
.section-heading h2 { margin-bottom: 12px; }
.section-heading p  { max-width: 560px; margin: 0 auto; font-size: 1.05rem; }
.divider {
  width: 60px; height: 4px;
  background: linear-gradient(90deg, var(--crimson), var(--navy));
  border-radius: 4px;
  margin: 14px auto 0;
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  transition: var(--transition);
  cursor: pointer;
}
.btn-primary {
  background: var(--crimson);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(192,32,42,0.30);
}
.btn-primary:hover {
  background: var(--crimson-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(192,32,42,0.40);
}
.btn-secondary {
  background: var(--white);
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-secondary:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-outline-white {
  border: 2px solid var(--white);
  color: var(--white);
  background: transparent;
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--navy);
}
.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  box-shadow: 0 4px 18px rgba(37,211,102,0.30);
}
.btn-whatsapp:hover {
  background: #1ebe5a;
  transform: translateY(-2px);
}
.btn-sm { padding: 9px 20px; font-size: 0.875rem; }

/* ── Navbar ──────────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 2px solid var(--light-gray);
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow-md); border-bottom-color: transparent; }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav-logo-text .brand-metro {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.25rem;
  color: var(--navy);
}
.nav-logo-text .brand-habitat {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.25rem;
  color: var(--crimson);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a {
  padding: 7px 14px;
  border-radius: 6px;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text);
  transition: var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--crimson);
  background: rgba(192,32,42,0.07);
}
.nav-links .nav-cta {
  background: var(--crimson);
  color: var(--white) !important;
  padding: 8px 20px;
  border-radius: 8px;
  margin-left: 8px;
  box-shadow: 0 3px 12px rgba(192,32,42,0.25);
}
.nav-links .nav-cta:hover {
  background: var(--crimson-dark) !important;
  transform: translateY(-1px);
}
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 6px;
  cursor: pointer;
  border-radius: 8px;
  background: transparent;
  transition: background var(--transition);
  flex-shrink: 0;
}
.hamburger:hover { background: var(--light-gray); }
.hamburger span {
  width: 22px;
  height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
  display: block;
}
.hamburger.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ── Mobile Drawer (right-side slide-in) ─────────────────────── */
.drawer-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(13,27,46,0.55);
  backdrop-filter: blur(3px);
  z-index: 1100;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.drawer-overlay.open { display: block; opacity: 1; }

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 300px;
  max-width: 85vw;
  background: var(--white);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 40px rgba(13,27,46,0.25);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}
.mobile-drawer.open { transform: translateX(0); }

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--light-gray);
  background: var(--off-white);
}
.drawer-logo {
  height: 46px;
  width: auto;
  object-fit: contain;
}
.drawer-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--light-gray);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  flex-shrink: 0;
}
.drawer-close:hover { background: var(--crimson); color: var(--white); }

.drawer-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 12px 0;
}
.drawer-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 24px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  border-left: 3px solid transparent;
  transition: var(--transition);
  text-decoration: none;
}
.drawer-nav a:hover {
  background: rgba(27,58,107,0.05);
  border-left-color: var(--navy);
  color: var(--navy);
  padding-left: 28px;
}
.drawer-nav a.active {
  background: rgba(192,32,42,0.07);
  border-left-color: var(--crimson);
  color: var(--crimson);
  font-weight: 600;
}

.drawer-footer {
  padding: 20px;
  border-top: 1px solid var(--light-gray);
  background: var(--off-white);
}
.drawer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--gray);
}

/* ── Show hamburger on mobile, hide desktop nav ──────────────── */
@media (max-width: 820px) {
  .hamburger { display: flex; }
  .nav-links  { display: none; }
}

/* ── Hero / Slider ───────────────────────────────────────── */
.hero-slider {
  position: relative;
  height: 92vh;
  min-height: 520px;
  overflow: hidden;
  background: var(--dark);
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s ease, transform 1.2s ease;
  transform: scale(1.04);
}
.slide.active { opacity: 1; transform: scale(1); }
.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,27,46,0.82) 0%, rgba(27,58,107,0.55) 60%, transparent 100%);
}
.slide-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 0 6%;
}
.slide-text { max-width: 620px; color: var(--white); }
.slide-text .badge {
  display: inline-block;
  background: var(--crimson);
  color: var(--white);
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.slide-text h1 {
  color: var(--white);
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.slide-text p {
  color: rgba(255,255,255,0.88);
  font-size: 1.1rem;
  margin-bottom: 32px;
  max-width: 500px;
}
.slide-cta { display: flex; gap: 14px; flex-wrap: wrap; }

.slider-controls {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 10;
}
.slider-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.slider-dot.active {
  background: var(--white);
  width: 28px;
  border-radius: 5px;
}
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(6px);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.3);
  width: 48px; height: 48px;
  border-radius: 50%;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  z-index: 10;
}
.slider-arrow:hover { background: var(--crimson); border-color: var(--crimson); }
.slider-arrow.prev { left: 20px; }
.slider-arrow.next { right: 20px; }

@media (max-width: 600px) {
  .hero-slider { height: 85vh; }
  .slide-text h1 { font-size: 1.8rem; }
  .slide-cta { flex-direction: column; }
  .slider-arrow { display: none; }
}

/* ── Trust Bar ───────────────────────────────────────────── */
.trust-bar {
  background: var(--navy);
  padding: 20px 0;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px 40px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 500;
}
.trust-item .ti-icon {
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

/* ── Cards ───────────────────────────────────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 28px;
}
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.card-img-wrap {
  position: relative;
  overflow: hidden;
  height: 210px;
}
.card-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.card:hover .card-img-wrap img { transform: scale(1.07); }
.card-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--crimson);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.card-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.card-body h3 { margin-bottom: 8px; color: var(--navy); }
.card-body p  { font-size: 0.92rem; flex: 1; }
.card-price {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--crimson);
  margin: 12px 0 16px;
}
.card-footer { padding: 0 22px 22px; }

/* ── Why Choose Section ──────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}
.why-item {
  padding: 32px 24px;
  background: var(--white);
  border-radius: var(--radius);
  border-left: 4px solid var(--crimson);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.why-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.why-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
}
.why-item h3 { font-size: 1.1rem; margin-bottom: 8px; }

/* ── Stats Counter ───────────────────────────────────────── */
.stats-section { background: linear-gradient(135deg, var(--navy-dark), var(--navy)); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 24px;
  text-align: center;
}
.stat-item { padding: 32px 16px; }
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.stat-suffix { color: var(--crimson); }
.stat-label {
  color: rgba(255,255,255,0.72);
  font-size: 0.9rem;
  margin-top: 8px;
  font-weight: 500;
}

/* ── Investment Benefits ─────────────────────────────────── */
.invest-section { background: var(--off-white); }
.invest-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.invest-list { display: flex; flex-direction: column; gap: 16px; }
.invest-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.invest-item:hover { box-shadow: var(--shadow-md); }
.invest-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--crimson), #e84855);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.invest-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.invest-img img { width: 100%; height: 380px; object-fit: cover; }
@media (max-width: 768px) {
  .invest-grid { grid-template-columns: 1fr; }
  .invest-img { order: -1; }
  .invest-img img { height: 240px; }
}

/* ── Testimonials ────────────────────────────────────────── */
.testimonials-section { background: var(--white); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  position: relative;
  border-top: 4px solid var(--crimson);
  transition: var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testimonial-card .quote { font-size: 3rem; color: var(--crimson); line-height: 1; opacity: 0.4; }
.testimonial-card p { font-size: 0.97rem; color: var(--text); margin: 8px 0 20px; font-style: italic; }
.t-author { display: flex; align-items: center; gap: 12px; }
.t-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 700; font-size: 1rem;
  flex-shrink: 0;
}
.t-name { font-weight: 600; color: var(--navy); font-size: 0.95rem; }
.t-role { font-size: 0.82rem; color: var(--gray); }
.stars { color: #F5A623; font-size: 0.85rem; margin-bottom: 4px; }

/* ── CTA Strip ───────────────────────────────────────────── */
.cta-strip {
  background: linear-gradient(135deg, var(--crimson-dark), var(--crimson));
  padding: 64px 0;
  text-align: center;
}
.cta-strip h2 { color: var(--white); margin-bottom: 12px; }
.cta-strip p  { color: rgba(255,255,255,0.85); margin-bottom: 30px; font-size: 1.05rem; }
.cta-strip-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── Footer ──────────────────────────────────────────────── */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-brand .nav-logo { margin-bottom: 16px; }
.footer-brand p { font-size: 0.92rem; line-height: 1.8; }
.footer-col h4 {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--crimson);
  display: inline-block;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.65);
  font-size: 0.92rem;
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--crimson); padding-left: 4px; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.9rem;
}
.footer-contact-item span { opacity: 0.65; }
.social-links { display: flex; gap: 10px; margin-top: 8px; }
.social-btn {
  width: 38px; height: 38px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  transition: var(--transition);
}
.social-btn:hover { background: var(--crimson); color: var(--white); transform: translateY(-2px); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.87rem;
}
.footer-bottom a { color: var(--crimson); }
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ── Reveal Animation ────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; }
.reveal.delay-4 { transition-delay: 0.4s; }

/* ── Toast ───────────────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  padding: 14px 24px;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--white);
  z-index: 9999;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s, transform 0.3s;
  box-shadow: var(--shadow-lg);
  max-width: 340px;
}
.toast.show { opacity: 1; transform: none; }
.toast-success { background: #16a34a; }
.toast-error   { background: var(--crimson); }

/* ── Spinner ─────────────────────────────────────────────── */
.spinner-wrap { display: flex; justify-content: center; align-items: center; padding: 60px 0; }
.spinner {
  width: 42px; height: 42px;
  border: 4px solid var(--light-gray);
  border-top-color: var(--crimson);
  border-radius: 50%;
  animation: spin 0.75s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Page Hero (inner pages) ─────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, var(--navy-light) 100%);
  padding: 70px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero h1 { color: var(--white); margin-bottom: 12px; position: relative; }
.page-hero p  { color: rgba(255,255,255,0.78); max-width: 500px; margin: 0 auto; position: relative; }
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
  font-size: 0.87rem;
  color: rgba(255,255,255,0.55);
  position: relative;
}
.breadcrumb a { color: rgba(255,255,255,0.75); }
.breadcrumb a:hover { color: var(--crimson); }

/* ── Plots Page ──────────────────────────────────────────── */
.plots-section { background: var(--off-white); }
.plot-meta { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; margin-bottom: 10px; }
.plot-meta span { font-size: 0.82rem; color: var(--gray); }

/* ── Blogs Page ──────────────────────────────────────────── */
.blog-card .card-img-wrap { height: 220px; }
.blog-date { font-size: 0.8rem; color: var(--gray); margin-bottom: 8px; }

/* ── About Page ──────────────────────────────────────────── */
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-story-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.about-story-img img { width: 100%; height: 420px; object-fit: cover; }
.about-story-img .img-badge {
  position: absolute;
  bottom: 24px; right: 24px;
  background: var(--crimson);
  color: var(--white);
  padding: 12px 20px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-md);
}
.about-story-img .img-badge strong { display: block; font-size: 1.6rem; font-family: var(--font-display); }
.about-story-img .img-badge span  { font-size: 0.82rem; }
.about-values { display: flex; flex-direction: column; gap: 14px; margin-top: 28px; }
.value-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 18px;
  background: var(--off-white);
  border-radius: var(--radius);
  border-left: 3px solid var(--crimson);
}
.value-icon { color: var(--navy); font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.team-section { background: var(--off-white); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
}
.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-align: center;
}
.team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.team-card .t-img {
  height: 180px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; color: rgba(255,255,255,0.3);
}
.team-card .t-info { padding: 20px 16px; }
.social-links-about { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 16px; }
.social-link-big {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
  color: var(--text);
  border: 1.5px solid var(--light-gray);
}
.social-link-big:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.social-link-big.instagram:hover { background: #E1306C; color: var(--white); border-color: #E1306C; }
.social-link-big.whatsapp:hover  { background: #25D366; color: var(--white); border-color: #25D366; }
.social-link-big.facebook:hover  { background: #1877F2; color: var(--white); border-color: #1877F2; }
.social-link-big.twitter:hover   { background: #1DA1F2; color: var(--white); border-color: #1DA1F2; }
.social-link-big.youtube:hover   { background: #FF0000; color: var(--white); border-color: #FF0000; }
@media (max-width: 768px) {
  .about-story-grid { grid-template-columns: 1fr; }
  .about-story-img img { height: 280px; }
}

/* ── Contact Page ────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 7px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid var(--light-gray);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.97rem;
  color: var(--text);
  background: var(--off-white);
  transition: border-color var(--transition);
  resize: vertical;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--navy);
  background: var(--white);
}
.form-group textarea { min-height: 120px; }
.contact-info-card {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: sticky;
  top: 100px;
}
.contact-info-card h3 { color: var(--white); margin-bottom: 24px; }
.ci-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}
.ci-icon {
  width: 42px; height: 42px;
  background: rgba(255,255,255,0.12);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.ci-text { font-size: 0.9rem; opacity: 0.8; line-height: 1.5; }
.ci-label { font-weight: 600; color: var(--white); font-size: 0.85rem; margin-bottom: 3px; }
@media (max-width: 800px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-info-card { position: static; }
  .contact-form-card { padding: 28px 20px; }
}

/* ── Admin Panel ─────────────────────────────────────────── */
.admin-layout {
  display: flex;
  min-height: 100vh;
}
.admin-sidebar {
  width: 260px;
  background: var(--navy-dark);
  color: var(--white);
  flex-shrink: 0;
  padding: 0;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
}
.admin-sidebar .sidebar-logo {
  padding: 24px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.sidebar-nav { padding: 16px 0; }
.sidebar-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 22px;
  color: rgba(255,255,255,0.65);
  font-size: 0.93rem;
  font-weight: 500;
  transition: var(--transition);
  border-left: 3px solid transparent;
}
.sidebar-nav a:hover,
.sidebar-nav a.active {
  color: var(--white);
  background: rgba(255,255,255,0.08);
  border-left-color: var(--crimson);
}
.admin-content {
  flex: 1;
  background: var(--off-white);
  overflow-y: auto;
}
.admin-topbar {
  background: var(--white);
  padding: 16px 28px;
  border-bottom: 1px solid var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
}
.admin-topbar h2 { font-size: 1.2rem; color: var(--navy); }
.admin-body { padding: 28px; }
.admin-section { display: none; }
.admin-section.active { display: block; }
.admin-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
}
.admin-card h3 {
  font-size: 1.1rem;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--light-gray);
}
.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.admin-table th {
  background: var(--off-white);
  padding: 10px 14px;
  text-align: left;
  font-weight: 600;
  color: var(--navy);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.admin-table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--light-gray);
  vertical-align: top;
}
.admin-table tr:hover td { background: rgba(27,58,107,0.03); }
.admin-table img { width: 60px; height: 44px; object-fit: cover; border-radius: 6px; }
.table-actions { display: flex; gap: 8px; }
.btn-edit  { background: rgba(27,58,107,0.1);  color: var(--navy);   padding: 5px 12px; border-radius: 6px; font-size: 0.82rem; font-weight: 600; }
.btn-delete{ background: rgba(192,32,42,0.1); color: var(--crimson); padding: 5px 12px; border-radius: 6px; font-size: 0.82rem; font-weight: 600; }
.btn-edit:hover   { background: var(--navy);   color: var(--white); }
.btn-delete:hover { background: var(--crimson); color: var(--white); }
.admin-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px,1fr)); gap: 16px; margin-bottom: 28px; }
.admin-stat-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 22px 20px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--crimson);
}
.admin-stat-card .stat-n { font-size: 2rem; font-weight: 700; color: var(--navy); line-height: 1; }
.admin-stat-card .stat-l { font-size: 0.85rem; color: var(--gray); margin-top: 6px; }

/* Admin login */
.admin-login-wrap {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.admin-login-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  width: 100%;
  max-width: 420px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.admin-login-card img { height: 64px; margin: 0 auto 20px; }
.admin-login-card h2 { margin-bottom: 6px; }
.admin-login-card > p { margin-bottom: 28px; }
.admin-login-card .form-group { text-align: left; }
.login-error { color: var(--crimson); font-size: 0.87rem; margin-top: 10px; display: none; }

/* Responsive admin */
@media (max-width: 820px) {
  .admin-layout { flex-direction: column; }
  .admin-sidebar { width: 100%; height: auto; position: static; }
  .sidebar-nav { display: flex; overflow-x: auto; padding: 8px 0; }
  .sidebar-nav a { flex-direction: column; gap: 4px; padding: 10px 16px; font-size: 0.78rem; white-space: nowrap; border-left: none; border-bottom: 3px solid transparent; }
  .sidebar-nav a.active, .sidebar-nav a:hover { border-bottom-color: var(--crimson); border-left: none; }
  .admin-body { padding: 16px; }
  .admin-table { display: block; overflow-x: auto; }
}

/* ── Empty State ─────────────────────────────────────────── */
.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--gray);
}
.empty-state .es-icon { font-size: 3rem; margin-bottom: 14px; opacity: 0.4; }
.empty-state p { font-size: 1rem; }

/* ── Modal ───────────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(13,27,46,0.6);
  backdrop-filter: blur(4px);
  z-index: 9000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  width: 100%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.modal-box h3 { margin-bottom: 24px; }
.modal-close {
  position: absolute;
  top: 18px; right: 18px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--light-gray);
  color: var(--text);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; cursor: pointer;
  transition: var(--transition);
}
.modal-close:hover { background: var(--crimson); color: var(--white); }

/* ── Misc Utilities ──────────────────────────────────────── */
.bg-offwhite { background: var(--off-white); }
.text-navy    { color: var(--navy); }
.text-crimson { color: var(--crimson); }
.mt-0 { margin-top: 0 !important; }
.mb-24 { margin-bottom: 24px; }
.full-width { width: 100%; }
.flex-center { display: flex; align-items: center; justify-content: center; }

/* ── Why Grid — 4 Big Boxes ─────────────────────────────────── */
.why-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.why-item-big {
  padding: 40px 30px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border-left: 5px solid var(--crimson);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.why-item-big:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-left-color: var(--navy);
}
.why-icon-big {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 22px;
  flex-shrink: 0;
}
.why-item-big h3 { font-size: 1.2rem; margin-bottom: 12px; color: var(--navy); }
.why-item-big p  { font-size: 0.97rem; line-height: 1.7; color: var(--gray); }
@media (max-width: 1024px) { .why-grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .why-grid-4 { grid-template-columns: 1fr; } .why-item-big { padding: 28px 22px; } }

/* ── Testimonials — Big Centered Cards ───────────────────────── */
.testimonials-grid-big {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}
.testimonial-card-big {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border-top: 5px solid var(--crimson);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.testimonial-card-big:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
@media (max-width: 900px) { .testimonials-grid-big { grid-template-columns: 1fr; max-width: 520px; } }
@media (min-width: 601px) and (max-width: 900px) { .testimonials-grid-big { grid-template-columns: repeat(2, 1fr); max-width: 100%; } }

/* ── Location Cards Grid ─────────────────────────────────────── */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.location-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 26px 16px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--crimson);
  transition: var(--transition);
  cursor: default;
}
.location-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-top-color: var(--navy); }
.loc-icon { font-size: 1.6rem; margin-bottom: 10px; }
.loc-name  { font-weight: 700; font-size: 0.95rem; color: var(--navy); }
@media (max-width: 900px)  { .locations-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 640px)  { .locations-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 420px)  { .locations-grid { grid-template-columns: repeat(2, 1fr); } }

/* ── YouTube Section ─────────────────────────────────────────── */
.yt-section { background: var(--dark); padding: 80px 0; }
.yt-section .section-heading h2 { color: var(--white); }
.yt-section .section-heading p  { color: rgba(255,255,255,0.65); }
.yt-section .divider            { background: linear-gradient(90deg, #FF0000, var(--crimson)); }
.yt-embed-wrap {
  position: relative;
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  aspect-ratio: 16 / 9;
  border: 3px solid rgba(255,255,255,0.08);
}
.yt-embed-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }
.yt-channel-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #FF0000;
  color: var(--white);
  padding: 13px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  margin: 28px auto 0;
  width: fit-content;
}
.yt-channel-btn:hover { background: #cc0000; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255,0,0,0.35); }
