/* ═══════════════════════════════════════════
   Swami Residences — style.css
   ═══════════════════════════════════════════ */

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

:root {
  --navy: #1b2d60;
  --navy-dark: #0e1a3c;
  --gold: #f5a623;
  --gold-light: #ffc34d;
  --gold-dark: #d4880a;
  --white: #ffffff;
  --off-white: #f3f6ff;
  --gray-100: #e8edf8;
  --gray-200: #cfd5ec;
  --gray-400: #8991b0;
  --gray-600: #5a6180;
  --gray-800: #2c3461;
  --text-body: #454c6e;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', 'Segoe UI', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ─── NAVBAR ─── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 48px;
  transition: background 0.4s, box-shadow 0.4s, padding 0.4s;
}
.navbar.scrolled {
  background: rgba(26, 34, 56, 0.97);
  box-shadow: 0 2px 30px rgba(0,0,0,0.25);
  padding: 12px 48px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-logo img {
  height: 46px;
  border-radius: 4px;
}
.nav-logo span {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: rgba(255,255,255,0.82);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.btn-book-nav {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy-dark);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 10px 26px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: all 0.3s;
  box-shadow: 0 4px 16px rgba(245,166,35,0.35);
}
.btn-book-nav:hover { background: linear-gradient(135deg, var(--gold-light), var(--gold)); transform: translateY(-1px); box-shadow: 0 6px 22px rgba(245,166,35,0.5); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  width: 26px; height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: 0.3s;
}

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(14, 26, 60, 0.88) 0%, rgba(27, 45, 96, 0.68) 50%, rgba(14, 26, 60, 0.60) 100%),
    url('Hero img.png') center/cover no-repeat;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 140px 48px 80px;
  max-width: 820px;
  animation: fadeUp 1s ease-out;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-location {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}
.hero-location .line {
  width: 48px; height: 2px;
  background: var(--gold);
}
.hero-location span {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.6rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 28px;
}
.hero h1 em {
  color: var(--gold);
  font-style: italic;
}
.hero h2 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 400;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-desc {
  font-size: 1.12rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.78);
  max-width: 640px;
  margin-bottom: 40px;
}
.hero-btns {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy-dark);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 15px 34px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 6px 20px rgba(245,166,35,0.4);
}
.btn-primary:hover { background: linear-gradient(135deg, var(--gold-light), var(--gold)); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(245,166,35,0.55); }
.btn-outline {
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 34px;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.4);
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: all 0.3s;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }


/* ─── SECTION COMMONS ─── */
section { padding: 100px 48px; }
.section-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.section-label .dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
}
.section-label span {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 20px;
}
.section-subtitle {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-body);
  max-width: 600px;
}

/* ─── ABOUT ─── */
.about { background: var(--off-white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 50px;
}
.about-img {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
}
.about-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.about-img:hover img { transform: scale(1.04); }
.about-text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-body);
  margin-bottom: 20px;
}
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}
.stat-card {
  background: var(--white);
  padding: 28px;
  border-radius: 14px;
  border-left: 4px solid var(--gold);
  box-shadow: 0 4px 20px rgba(27,45,96,0.08);
}
.stat-card .num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
}
.stat-card .label {
  font-size: 0.85rem;
  color: var(--gray-600);
  margin-top: 4px;
}

