/* ============================================================
   GLOBAL / RESET
   ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Scroll animation classes */
.will-animate {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.will-animate.animated {
  opacity: 1;
  transform: translateY(0);
}

:root {
  --navy: #00004d;
  --blue: #0000cc;
  --royal: #06169C;
  --gold: #c9a227;
  --light-gray: #f0f2f5;
  --text-dark: #1e1e2e;
  --text-mid: #444;
  --border: #d0d4e0;
  --white: #ffffff;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: 'Maven Pro', 'Roboto', sans-serif;
  font-size: 15px;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
  max-width: 100%;
  position: relative;
}

/* ============================================================
   NAVBAR
   ============================================================ */
#site-header .navbar {
  padding: 0.6rem 0;
  border-bottom: 1px solid #e4e8f0;
  transition: box-shadow 0.3s;
}

#site-header .navbar.scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 77, 0.12) !important;
}

.site-logo {
  height: 70px;
  width: auto;
  object-fit: contain;
}

.navbar-nav .nav-link {
  font-family: 'Rajdhani', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark) !important;
  padding: 0.5rem 0.9rem !important;
  transition: color 0.2s;
  position: relative;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  right: 50%;
  height: 2px;
  background: var(--blue);
  transition: left 0.25s, right 0.25s;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  left: 0.9rem;
  right: 0.9rem;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
  color: var(--blue) !important;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/banner.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.03);
  transition: transform 10s ease;
}

.hero-section:hover .hero-bg {
  transform: scale(1.07);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 40, 0.45);
}

/* Large MANESAR watermark text */
.hero-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(80px, 12vw, 200px);
  font-weight: 700;
  color: rgba(150, 150, 200, 0.30);
  letter-spacing: 0.14em;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  z-index: 2;
}

/* Worldwide Realty logo top-right */
.worldwide-logo {
  position: absolute;
  top: 22px;
  right: 40px;
  z-index: 5;
}

.wwr-logo {
  height: 70px;
  width: auto;
  filter: brightness(0) invert(1);
  object-fit: contain;
}

/* Badges row at bottom of hero */
.hero-badges-wrapper {
  position: relative;
  z-index: 5;
  width: 100%;
  padding: 0 20px 48px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(30, 30, 70, 0.72);
  color: #fff;
  font-family: 'Rajdhani', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 10px 22px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(6px);
  transition: background 0.25s, transform 0.2s;
}

.hero-badge:hover {
  background: rgba(0, 0, 200, 0.65);
  transform: translateY(-2px);
}

.hero-badge .fa-check {
  color: #4cdf6e;
  font-size: 13px;
}

/* ============================================================
   HIGHLIGHTS SECTION
   ============================================================ */
.highlights-section {
  background: var(--light-gray);
}

.highlights-top-bar {
  height: 5px;
  background: var(--navy);
  width: 40%;
  border-radius: 2px;
}

.section-label {
  font-family: 'Rajdhani', sans-serif;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.dash-line {
  display: inline-block;
  width: 40px;
  height: 2px;
  background: var(--text-dark);
  vertical-align: middle;
}

.highlights-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--text-dark);
}

.highlight-grid .col-4 {
  padding-bottom: 0.5rem;
}

.highlight-key {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.highlight-underline {
  width: 40px;
  height: 2px;
  background: var(--blue);
  margin-bottom: 6px;
}

.highlight-val {
  font-size: 14px;
  color: var(--text-mid);
  margin-bottom: 0;
}

/* Contact Form Card */
.contact-form-card {
  background: var(--navy);
  border-radius: 4px;
  padding: 32px;
}

.form-card-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
}

.form-input {
  background: var(--light-gray);
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 14px;
  padding: 12px 16px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-input:focus {
  background: #fff;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0, 0, 204, 0.12);
}

.btn-submit {
  background: #666;
  color: var(--white);
  font-family: 'Rajdhani', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 14px;
  border-radius: 4px;
  border: none;
  transition: background 0.25s, transform 0.2s;
}

.btn-submit:hover {
  background: var(--blue);
  transform: translateY(-2px);
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section {
  background: var(--white);
}

.about-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  color: var(--navy);
}

.about-section p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 14px;
}

