:root {
  --primary: #0A192F;
  --primary-light: #172A45;
  --infra-copper: #C25E00;
  --infra-dark: #7A3700;
  --infra-glow: rgba(194, 94, 0, 0.25);
  --gold: #C5A059;
  --gold-hover: #AF8B47;
  --green: #10B981;
  --bg-light: #F8FAFC;
  --text-dark: #0F172A;
  --text-muted: #64748B;
  --border-color: #E2E8F0;
  --shadow-sm: 0 4px 14px rgba(10, 25, 47, 0.05);
  --shadow-md: 0 10px 30px rgba(10, 25, 47, 0.08);
  --shadow-lg: 0 20px 40px rgba(10, 25, 47, 0.12);
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, sans-serif;
}

body {
  color: var(--text-dark);
  background-color: #FFFFFF;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 70px;
}

@media (min-width: 769px) {
  body { padding-bottom: 0; }
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Header */
header {
  background: #FFFFFF;
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 24px;
  gap: 16px;
}

.brand-container {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.brand-text-box {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-size: 17px;
  font-weight: 900;
  color: var(--primary);
  line-height: 1.2;
  letter-spacing: 0.5px;
}

.brand-subtitle {
  font-size: 11px;
  font-weight: 700;
  color: var(--infra-copper);
  letter-spacing: 0.3px;
  margin-top: 3px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 11px 24px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: center;
  white-space: nowrap;
  border: 1px solid transparent;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-copper {
  background: linear-gradient(135deg, #D96800 0%, #944000 100%);
  color: #FFFFFF;
  box-shadow: 0 4px 15px rgba(217, 104, 0, 0.35);
}

.btn-copper:hover {
  box-shadow: 0 6px 20px rgba(217, 104, 0, 0.5);
}

.btn-back {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
  padding: 8px 16px;
  font-size: 13px;
}

.btn-back:hover {
  background: var(--primary);
  color: #FFFFFF;
}

.hero {
  background: linear-gradient(rgba(10, 25, 47, 0.85), rgba(10, 25, 47, 0.92)),
              url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #FFFFFF;
  padding: 95px 0 85px;
  text-align: center;
  position: relative;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #F8FAFC;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 20px;
  backdrop-filter: blur(8px);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background-color: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--green);
}

.hero h1 {
  font-size: 40px;
  font-weight: 900;
  margin-bottom: 18px;
  line-height: 1.3;
}

.hero p {
  max-width: 760px;
  margin: 0 auto 32px;
  color: #F1F5F9;
  font-size: 16.5px;
  line-height: 1.7;
}

.hero-cta-btns {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-glass {
  background: rgba(255, 255, 255, 0.12);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.22);
}

/* Infinite Moving Ticker */
.trust-ticker-wrap {
  width: 100%;
  overflow: hidden;
  background: #FFFFFF;
  border-bottom: 1px solid var(--border-color);
  padding: 14px 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  white-space: nowrap;
}

.trust-ticker {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  animation: tickerMove 30s linear infinite;
}

.trust-ticker-wrap:hover .trust-ticker {
  animation-play-state: paused;
}

.ticker-item {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
}

.ticker-item span {
  color: var(--infra-copper);
  margin: 0 8px;
}

.ticker-item strong {
  color: var(--infra-copper);
}

@keyframes tickerMove {
  0% { transform: translateX(0%); }
  100% { transform: translateX(-50%); }
}

/* Global Sections */
.section {
  padding: 75px 0;
}

.bg-gray {
  background-color: var(--bg-light);
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-badge {
  display: inline-block;
  background: var(--infra-glow);
  color: var(--infra-dark);
  font-size: 11.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 14px;
  border-radius: 20px;
  border: 1px solid rgba(194, 94, 0, 0.3);
  margin-bottom: 12px;
}

.section-title h2 {
  font-size: 30px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 8px;
}

.section-title p {
  color: var(--text-muted);
  font-size: 15px;
  max-width: 620px;
  margin: 0 auto;
}

/* Property Cards Grid */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.property-card {
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 30px 25px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.property-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--infra-copper);
}

.card-icon {
  font-size: 36px;
  margin-bottom: 14px;
}

.property-card h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 10px;
}

.property-card p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 18px;
  line-height: 1.6;
  flex-grow: 1;
}

.loc-tag {
  font-size: 12.5px;
  color: var(--infra-copper);
  font-weight: 700;
  background: #FFF8F0;
  padding: 5px 12px;
  border-radius: 6px;
  display: inline-block;
  width: fit-content;
}

/* Strategic Corridors Grid */
.corridor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 10px;
}

.corridor-card {
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 25px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  border-top: 4px solid var(--infra-copper);
}

.corridor-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.corridor-card h4 {
  font-size: 18px;
  color: var(--primary);
  margin-bottom: 8px;
  font-weight: 800;
}

.corridor-card .corridor-tag {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--infra-copper);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  display: block;
}

.corridor-card p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 14px;
}

.corridor-features {
  list-style: none;
  font-size: 12.5px;
  color: var(--text-dark);
  border-top: 1px dashed var(--border-color);
  padding-top: 12px;
}