/* ─── AMENITIES ─── */
.amenities { background: var(--off-white); }

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 50px;
}
.amenity-card {
  background: var(--white);
  padding: 32px 20px 26px;
  border-radius: 20px;
  border: 1.5px solid var(--gray-200);
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.amenity-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.35s ease;
}
.amenity-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(26,34,56,0.11);
  border-color: rgba(201,168,76,0.35);
}
.amenity-card:hover::after {
  transform: scaleX(1);
}
.amenity-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, rgba(201,168,76,0.13), rgba(201,168,76,0.05));
  border: 1.5px solid rgba(201,168,76,0.3);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.6rem;
  color: var(--gold);
  transition: all 0.35s;
}
.amenity-card:hover .amenity-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-color: transparent;
  transform: scale(1.08);
  color: #ffffff;
}
.amenity-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 8px;
  font-weight: 700;
}
.amenity-card p {
  font-size: 0.83rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ─── FLOOR PLAN ─── */
.floorplan { background: var(--navy-dark); color: var(--white); }
.floorplan .section-label span { color: var(--gold-light); }
.floorplan .section-title { color: var(--white); }
.floorplan .section-subtitle { color: rgba(255,255,255,0.65); }
.plan-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 50px;
}
.plan-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 40px 32px;
  transition: all 0.35s;
}
.plan-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
  border-color: var(--gold);
}
.plan-card .tag {
  display: inline-block;
  background: var(--gold);
  color: var(--navy-dark);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 22px;
}
.plan-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 18px;
}
.plan-details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.plan-details li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.75);
}
.plan-details li .icon { color: var(--gold); font-size: 1rem; }
.plan-card .price {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.plan-card .price .amount {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
}
.plan-card .price .note {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
}

/* ─── LOCATION ─── */
.location-section { background: var(--off-white); }
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 50px;
  align-items: stretch;
}
.location-map {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  min-height: 420px;
}
.location-map iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: none;
  display: block;
}
.nearby-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  height: 100%;
  justify-content: space-between;
}
.nearby-item {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--white);
  padding: 18px 22px;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(27,45,96,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
  flex: 1;
}
.nearby-item:hover { transform: translateX(6px); box-shadow: 0 6px 20px rgba(27,45,96,0.12); }
.nearby-icon {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--navy), #3558c8);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #fff;
  flex-shrink: 0;
}
.nearby-item h4 { font-size: 0.93rem; font-weight: 600; color: var(--navy); margin-bottom: 3px; }
.nearby-item p { font-size: 0.8rem; color: var(--gray-600); }

/* ─── CONTACT ─── */
.contact {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  text-align: center;
}
.contact .section-label { justify-content: center; }
.contact .section-label span { color: var(--gold-light); }
.contact .section-label .dot { background: var(--gold-light); }
.contact .section-title { color: var(--white); }
.contact .section-subtitle { color: rgba(255,255,255,0.6); margin: 0 auto; }
.contact-inner { max-width: 540px; margin: 0 auto; }
.contact-card {
  background: var(--white);
  border-radius: 20px;
  padding: 36px 32px;
  margin-top: 36px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  border-top: 4px solid var(--gold);
  text-align: left;
}
.contact-form { display: flex; flex-direction: column; gap: 12px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-group label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-600);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 9px 13px;
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--gray-800);
  background: var(--off-white);
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(245,166,35,0.18);
}
.form-group textarea { resize: vertical; min-height: 70px; }
.btn-submit {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy-dark);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 11px 28px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  box-shadow: 0 4px 16px rgba(245,166,35,0.38);
}
.btn-submit:hover { background: linear-gradient(135deg, var(--gold-light), var(--gold)); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(245,166,35,0.5); }
.contact-submit { width: 100%; justify-content: center; align-self: unset; }

/* ─── FOOTER ─── */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.65);
  padding: 60px 48px 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.4fr;
  gap: 48px;
  margin-bottom: 40px;
}
.footer-brand img { height: 44px; border-radius: 4px; margin-bottom: 16px; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; max-width: 320px; }
.footer h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 18px;
}
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer ul a {
  text-decoration: none;
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  transition: color 0.3s;
}
.footer ul a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
}
.footer-bottom a { color: var(--gold); text-decoration: none; }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  /* Navbar */
  .navbar { padding: 14px 24px; }
  .nav-links { display: none; }
  .btn-book-nav { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(14,26,60,0.98);
    padding: 24px 28px;
    gap: 20px;
  }
  .nav-links.open a { font-size: 1rem; padding: 4px 0; }

  /* Sections */
  section { padding: 64px 24px; }

  /* Hero */
  .hero-content { padding: 120px 24px 64px; }