.wwr-about-logo {
  max-width: 220px;
  width: 100%;
  filter: invert(17%) sepia(72%) saturate(4000%) hue-rotate(218deg) brightness(60%);
  object-fit: contain;
}

.wwr-tagline {
  font-family: 'Rajdhani', sans-serif;
  font-size: 15px;
  color: var(--blue);
  font-weight: 600;
}

.btn-enquire {
  background: var(--navy);
  color: var(--white);
  font-family: 'Rajdhani', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 12px 40px;
  border-radius: 30px;
  border: none;
  transition: background 0.25s, transform 0.2s;
}

.btn-enquire:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
}

/* ============================================================
   ALLOWED ACTIVITIES TABLE
   ============================================================ */
.activities-section {
  background: var(--light-gray);
}

.activities-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(22px, 4vw, 36px);
  font-weight: 800;
  color: var(--blue);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.activities-table {
  border-collapse: collapse;
  background: var(--white);
  border: 1px solid var(--border);
  font-size: 14px;
}

.activities-table th,
.activities-table td {
  border: 1px solid var(--border);
  padding: 12px 14px;
  vertical-align: middle;
}

.activities-table thead th {
  background: var(--white);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 15px;
}

.segment-col {
  width: 18%;
  background: #f9f9fc;
}

.zone-header {
  font-size: 15px;
}

.low-zone-header {
  border-top: 3px solid #555 !important;
}

.high-zone-header {
  border-top: 3px solid #555 !important;
}

.zone-badge {
  display: inline-block;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  padding: 5px 16px;
  border-radius: 3px;
  color: #fff;
  margin-bottom: 4px;
}

.white-zone {
  background: #fff;
  color: #333;
  border: 2px solid #999;
}

.green-zone {
  background: #22a846;
}

.orange-zone {
  background: #e07c00;
}

.red-zone {
  background: #d62929;
}

.zone-badge-th small {
  display: block;
  font-size: 11px;
  color: var(--text-mid);
  margin-top: 2px;
}

.desc-row td {
  font-weight: 600;
  color: var(--text-mid);
  font-style: italic;
  background: #f5f5fa;
}

/* ============================================================
   WHY CLIENTS CHOOSE US
   ============================================================ */
.why-us-section {
  background: var(--white);
}

.why-us-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(24px, 4vw, 38px);
  font-weight: 700;
  color: var(--blue);
}

.why-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 28px 22px;
  text-align: center;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}

.why-card:hover {
  border-color: var(--blue);
  box-shadow: 0 8px 30px rgba(0, 0, 204, 0.10);
  transform: translateY(-5px);
}

.why-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #eef2ff;
  transition: background 0.25s, transform 0.25s;
  overflow: hidden;
}

.why-icon-img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  transition: transform 0.25s;
}

.why-card:hover .why-icon {
  background: #dce5ff;
  transform: scale(1.06);
}

.why-card:hover .why-icon-img {
  transform: scale(1.08);
}

.why-card-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.why-card-text {
  font-size: 13.5px;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 0;
  text-align: justify;
}

/* ============================================================
   AMENITIES SECTION
   ============================================================ */
.amenities-section {
  background: var(--light-gray);
}

.amenities-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(22px, 4vw, 36px);
  font-weight: 700;
  color: var(--blue);
}

.amenity-item {
  min-width: 130px;
  max-width: 170px;
}

.amenity-icon-wrap {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 2.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  background: var(--white);
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s, background 0.25s;
}

.amenity-icon-wrap:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(201, 162, 39, 0.30);
  background: #fffbf0;
}