.corridor-features li {
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.corridor-features li span {
  color: var(--green);
  font-weight: bold;
}

/*      INFINITE MOVING PROJECT SHOWCASE (TICKER)      */
.gallery-ticker-wrap {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 15px 0;
}

.gallery-ticker {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: scrollGallery 35s linear infinite;
}

.gallery-ticker-wrap:hover .gallery-ticker {
  animation-play-state: paused;
}

.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(10, 25, 47, 0.12);
  background: #0A192F;
  height: 230px;
  flex: 0 0 360px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(10, 25, 47, 0.22);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  padding: 24px 20px;
  background: linear-gradient(
    180deg, 
    rgba(10, 25, 47, 0.2) 0%, 
    rgba(10, 25, 47, 0.75) 55%, 
    rgba(10, 25, 47, 0.95) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #FFFFFF;
  pointer-events: none;
}

.gallery-overlay h4 {
  font-size: 18.5px;
  font-weight: 800;
  margin-bottom: 4px;
  line-height: 1.3;
  color: #FFFFFF;
}

.gallery-overlay p {
  font-size: 13.5px;
  font-weight: 700;
  color: #F59E0B;
  margin: 0;
  line-height: 1.4;
}

@keyframes scrollGallery {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50% - 12px));
  }
}

/* Contact & Map Grid */
.contact-map-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 30px;
  align-items: stretch;
}

.contact-container {
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 35px 30px;
  box-shadow: var(--shadow-md);
}

.map-container {
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
}

.map-header {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-color);
  background: #F8FAFC;
}

.map-header h4 {
  font-size: 15px;
  color: var(--primary);
}

.map-header p {
  font-size: 12px;
  color: var(--text-muted);
}

.map-frame {
  width: 100%;
  height: 100%;
  min-height: 340px;
  border: none;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #CBD5E1;
  border-radius: 6px;
  font-size: 14px;
  outline: none;
}

.form-group textarea {
  min-height: 80px;
}

.error-msg {
  color: #DC2626;
  font-size: 12px;
  display: block;
  margin-top: 4px;
}

.input-invalid {
  border-color: #DC2626 !important;
}

/* Accordion FAQ */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-question {
  padding: 18px 24px;
  font-weight: 700;
  font-size: 15px;
  color: var(--primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

.faq-icon {
  font-size: 18px;
  color: var(--infra-copper);
  font-weight: bold;
  transition: transform 0.25s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 24px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding-bottom: 18px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* Reviews Grid */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.review-card {
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 28px;
  box-shadow: var(--shadow-sm);
}

.stars {
  color: #F59E0B;
  font-size: 16px;
  margin-bottom: 12px;
}

.review-text {
  font-size: 14.5px;
  color: #475569;
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.65;
}

.reviewer-info {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--border-color);
  padding-top: 16px;
}

.reviewer-avatar {
  width: 44px;
  height: 44px;
  background: var(--infra-copper);
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}

/* Footer */
footer {
  background: var(--primary);
  color: #94A3B8;
  padding: 40px 0 25px;
  text-align: center;
  font-size: 13.5px;
}

.disclaimer {
  font-size: 12px;
  color: #64748B;
  margin: 12px auto;
  max-width: 820px;
  line-height: 1.6;
}

/* Floating WhatsApp (Desktop) */
.floating-whatsapp {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background-color: #25D366;
  color: #FFFFFF;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
  z-index: 999;
  transition: transform 0.25s ease;
}

.floating-whatsapp:hover { transform: scale(1.1); }

/* Mobile Bottom Bar */
.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #FFFFFF;
  border-top: 1px solid var(--border-color);
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.08);
  z-index: 9999;
  padding: 8px 12px;
  gap: 10px;
}

.mobile-bar-btn {
  flex: 1;
  padding: 10px 0;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.mobile-bar-call { background: #0A192F; color: #FFFFFF; }
.mobile-bar-wa { background: #25D366; color: #FFFFFF; }

@media (max-width: 860px) {
  .grid-3 { grid-template-columns: 1fr; }
  .corridor-grid { grid-template-columns: 1fr; }
  .contact-map-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .mobile-bottom-bar { display: flex; }
  .floating-whatsapp { display: none; }
}

@media (max-width: 600px) {
  .navbar { padding: 12px 16px; }
  .hero h1 { font-size: 28px; }
  .hero-cta-btns .btn { width: 100%; }
  .contact-container { padding: 25px 18px; }
  .gallery-item { flex: 0 0 290px; height: 200px; }
}

/* Utility classes (replaces one-off inline style="" attributes) */
.rounded-form-btn { width: 100%; padding: 13px; font-size: 15px; border-radius: 6px; }
.absolute-hidden { position: absolute; left: -9999px; }
.map-header-flex { display: flex; justify-content: space-between; align-items: center; }
.map-header-link { font-size: 12px; font-weight: 700; color: #C25E00; white-space: nowrap; }
.footer-brand-line { font-weight: 700; color: #E2E8F0; margin-bottom: 8px; }
.footer-meta { font-size: 12.5px; margin: 6px 0; color: #94A3B8; }
.footer-copyright { font-size: 12.5px; margin-top: 10px; color: #94A3B8; }