.hero-btns { flex-direction: column; align-items: flex-start; gap: 14px; }
  .hero-btns .btn-primary,
  .hero-btns .btn-outline { width: 100%; max-width: 300px; justify-content: center; text-align: center; }

  /* Grids → single column */
  .about-grid,
  .location-grid,
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .form-row { grid-template-columns: 1fr; }
  .plan-cards { grid-template-columns: 1fr; }

  /* Amenities */
  .amenities-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

  /* Location map */
  .location-map { min-height: 320px; }
  .location-map iframe { min-height: 320px; }
  .nearby-list { gap: 12px; }

  /* Footer */
  .footer { padding: 50px 24px 24px; }
  .footer-grid { text-align: center; gap: 28px; }
  .footer-brand p { margin: 0 auto; }
  .footer ul { align-items: center; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
}

@media (max-width: 480px) {
  /* Sections */
  section { padding: 52px 18px; }

  /* Hero */
  .hero-content { padding: 100px 18px 52px; }
.hero h1 { font-size: 2.2rem; }
  .hero h2 { font-size: 0.88rem; }
  .hero-desc { font-size: 1rem; }
  .hero-btns .btn-primary,
  .hero-btns .btn-outline { max-width: 100%; }

  /* Section headings */
  .section-title { font-size: 1.75rem; }
  .section-subtitle { font-size: 0.95rem; }

  /* About stats → single column */
  .about-stats { grid-template-columns: 1fr; gap: 14px; }
  .stat-card { padding: 20px 22px; }

  /* Amenities */
  .amenities-grid { gap: 12px; }
  .amenity-card { padding: 22px 14px 18px; }
  .amenity-icon { width: 52px; height: 52px; font-size: 1.35rem; }

  /* Nearby */
  .location-map { min-height: 260px; }
  .location-map iframe { min-height: 260px; }
  .nearby-list { gap: 10px; justify-content: flex-start; }
  .nearby-item { padding: 14px 16px; gap: 14px; flex: unset; }

  /* Footer */
  .footer { padding: 44px 18px 20px; }
  .footer h4 { font-size: 0.95rem; }

  /* Modal */
  .modal-content { padding: 28px 18px; border-radius: 18px; max-height: 88vh; overflow-y: auto; }
  .modal-header h3 { font-size: 1.3rem; }
}

/* ─── GALLERY ─── */
.gallery-section { padding: 100px 48px; }
@media (max-width: 900px) { .gallery-section { padding: 64px 24px; } }
@media (max-width: 480px) { .gallery-section { padding: 52px 18px; } }

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── INVESTORS SECTION ─── */
.investors {
  background: var(--off-white);
}
.investors-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-top: 50px;
  align-items: start;
}
.investors-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.investor-card {
  background: var(--white);
  padding: 32px 24px;
  border-radius: 16px;
  border-top: 4px solid var(--gold);
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
  transition: transform 0.3s, box-shadow 0.3s;
}
.investor-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(26, 34, 56, 0.08);
}
.investor-card .stat-icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
}
.investor-card h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--navy);
  margin-bottom: 8px;
}
.investor-card h4 {
  font-size: 0.95rem;
  color: var(--navy-dark);
  margin-bottom: 8px;
}
.investor-card p {
  font-size: 0.85rem;
  color: var(--gray-600);
  line-height: 1.5;
}

/* ─── ROI ESTIMATOR WIDGET ─── */
.estimator-box {
  background: var(--white);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid var(--gray-200);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.estimator-box h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--navy);
  margin-bottom: 12px;
}
.estimator-box p {
  font-size: 0.92rem;
  color: var(--gray-600);
  margin-bottom: 24px;
}
.estimator-tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--gray-200);
  padding-bottom: 12px;
  flex-wrap: wrap;
}
.estimator-tab {
  background: none;
  border: none;
  padding: 10px 20px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-600);
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.3s;
}
.estimator-tab:hover {
  color: var(--navy);
  background: var(--gray-100);
}
.estimator-tab.active {
  background: var(--navy);
  color: var(--white);
}
.estimator-data-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 30px;
}
.estimator-data-row {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 0.95rem;
}
.estimator-data-row:last-child {
  border-bottom: none;
}
.estimator-data-row .val-label {
  color: var(--gray-600);
  font-weight: 500;
}
.estimator-data-row .val-number {
  color: var(--navy-dark);
  font-weight: 700;
}
.estimator-data-row .val-highlight {
  color: var(--gold-dark);
  font-size: 1.15rem;
}
.btn-investor-cta {
  width: 100%;
  text-align: center;
  justify-content: center;
  background: var(--gold);
  color: var(--navy-dark);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 15px 34px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.btn-investor-cta:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.3);
}