.amenity-fa-icon {
  font-size: 38px;
  color: var(--navy);
  transition: color 0.25s, transform 0.25s;
}

.amenity-icon-wrap:hover .amenity-fa-icon {
  color: var(--gold);
  transform: scale(1.1);
}

.amenity-img {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.amenity-icon-fallback {
  width: 70px;
  height: 70px;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: var(--navy);
}

.amenity-label {
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 0;
  margin-top: 10px;
}

/* Full golden-circle amenity image (circle border built-in) */
.amenity-circle-img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  display: block;
  margin: 0 auto 4px;
  transition: transform 0.25s;
}

.amenity-item:hover .amenity-circle-img {
  transform: scale(1.08);
}

/* CSS golden-circle wrapper for icons without built-in circle */
.amenity-icon-wrap-css {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s, box-shadow 0.25s;
}

.amenity-item:hover .amenity-icon-wrap-css {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(201, 162, 39, 0.30);
}

.amenity-img-inner {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

/* ============================================================
   MASTER PLAN (Gallery)
   ============================================================ */
.masterplan-section {
  background: var(--white);
}

.masterplan-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(24px, 4vw, 38px);
  font-weight: 700;
  color: var(--text-dark);
}

.masterplan-img-wrapper {
  border-radius: 6px;
  overflow: hidden;
}

.masterplan-img {
  display: block;
  border-radius: 6px;
}

.masterplan-btn-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 30px;
}

.btn-view {
  background: var(--navy);
  color: var(--white);
  font-family: 'Rajdhani', sans-serif;
  font-size: 16px;
  font-weight: 700;
  padding: 12px 42px;
  border-radius: 30px;
  border: none;
  transition: background 0.25s, transform 0.2s;
}

.btn-view:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
}

/* ============================================================
   SIZES & PRICING
   ============================================================ */
.pricing-section {
  background: var(--light-gray);
}

.pricing-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(22px, 4vw, 36px);
  font-weight: 700;
  color: var(--blue);
}

.pricing-table {
  background: var(--white);
  border: 1px solid var(--border);
  font-size: 15px;
}

.pricing-table th {
  background: var(--white);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 16px;
  border-bottom: 2px solid var(--border);
  padding: 14px 20px;
}

.pricing-table td {
  padding: 14px 20px;
  border-color: var(--border);
}

.btn-pricelist {
  background: var(--navy);
  color: var(--white);
  font-family: 'Rajdhani', sans-serif;
  font-size: 16px;
  font-weight: 700;
  padding: 12px 42px;
  border-radius: 30px;
  border: none;
  transition: background 0.25s, transform 0.2s;
}

.btn-pricelist:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
}

/* ============================================================
   LOCATION SECTION
   ============================================================ */
.location-section {
  background: var(--white);
}

.location-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  color: #0033cc;
}

.location-map {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.location-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid #eee;
  font-size: 18px;
  color: #333;
  transition: color 0.2s;
}

.location-list li:hover {
  color: var(--blue);
}

.location-list li:first-child {
  padding-top: 0;
}

.loc-arrow {
  color: var(--blue);
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--royal);
  color: var(--white);
}

.cta-logo {
  height: 70px;
  width: auto;
  filter: brightness(0) invert(1);
  object-fit: contain;
}

.cta-text {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.92);
}

.btn-site-visit {
  background: var(--navy);
  color: var(--white);
  font-family: 'Rajdhani', sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 30px;
  border: none;
  transition: background 0.25s, transform 0.2s;
  white-space: nowrap;
}

.btn-site-visit:hover {
  background: rgba(0, 0, 50, 0.9);
  color: var(--white);
  transform: translateY(-2px);
}

/* ============================================================
   LEAVE DETAILS SECTION
   ============================================================ */
.leave-details-section {
  background: var(--light-gray);
}

.leave-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(22px, 4vw, 36px);
  font-weight: 700;
  color: var(--blue);
}

.form-input-light {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 14px;
  padding: 12px 16px;
  transition: border-color 0.2s;
}