/* ─── MODAL POPUP FORM SYSTEM ─── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 22, 40, 0.75);
  backdrop-filter: blur(8px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.modal-content {
  background: var(--white);
  width: 100%;
  max-width: 520px;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 20px 50px rgba(15, 22, 40, 0.3);
  position: relative;
  transform: translateY(40px);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.modal-overlay.open .modal-content {
  transform: translateY(0);
}
.modal-close {
  position: absolute;
  top: 24px; right: 24px;
  font-size: 2rem;
  line-height: 1;
  color: var(--gray-400);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
  outline: none;
  padding: 4px;
}
.modal-close:hover {
  color: var(--navy);
}
.modal-header {
  text-align: center;
  margin-bottom: 28px;
}
.modal-icon {
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.4rem;
  color: var(--navy-dark);
}
.modal-header h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: 8px;
}
.modal-header p {
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.5;
}
.modal-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.phone-input-container {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--gray-200);
  border-radius: 12px;
  background: var(--off-white);
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.phone-input-container:focus-within {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(245,166,35,0.2);
}
.phone-input-container .country-code {
  padding: 14px 12px 14px 18px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gray-600);
  border-right: 1.5px solid var(--gray-200);
  background: var(--gray-100);
}
.phone-input-container input {
  border: none !important;
  box-shadow: none !important;
  background: transparent !important;
  flex-grow: 1;
  padding: 14px 18px;
}
.btn-modal-submit {
  width: 100%;
  justify-content: center;
  margin-top: 10px;
}

/* ─── SUCCESS SCREEN ─── */
.modal-success {
  text-align: center;
  animation: fadeIn 0.4s ease-out;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.success-icon {
  width: 68px;
  height: 68px;
  background: #2e7d32;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.9rem;
  box-shadow: 0 6px 20px rgba(46,125,50,0.3);
}
.modal-success h4 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--navy);
  margin-bottom: 12px;
}
.modal-success p {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 28px;
}
.btn-success-close {
  background: var(--navy);
  color: var(--white);
  width: 100%;
}
.btn-success-close:hover {
  background: var(--navy-dark);
  box-shadow: 0 6px 20px rgba(15,22,40,0.25);
}

@media (max-width: 900px) {
  .investors-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .investors-stats {
    grid-template-columns: 1fr;
  }
  .estimator-box {
    padding: 24px;
  }
  .modal-content {
    padding: 30px 20px;
  }
}

/* ─── INVESTOR HERO ─── */
.investor-hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.investor-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(15, 22, 40, 0.93) 0%, rgba(26, 34, 56, 0.80) 50%, rgba(15, 22, 40, 0.75) 100%),
    url('Hero img.png') center/cover no-repeat;
}
.investor-hero-content {
  position: relative;
  z-index: 2;
  padding: 160px 48px 80px;
  max-width: 820px;
  animation: fadeUp 1s ease-out;
}

/* ─── INVESTOR HIGHLIGHTS ─── */
.investor-highlights {
  background: var(--white);
}
.investor-metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
  margin-top: 50px;
}
.metric-card {
  background: var(--off-white);
  padding: 36px 28px;
  border-radius: 18px;
  border: 1px solid var(--gray-200);
  transition: all 0.35s ease;
  text-align: center;
}
.metric-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(26, 34, 56, 0.08);
  border-color: var(--gold);
}
.metric-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
.metric-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy-dark);
  margin-bottom: 10px;
}
.metric-card p {
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ─── GROWTH DRIVERS ─── */
.growth-drivers {
  background: var(--off-white);
}
.drivers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 50px;
}
.driver-card {
  background: var(--white);
  padding: 40px 32px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
  position: relative;
  transition: all 0.35s ease;
  border: 1px solid var(--gray-100);
}
.driver-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(26, 34, 56, 0.08);
  border-color: var(--gold);
}
.driver-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(201, 168, 76, 0.25);
  position: absolute;
  top: 24px; right: 28px;
}
.driver-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 14px;
  padding-right: 40px;
}
.driver-card p {
  font-size: 0.92rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ─── INTERACTIVE ROI CALCULATOR ─── */
.roi-calculator-section {
  background: var(--white);
}
.calculator-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  margin-top: 50px;
  background: var(--off-white);
  border-radius: 24px;
  padding: 50px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.04);
}
.calculator-inputs {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.calculator-inputs h3, .calculator-results h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 8px;
}
.calculator-select {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--gray-200);
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--gray-800);
  background: var(--white);
  outline: none;
  cursor: pointer;
  transition: all 0.3s;
}
.calculator-select:focus {
  border-color: var(--gold);
}
.gold-text {
  color: var(--gold-dark);
  font-weight: 700;
}
.slider-input {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  height: 6px;
  border-radius: 3px;
  background: var(--gray-200);
  outline: none;
  margin: 12px 0;
}
.slider-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--gold);
  cursor: pointer;
  transition: transform 0.2s, background 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.slider-input::-webkit-slider-thumb:hover {
  background: var(--gold-light);
  transform: scale(1.15);
}
.slider-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--gray-600);
  font-weight: 500;
}
.calculator-results {
  background: var(--white);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--gray-100);
}
.results-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 20px 0;
}
.result-box, .result-boxHighlight {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 0.95rem;
}
.result-box {
  background: var(--off-white);
  border-left: 3px solid var(--gray-400);
}
.result-box .result-label {
  color: var(--gray-600);
  font-weight: 500;
}
.result-box .result-value {
  color: var(--navy-dark);
  font-weight: 700;
}
.result-boxHighlight {
  background: rgba(201, 168, 76, 0.08);
  border-left: 3px solid var(--gold);
}
.result-boxHighlight .result-label {
  color: var(--navy-dark);
  font-weight: 600;
}
.result-boxHighlight .result-value {
  color: var(--gold-dark);
  font-weight: 700;
  font-size: 1.1rem;
}
.results-grid .total-returns {
  background: var(--navy-dark);
  border-left-color: var(--gold);
  color: var(--white);
  margin-top: 8px;
  padding: 18px;
}
.total-returns .result-label {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
}
.total-returns .result-value {
  font-size: 1.3rem !important;
  color: var(--gold) !important;
}
.btn-calc-cta {
  width: 100%;
  justify-content: center;
  margin-top: 15px;
}

/* ─── INVESTOR DOWNLOADS ─── */
.investor-downloads {
  background: var(--navy-dark);
  color: var(--white);
  padding: 100px 48px;
}
.downloads-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}
.downloads-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--white);
  margin-bottom: 20px;
}
.downloads-text p {
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  font-size: 1.05rem;
  margin-bottom: 30px;
}
.download-benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.download-benefits li {
  font-size: 1rem;
  color: var(--gold-light);
  font-weight: 500;
}
.downloads-form-box {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 40px;
  border-radius: 24px;
}
.downloads-form-box h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 10px;
}
.downloads-form-box p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 24px;
}
.download-form-inline {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.download-form-inline input {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: all 0.3s;
}
.download-form-inline input::placeholder {
  color: rgba(255,255,255,0.4);
}
.download-form-inline input:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.12);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.25);
}
.download-form-inline .btn-submit {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}

/* ─── INVESTOR REGISTER ─── */
/* ─── INVESTOR REGISTER ─── */
.investor-register {
  background: var(--off-white);
  padding: 63px 34px;
}
.inv-register-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 42px;
  align-items: start;
  max-width: 800px;
  margin: 0 auto;
}