.form-input-light:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0, 0, 204, 0.10);
}

.btn-submit-dark {
  background: var(--navy);
  color: var(--white);
  font-family: 'Rajdhani', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 14px;
  border-radius: 4px;
  border: none;
  transition: background 0.25s, transform 0.2s;
}

.btn-submit-dark:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--royal);
  color: var(--white);
}

.footer-logo {
  height: 80px;
  width: auto;
  filter: brightness(0) invert(1);
  object-fit: contain;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 28px;
}

.footer-link {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-family: 'Rajdhani', sans-serif;
  font-size: 15px;
  font-weight: 600;
  transition: color 0.2s;
}

.footer-link:hover {
  color: var(--white);
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 14px;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: var(--white);
  font-size: 16px;
  text-decoration: none;
  transition: background 0.25s, border-color 0.25s, transform 0.2s;
}

.social-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-copyright {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
}

/* ============================================================
   SCROLL TO TOP BUTTON
   ============================================================ */
.scroll-top-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  border: none;
  font-size: 18px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.22);
  transition: background 0.2s, transform 0.2s;
}

.scroll-top-btn.visible {
  display: flex;
  animation: fadeInUp 0.3s ease;
}

.scroll-top-btn:hover {
  background: var(--blue);
  transform: translateY(-3px);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================================
   WHY CHOOSE US STRIP (below hero)
   ============================================================ */
.wcu-strip {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(0, 0, 50, 0.07);
}

.wcu-strip-inner {
  display: flex;
  align-items: stretch;
  min-height: 80px;
}

/* Left navy label block */
.wcu-label {
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 36px;
  flex-shrink: 0;
  min-width: 220px;
}

.wcu-label span {
  font-family: 'Rajdhani', sans-serif;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Right items area */
.wcu-items {
  display: flex;
  align-items: center;
  flex: 1;
  padding: 12px 24px;
  gap: 0;
}

.wcu-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex: 1;
  padding: 10px 16px;
  text-align: center;
}

.wcu-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s;
}

.wcu-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  transition: transform 0.25s;
}

.wcu-item:hover .wcu-icon {
  transform: scale(1.1);
}

.wcu-text {
  font-family: 'Rajdhani', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
  margin-bottom: 0;
}

/* Vertical dividers between items */
.wcu-divider {
  width: 1px;
  align-self: stretch;
  background: var(--border);
  margin: 8px 0;
}

@media (max-width: 767.98px) {
  .wcu-strip-inner {
    flex-direction: column;
  }

  .wcu-label {
    min-width: unset;
    padding: 14px 20px;
    justify-content: flex-start;
  }

  .wcu-items {
    flex-wrap: wrap;
    gap: 4px;
    padding: 14px 12px;
  }

  .wcu-item {
    flex: 1 1 45%;
  }

  .wcu-divider {
    display: none;
  }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991.98px) {
  .hero-section {
    min-height: 60vh;
  }

  .hero-watermark {
    font-size: 60px;
  }

  .worldwide-logo {
    top: 12px;
    right: 20px;
  }

  .wwr-logo {
    height: 46px;
  }

  .hero-badges {
    gap: 8px;
  }

  .hero-badge {
    font-size: 12px;
    padding: 8px 16px;
  }

  .highlights-top-bar {
    width: 80%;
  }

  .contact-form-card {
    padding: 24px 18px;
  }

  .amenity-item {
    min-width: 110px;
    max-width: 140px;
  }

  .amenity-icon-wrap {
    width: 90px;
    height: 90px;
  }

  .amenity-img {
    width: 55px;
    height: 55px;
  }
}

@media (max-width: 767.98px) {
  .hero-section {
    min-height: 80vh;
  }

  .hero-watermark {
    font-size: 40px;
  }

  .site-logo {
    height: 50px;
  }

  .footer-nav {
    gap: 6px 18px;
  }

  .cta-banner .row {
    text-align: center;
  }

  .cta-logo {
    height: 50px;
  }
}

@media (max-width: 575.98px) {
  .hero-badges {
    flex-direction: column;
    align-items: center;
  }

  .hero-badge {
    width: 90%;
    justify-content: center;
  }

  .location-list li {
    font-size: 14px;
  }
}

/* ============================================================
   ENQUIRY POPUP MODAL STYLES
   ============================================================ */
.enquiry-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 77, 0.85);
  /* Navy transparent */
  display: none;
  /* Hidden by default */
  align-items: center;
  justify-content: center;
  z-index: 9999;
  backdrop-filter: blur(8px);
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.enquiry-modal-overlay.active {
  display: flex;
  opacity: 1;
}

.enquiry-modal-box {
  background: #fff;
  width: 100%;
  max-width: 550px;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  transform: translateY(30px);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.enquiry-modal-overlay.active .enquiry-modal-box {
  transform: translateY(0);
}

.enquiry-modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #f0f2f5;
  border: none;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  font-size: 24px;
  line-height: 1;
  color: var(--navy);
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.enquiry-modal-close:hover {
  background: var(--navy);
  color: #fff;
}

.enquiry-modal-header {
  padding: 30px 40px 10px;
  text-align: center;
}

.enquiry-modal-logo {
  margin-bottom: 15px;
}

.enquiry-modal-logo img {
  height: 45px;
  width: auto;
}

.enquiry-modal-title {
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  color: var(--navy);
  font-size: 24px;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.enquiry-modal-subtitle {
  color: #666;
  font-size: 14px;
  margin-bottom: 20px;
}

.enquiry-modal-form {
  padding: 0 40px 40px;
}

.enquiry-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.enquiry-form-group {
  margin-bottom: 15px;
}

.enquiry-form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #444;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.enquiry-form-group label .req {
  color: #e53e3e;
}

.enquiry-form-group input,
.enquiry-form-group textarea {
  width: 100%;
  padding: 10px 15px;
  border: 1px solid #dce1e7;
  border-radius: 6px;
  font-size: 14px;
  transition: border-color 0.2s;
  font-family: inherit;
}

.enquiry-form-group input:focus,
.enquiry-form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.1);
}

.enquiry-modal-submit {
  width: 100%;
  padding: 12px;
  background: var(--navy);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  font-family: "Rajdhani", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.enquiry-modal-submit:hover {
  background: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.enquiry-modal-privacy {
  text-align: center;
  font-size: 11px;
  color: #888;
  margin-top: 15px;
}

.enquiry-modal-privacy i {
  margin-right: 4px;
  color: #48bb78;
}

/* Success State Styles */
.enquiry-modal-success {
  padding: 50px 40px;
  text-align: center;
}

.success-icon {
  font-size: 60px;
  color: #48bb78;
  margin-bottom: 20px;
}

.enquiry-modal-success h4 {
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  color: var(--navy);
  font-size: 26px;
  margin-bottom: 10px;
}

.enquiry-modal-success p {
  color: #666;
  font-size: 15px;
  margin-bottom: 25px;
}

/* Responsive */
@media (max-width: 576px) {
  .enquiry-modal-box {
    max-height: 94vh;
    overflow-y: auto;
    margin: 10px;
    border-radius: 8px;
  }

  .enquiry-modal-header {
    padding: 20px 20px 5px;
  }

  .enquiry-modal-logo img {
    height: 35px;
  }

  .enquiry-modal-title {
    font-size: 20px;
    margin-bottom: 5px;
  }

  .enquiry-modal-subtitle {
    margin-bottom: 15px;
    font-size: 13px;
  }

  .enquiry-modal-form {
    padding: 0 20px 25px;
  }

  .enquiry-form-group {
    margin-bottom: 12px;
  }

  .enquiry-form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .enquiry-modal-close {
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    font-size: 20px;
  }
}