/* Left panel */
.inv-register-left .section-label { margin-bottom: 14px; }
.inv-register-left .section-title { margin-bottom: 14px; line-height: 1.15; }
.inv-left-subtitle {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 22px;
}
.inv-benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 25px;
}
.inv-benefits li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.88rem;
  color: var(--navy);
  font-weight: 500;
}
.inv-benefits li i { color: var(--gold); font-size: 0.88rem; flex-shrink: 0; }
.inv-contact-strip {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-200);
}
.inv-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: transform 0.2s;
}
.inv-contact-item:hover { transform: translateX(4px); }
.inv-contact-icon {
  width: 32px; height: 32px;
  background: linear-gradient(135deg, var(--navy), #3558c8);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: #fff;
  flex-shrink: 0;
}
.inv-contact-icon--green { background: linear-gradient(135deg, #1da851, #25d366); }
.inv-contact-label {
  display: block;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 2px;
}
.inv-contact-value {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
}

/* Right form card */
.inv-form-card {
  background: var(--white);
  border-radius: 16px;
  padding: 30px 28px;
  box-shadow: 0 4px 48px rgba(27,45,96,0.09);
  border: 1px solid var(--gray-200);
}
.inv-form-header {
  margin-bottom: 18px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--gray-100);
}
.inv-form-header h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 5px;
}
.inv-form-header p { font-size: 0.82rem; color: var(--gray-600); }
.inv-form { display: flex; flex-direction: column; gap: 12px; }
.inv-form .form-group input,
.inv-form .form-group select,
.inv-form .form-group textarea { padding: 10px 14px; font-size: 0.88rem; }
.inv-form .form-group textarea { min-height: 80px; }
.label-optional { font-weight: 400; color: var(--gray-400); font-size: 0.78rem; }
.register-submit {
  width: 100%;
  justify-content: center;
  gap: 8px;
  margin-top: 4px;
  font-size: 0.9rem;
  padding: 11px;
}
.inv-trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--gray-100);
  font-size: 0.75rem;
  color: var(--gray-400);
}
.inv-trust-badge i { color: #2e7d32; font-size: 0.9rem; flex-shrink: 0; }

/* Investor form inline success */
.inv-success {
  text-align: center;
  padding: 20px 0 10px;
  animation: fadeIn 0.4s ease-out;
}
.inv-success .success-icon {
  margin: 0 auto 16px;
  width: 60px; height: 60px;
  font-size: 1.6rem;
}
.inv-success h4 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--navy);
  margin-bottom: 10px;
}
.inv-success p {
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 4px;
}

@media (max-width: 900px) {
  .investor-register { padding: 44px 17px; }
  .inv-register-grid { grid-template-columns: 1fr; gap: 28px; }
  .inv-form-card { padding: 22px 20px; }
}
@media (max-width: 480px) {
  .investor-register { padding: 36px 13px; }
  .inv-form-card { padding: 18px 14px; border-radius: 11px; }
}

/* ─── RESPONSIVE INVESTOR ─── */
@media (max-width: 900px) {
  .investor-hero-content {
    padding: 130px 24px 60px;
  }
  .calculator-container {
    grid-template-columns: 1fr;
    padding: 30px 20px;
    gap: 36px;
  }
  .downloads-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .downloads-form-box {
    padding: 30px 20px;
  }
}

/* ─── FLOATING WHATSAPP BUTTON ─── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9000;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 6px 28px rgba(37,211,102,0.5);
  transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
}
.whatsapp-float:hover {
  background: #1da851;
  transform: scale(1.12) translateY(-2px);
  box-shadow: 0 10px 36px rgba(37,211,102,0.65);
}
@media (max-width: 480px) {
  .whatsapp-float { bottom: 20px; right: 16px; width: 52px; height: 52px; font-size: 1.65rem; }
}

/* ─── FOOTER CONTACT ICONS ─── */
.footer-contact-icon {
  width: 14px;
  margin-right: 8px;
  opacity: 0.7;
}
.footer-whatsapp-link { color: #4ade80 !important; }
.footer-whatsapp-link .footer-contact-icon { opacity: 1; }
