/* ==========================================================================
   STEA Real Estate - 100% Exact Design Stylesheet
   ========================================================================== */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* CSS Variables */
:root {
  --primary-red: #E53935;
  --primary-red-hover: #C62828;
  --dark-teal: #083E38;
  --dark-teal-hover: #052D28;
  --deep-bg-teal: #042622;
  --accent-teal: #0E8B78;
  --light-bg: #F4F7F6;
  --card-bg: #FFFFFF;
  --text-dark: #1E293B;
  --text-muted: #64748B;
  --text-light: #94A3B8;
  --border-color: #E2E8F0;
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 40px -15px rgba(0, 0, 0, 0.12);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-full: 9999px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-main: 'Plus Jakarta Sans', sans-serif;
}

/* Reset & General Setup */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  background-color: #FAFCFB;
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button, input, select, textarea {
  font-family: inherit;
  outline: none;
}

/* Container */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Section Header */
.section-subtitle {
  color: var(--primary-red);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.section-subtitle.teal {
  color: var(--accent-teal);
}

.section-subtitle::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 3px;
  background-color: currentColor;
  border-radius: 2px;
}

.section-title-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 24px;
}

.section-title {
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--dark-teal);
  letter-spacing: -0.5px;
}

.btn-outline-sm {
  padding: 8px 18px;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--dark-teal);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
}

.btn-outline-sm:hover {
  background-color: var(--dark-teal);
  color: #fff;
  border-color: var(--dark-teal);
}

/* Navbar */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #ffffff;
  box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.logo-icon {
  width: 38px;
  height: 38px;
}

.logo-text {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--dark-teal);
  letter-spacing: -1px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 0;
}

.nav-link.active {
  color: var(--dark-teal);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 3px;
  background-color: var(--primary-red);
  border-radius: 2px;
}

.nav-link:hover {
  color: var(--primary-red);
}

.nav-link i {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.btn-primary-teal {
  background-color: var(--dark-teal);
  color: #ffffff;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary-teal:hover {
  background-color: var(--dark-teal-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(8, 62, 56, 0.25);
}

/* HERO SECTION & CAROUSEL SLIDER */
.hero-section {
  position: relative;
  padding: 120px 0 170px;
  min-height: 660px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: #042E28;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 0;
}

.hero-slide.active {
  opacity: 1;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 52%;
  height: 100%;
  background: linear-gradient(90deg, #FFFFFF 0%, #FFFFFF 64%, rgba(255, 255, 255, 0.88) 84%, rgba(255, 255, 255, 0) 100%);
  z-index: 2;
}

.hero-container {
  position: relative;
  z-index: 3;
  width: 100%;
}

.hero-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border-color);
  color: #063A34;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
  transition: var(--transition);
}

.hero-slider-btn:hover {
  background: #063A34;
  color: #ffffff;
  transform: translateY(-50%) scale(1.08);
}

.hero-slider-btn.prev-btn {
  left: 24px;
}

.hero-slider-btn.next-btn {
  right: 24px;
}

.hero-dots-wrap {
  position: absolute;
  bottom: 24px;
  right: 48px;
  display: flex;
  gap: 10px;
  z-index: 5;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  border: 2px solid #ffffff;
  cursor: pointer;
  transition: var(--transition);
}

.hero-dot.active {
  background: var(--primary-red);
  border-color: var(--primary-red);
  width: 28px;
  border-radius: 6px;
}

.hero-content {
  max-width: 620px;
  text-align: left;
  margin-top: 20px;
}

.hero-badge {
  color: var(--primary-red);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.12;
  color: #101828;
  margin-bottom: 20px;
  letter-spacing: -1.2px;
}

.highlight-teal {
  color: #063A34;
}

.hero-description {
  font-size: 1.05rem;
  color: #475569;
  margin-bottom: 32px;
  max-width: 480px;
  line-height: 1.5;
}

/* Stats Single White Pill Container */
.hero-stats-pill {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 16px 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 14px 24px;
  margin-top: 10px;
  max-width: 520px;
  width: 100%;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.stat-icon-wrap {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: rgba(229, 57, 53, 0.08);
  color: var(--primary-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.stat-number {
  font-size: 1.3rem;
  font-weight: 800;
  color: #063A34;
  line-height: 1.1;
}

.stat-label {
  font-size: 0.75rem;
  color: #64748B;
  font-weight: 600;
  white-space: nowrap;
}

/* FLOATING PROPERTY SEARCH BOX */
.search-container {
  margin-top: -65px;
  position: relative;
  z-index: 100;
}

.search-box-card {
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  border: none;
}

.search-tabs {
  display: flex;
  flex-wrap: nowrap;
  background-color: #063A34;
  padding: 6px 8px 0;
  gap: 6px;
  border-radius: 14px 14px 0 0;
  max-width: fit-content;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.search-tabs::-webkit-scrollbar {
  display: none;
}

.search-tab {
  padding: 12px 24px;
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
  background: transparent;
  border: none;
  cursor: pointer;
  border-radius: 10px 10px 0 0;
  transition: var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}

.search-tab:hover {
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.1);
}

.search-tab.active {
  background-color: #042622;
  color: #ffffff;
}

.search-form {
  background: #ffffff;
  border-radius: 0 16px 16px 16px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.1);
  padding: 24px 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  gap: 18px;
  align-items: center;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-select {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-sm);
  background-color: #FAFCFB;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  transition: var(--transition);
}

.form-select:focus {
  border-color: var(--dark-teal);
  background-color: #fff;
}

.btn-search-red {
  background-color: var(--primary-red);
  color: #ffffff;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 48px;
  margin-top: auto;
  transition: var(--transition);
}

.btn-search-red:hover {
  background-color: var(--primary-red-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(229, 57, 53, 0.3);
}

/* CITIES SECTION */
.cities-section {
  padding: 45px 0 35px;
}

.cities-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.city-card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  cursor: pointer;
}

.city-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.city-img-wrap {
  height: 160px;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.city-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.city-card:hover .city-img-wrap img {
  transform: scale(1.1);
}

.city-content {
  padding: 14px;
}

.city-name {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--dark-teal);
}

.city-props {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}

.more-cities-card {
  background: #F1F5F9;
  border: 2px dashed #CBD5E1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  text-align: center;
  border-radius: var(--radius-md);
  transition: var(--transition);
  cursor: pointer;
}

.more-cities-card:hover {
  background: #E2E8F0;
  border-color: var(--dark-teal);
}

.circle-arrow-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-teal);
  margin-top: 12px;
  font-size: 1rem;
  box-shadow: var(--shadow-sm);
}

/* PROPERTY PROMOTIONAL BANNER SECTION */
.promo-banner-section {
  padding: 35px 0;
  background-color: #FAFCFB;
}

.promo-banner-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background-image: url('../images/promo_banner.jpg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  min-height: 380px;
  display: flex;
  align-items: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.promo-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #042E28 0%, rgba(4, 46, 40, 0.92) 50%, rgba(4, 46, 40, 0.45) 80%, rgba(4, 46, 40, 0.15) 100%);
  z-index: 1;
}

.promo-banner-content {
  position: relative;
  z-index: 2;
  padding: 45px 40px;
  max-width: 680px;
  color: #ffffff;
}

.promo-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(229, 57, 53, 0.18);
  border: 1px solid #E53935;
  color: #FF6B6B;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.promo-title {
  font-size: 2.1rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 12px;
  color: #ffffff;
}

.promo-desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.6;
  margin-bottom: 24px;
}

.promo-highlights {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.promo-highlight-item {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #10B981;
}

.promo-btns {
  display: flex;
  gap: 14px;
  align-items: center;
}

/* PROJECTS SECTION */
.projects-section {
  padding: 45px 0;
  background-color: #F8FAF9;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.project-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.project-img-wrap {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.project-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.project-card:hover .project-img-wrap img {
  transform: scale(1.08);
}

.project-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #ffffff;
}

.project-badge.upcoming { background-color: var(--primary-red); }
.project-badge.ongoing { background-color: var(--accent-teal); }
.project-badge.completed { background-color: var(--dark-teal); }

.project-content {
  padding: 16px;
}

.project-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--dark-teal);
  margin-bottom: 6px;
}

.project-location, .project-details {
  font-size: 0.78rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 4px;
}

.project-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--primary-red);
  text-transform: uppercase;
  margin-top: 12px;
  letter-spacing: 0.5px;
}

.project-link:hover {
  gap: 10px;
}

.dots-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #CBD5E1;
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background-color: var(--accent-teal);
  width: 24px;
  border-radius: 5px;
}

/* CATEGORIES & FEATURED SECTION */
.categories-section {
  padding: 45px 0;
  background-color: #FAFCFB;
}

.cat-featured-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 28px;
  align-items: center;
}

.categories-subgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.cat-tile {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 16px 8px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
  transition: var(--transition);
}

.cat-tile:hover {
  border-color: var(--accent-teal);
  background-color: #F0FDF4;
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.cat-icon {
  width: 38px;
  height: 38px;
  color: #063A34;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cat-name {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
}

/* FEATURED DARK BANNER */
.featured-banner-card {
  background-color: #042E28;
  border-radius: 20px;
  padding: 28px 24px 28px 32px;
  color: #ffffff;
  position: relative;
  box-shadow: 0 15px 35px rgba(4, 46, 40, 0.2);
}

.featured-banner-flex {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 24px;
  align-items: center;
}

.featured-text-col {
  padding-right: 10px;
}

.featured-sub {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #10B981;
  margin-bottom: 8px;
}

.featured-title {
  font-size: 1.65rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #ffffff;
}

.btn-pill-white {
  background: #ffffff;
  color: #042E28;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-pill-white:hover {
  background-color: #E2E8F0;
  transform: translateY(-2px);
}

.featured-props-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.feat-prop-card {
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  color: var(--text-dark);
  transition: var(--transition);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.feat-prop-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.22);
}

.feat-prop-img {
  height: 130px;
  position: relative;
}

.feat-prop-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.avail-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background-color: #063A34;
  color: #fff;
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
}

.feat-prop-body {
  padding: 12px;
}

.feat-prop-type {
  font-size: 0.88rem;
  font-weight: 800;
  color: #042E28;
  margin-bottom: 2px;
}

.feat-prop-proj {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.feat-prop-loc {
  font-size: 0.7rem;
  color: var(--text-light);
  margin-bottom: 10px;
}

.feat-prop-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 8px;
  border-top: 1px solid var(--border-color);
}

.feat-price {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--primary-red);
}

.feat-area {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-muted);
}

.banner-next-btn {
  position: absolute;
  right: -18px;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid var(--border-color);
  color: #042E28;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
  transition: var(--transition);
  z-index: 10;
}

.banner-next-btn:hover {
  background: #042E28;
  color: #ffffff;
  transform: translateY(-50%) scale(1.08);
}
  font-weight: 800;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
}

.feat-prop-body {
  padding: 14px;
}

.feat-prop-type {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--dark-teal);
}

.feat-prop-proj {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.feat-prop-loc {
  font-size: 0.72rem;
  color: var(--text-light);
  margin-bottom: 12px;
}

.feat-prop-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  border-top: 1px solid var(--border-color);
}

.feat-price {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--primary-red);
}

.feat-area {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
}

/* WHY CHOOSE US */
.why-section {
  padding: 45px 0;
  background-color: #FAFCFB;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 48px;
  align-items: center;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 36px;
}

.feature-item {
  display: flex;
  gap: 14px;
}

.feature-icon-box {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background-color: #E6F4F1;
  color: var(--accent-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.feature-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--dark-teal);
  margin-bottom: 4px;
}

.feature-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.video-box-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 380px;
}

.video-box-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: #ffffff;
  color: var(--primary-red);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  transition: var(--transition);
}

.video-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
  background-color: var(--primary-red);
  color: #fff;
}

.video-overlay-text {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  text-align: center;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0,0,0,0.6);
}

/* HOW IT WORKS */
.how-section {
  background-color: var(--dark-teal);
  padding: 45px 0;
  color: #ffffff;
}

.how-section .section-title {
  color: #ffffff;
}

.steps-wrapper {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  position: relative;
  margin-top: 48px;
}

.steps-wrapper::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 10%;
  right: 10%;
  height: 2px;
  border-top: 2px dashed rgba(255,255,255,0.25);
  z-index: 1;
}

.step-card {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-number-badge {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #0B4F48;
  border: 2px solid var(--accent-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #ffffff;
  margin-bottom: 20px;
  position: relative;
  transition: var(--transition);
}

.step-card:hover .step-number-badge {
  background-color: var(--primary-red);
  border-color: #fff;
  transform: translateY(-4px);
}

.step-num-tag {
  position: absolute;
  bottom: -4px;
  background: var(--accent-teal);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 10px;
}

.step-title {
  font-size: 0.95rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.step-desc {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.4;
  max-width: 180px;
}

/* TESTIMONIALS & NEWS SECTION */
.bottom-mix-section {
  padding: 45px 0;
  overflow: hidden;
}

.mix-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 36px;
}

.mix-grid > div {
  min-width: 0;
}

/* Testimonial Card */
.testi-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 32px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  position: relative;
}

.quote-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: rgba(229, 57, 53, 0.08);
  color: var(--primary-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.testi-text {
  font-size: 0.9rem;
  color: var(--text-dark);
  line-height: 1.6;
  margin-bottom: 24px;
}

.customer-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.customer-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
}

.cust-name {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--dark-teal);
}

.cust-loc {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* SINGLE LINE CONTINUOUS AUTO-SLIDING BANK PARTNERS CAROUSEL */
.partners-block {
  margin-bottom: 28px;
  background: #ffffff;
  padding: 16px 20px;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.04);
  border: 1px solid #E2E8F0;
  overflow: hidden;
  max-width: 100%;
}

.partners-subtitle {
  font-size: 0.75rem;
  font-weight: 800;
  color: #063A34;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.bank-slider-container {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.bank-slider-track {
  display: flex;
  align-items: center;
  gap: 16px;
  width: max-content;
  animation: bankInfiniteSlide 22s linear infinite;
  white-space: nowrap;
}

.bank-slider-container:hover .bank-slider-track {
  animation-play-state: paused;
}

@keyframes bankInfiniteSlide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.bank-logo-card {
  background: #ffffff;
  border: 1px solid #E2E8F0;
  border-radius: 10px;
  padding: 8px 16px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  transition: transform 0.25s ease, border-color 0.25s ease;
  flex-shrink: 0;
}

.bank-logo-card:hover {
  border-color: #0E8B78;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

.bank-logo-card img {
  height: 28px;
  width: auto;
  max-width: 130px;
  object-fit: contain;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  min-width: 0;
}

.news-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.news-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.news-img {
  height: 120px;
  width: 100%;
  overflow: hidden;
}

.news-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-body {
  padding: 14px;
}

.news-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.news-tag {
  background: #E6F4F1;
  color: var(--accent-teal);
  font-size: 0.65rem;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 4px;
}

.news-date {
  font-size: 0.7rem;
  color: var(--text-light);
}

.news-title {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--dark-teal);
  margin-bottom: 12px;
  line-height: 1.3;
}

.news-read-more {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--dark-teal);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* CTA BANNER */
.cta-banner-section {
  background: var(--dark-teal);
  padding: 50px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.cta-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cta-title {
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.cta-desc {
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
}

.cta-btns {
  display: flex;
  gap: 12px;
}

.btn-cta-red {
  background-color: var(--primary-red);
  color: #ffffff;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn-cta-green {
  background-color: #062E29;
  color: #ffffff;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.btn-cta-red:hover, .btn-cta-green:hover {
  transform: translateY(-2px);
  opacity: 0.95;
}

/* FOOTER */
.site-footer {
  background-color: var(--deep-bg-teal);
  color: rgba(255,255,255,0.7);
  padding: 70px 0 24px;
  font-size: 0.82rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  gap: 36px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .logo-text {
  color: #ffffff;
}

.footer-brand-desc {
  margin: 16px 0 20px;
  line-height: 1.6;
  max-width: 280px;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: var(--transition);
}

.social-icon:hover {
  background-color: var(--primary-red);
}

.footer-title {
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.footer-menu li {
  margin-bottom: 10px;
}

.footer-menu a:hover {
  color: #ffffff;
  padding-left: 4px;
}

.contact-list li {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
  line-height: 1.4;
}

.contact-list i {
  color: var(--accent-teal);
  font-size: 0.9rem;
  margin-top: 3px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: 0.75rem;
}

/* MODAL POPUP */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-box {
  background: #ffffff;
  width: 90%;
  max-width: 500px;
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.modal-backdrop.active .modal-box {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.2rem;
  color: var(--text-muted);
  cursor: pointer;
}

.modal-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark-teal);
  margin-bottom: 8px;
}

.modal-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.modal-form .form-group {
  margin-bottom: 16px;
}

.modal-form input, .modal-form textarea, .modal-form select {
  width: 100%;
  padding: 12px;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-sm);
}

/* MOBILE MENU BUTTON */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--dark-teal);
  cursor: pointer;
  padding: 4px;
}

/* RESPONSIVE MEDIA QUERIES FOR ALL DEVICES */
@media (max-width: 1024px) {
  .hero-grid, .why-grid, .mix-grid { grid-template-columns: 1fr; gap: 32px; }
  .cities-grid { grid-template-columns: repeat(3, 1fr); }
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .search-form { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-featured-grid { grid-template-columns: 1fr; }
  .steps-wrapper { grid-template-columns: repeat(2, 1fr); }
  .steps-wrapper::before { display: none; }
  .featured-banner-flex { grid-template-columns: 1fr; gap: 20px; }
  .featured-props-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 992px) {
  .mobile-menu-btn {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffffff;
    flex-direction: column;
    padding: 20px;
    gap: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-top: 1px solid var(--border-color);
    display: none;
    z-index: 100;
  }

  .nav-links.mobile-active {
    display: flex;
  }

  .header-enquire-btn {
    padding: 8px 14px;
    font-size: 0.72rem;
  }
}

@media (max-width: 768px) {
  .hero-section {
    min-height: 500px;
    padding: 40px 0 110px;
  }

  .hero-overlay {
    width: 100%;
    background: linear-gradient(180deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.85) 65%, rgba(255,255,255,0.3) 100%);
  }

  .hero-title {
    font-size: 1.85rem;
    line-height: 1.25;
  }

  .hero-description {
    font-size: 0.88rem;
  }

  .hero-stats-pill {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 16px 12px;
  }

  .hero-slider-btn {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }

  .hero-slider-btn.prev-btn { left: 10px; }
  .hero-slider-btn.next-btn { right: 10px; }
  .hero-dots-wrap { bottom: 14px; right: 20px; }

  .search-container {
    margin-top: -45px;
  }

  .search-box-card {
    padding: 16px;
  }

  .search-form {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .cities-section .section-title-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
  }

  .cities-section .section-title {
    font-size: 1.22rem;
    white-space: nowrap;
    letter-spacing: -0.3px;
  }

  .cities-section .btn-outline-sm {
    padding: 6px 10px;
    font-size: 0.68rem;
    white-space: nowrap;
  }

  .cities-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px;
  }

  .city-img-wrap {
    height: 110px;
  }

  .city-content {
    padding: 10px 12px;
  }

  .city-name {
    font-size: 0.95rem;
  }

  .city-props {
    font-size: 0.72rem;
  }

  .more-cities-card {
    min-height: 150px;
    padding: 12px;
  }

  .projects-section .section-title-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
  }

  .projects-section .section-title {
    font-size: 1.18rem;
    white-space: nowrap;
    letter-spacing: -0.3px;
  }

  .projects-section .btn-outline-sm {
    padding: 6px 10px;
    font-size: 0.68rem;
    white-space: nowrap;
  }

  .projects-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px;
  }

  .project-img-wrap {
    height: 115px;
  }

  .project-content {
    padding: 10px 10px;
  }

  .project-title {
    font-size: 0.9rem;
    line-height: 1.25;
    margin-bottom: 4px;
  }

  .project-location, .project-details {
    font-size: 0.7rem;
    margin-bottom: 4px;
  }

  .project-link {
    font-size: 0.7rem;
  }

  .project-badge {
    padding: 2px 6px;
    font-size: 0.6rem;
  }

  .featured-props-grid, .news-grid {
    grid-template-columns: 1fr;
  }

  .categories-subgrid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .steps-wrapper {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .cta-flex {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .cta-btns {
    flex-direction: column;
    width: 100%;
  }

  .btn-cta-red, .btn-cta-green {
    width: 100%;
    justify-content: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .cities-section .section-title {
    font-size: 1.1rem;
    white-space: nowrap;
  }

  .projects-section .section-title {
    font-size: 1.05rem;
    white-space: nowrap;
  }

  .cities-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px;
  }

  .projects-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px;
  }

  .project-card {
    border-radius: 12px;
    overflow: hidden;
  }

  .project-img-wrap {
    height: 130px !important;
  }

  .project-content {
    padding: 10px 10px !important;
  }

  .project-title {
    font-size: 0.82rem !important;
    font-weight: 800 !important;
    line-height: 1.25 !important;
    margin-bottom: 4px !important;
  }

  .project-location, 
  .project-details {
    font-size: 0.7rem !important;
    line-height: 1.3 !important;
    margin-bottom: 4px !important;
  }

  .project-content p {
    font-size: 0.72rem !important;
    line-height: 1.3 !important;
    margin: 4px 0 !important;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .city-img-wrap {
    height: 98px;
  }

  .city-content {
    padding: 8px 10px;
  }

  .city-name {
    font-size: 0.88rem;
  }

  .city-props {
    font-size: 0.68rem;
  }

  .categories-subgrid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px;
  }

  .cat-tile {
    padding: 16px 10px;
  }

  .cat-tile-icon {
    font-size: 1.35rem;
    margin-bottom: 8px;
  }

  .cat-tile-title {
    font-size: 0.85rem;
  }

  .hero-stats-pill {
    grid-template-columns: repeat(2, 1fr) !important;
    padding: 12px 14px;
    gap: 10px 12px;
  }

  .hero-title {
    font-size: 1.65rem;
  }

  .featured-banner-card {
    padding: 20px 16px;
  }

  .banner-next-btn {
    display: none;
  }
}

/* INTERACTIVE MAP COMPONENT STYLES */
.map-grid-wrapper {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 0;
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
  border: 1px solid #E2E8F0;
}

.map-spot-sidebar {
  padding: 24px;
  background: #FAFCFB;
  border-right: 1px solid #E2E8F0;
  max-height: 520px;
  overflow-y: auto;
}

.map-spot-cards-flex {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.map-spot-item {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px;
  border: 1.5px solid #E2E8F0;
  cursor: pointer;
  transition: all 0.25s ease;
}

.map-spot-item:hover {
  border-color: #0E8B78;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
}

.map-canvas-container {
  position: relative;
  width: 100%;
  height: 520px;
}

/* RESPONSIVE MAP MEDIA QUERIES */
@media (max-width: 992px) {
  .map-grid-wrapper {
    grid-template-columns: 1fr;
  }

  .map-canvas-container {
    height: 320px;
    order: 1;
  }

  .map-spot-sidebar {
    order: 2;
    max-height: 380px;
    padding: 16px;
    border-right: none;
    border-top: 1px solid #E2E8F0;
  }

  .map-spot-cards-flex {
    gap: 8px;
  }

  .map-spot-item {
    padding: 10px 12px;
    border-radius: 10px;
  }

  .map-spot-item h4 {
    font-size: 0.88rem !important;
  }
}

@media (max-width: 480px) {
  .map-canvas-container {
    height: 280px;
  }

  .map-spot-sidebar {
    padding: 12px;
    max-height: 380px;
  }

  .map-spot-item {
    padding: 9px 10px;
  }

}

/* CLASSIC MOBILE STICKY BOTTOM ACTION BAR WITH PERFECT ALIGNMENT */
.mobile-bottom-bar {
  display: none;
}

@media (max-width: 768px) {
  body {
    padding-bottom: 70px;
  }

  .mobile-bottom-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: #03241F;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    z-index: 9999;
    align-items: center;
    justify-content: space-between;
    padding: 0 8px;
  }

  .mobile-bottom-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    background: transparent;
    border: none;
    font-family: inherit;
    font-size: 0.68rem;
    font-weight: 700;
    flex: 1;
    height: 100%;
    cursor: pointer;
    transition: all 0.2s ease;
  }

  .mobile-bottom-item i {
    font-size: 1.15rem;
  }

  .mobile-bottom-item.active {
    color: #10B981;
  }

  .mobile-bottom-item.active i {
    color: #10B981;
  }

  /* ELEVATED CLASSIC SEARCH FAB */
  .mobile-bottom-item.map-search-fab {
    position: relative;
    top: -14px;
    height: auto;
  }

  .fab-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0E8B78 0%, #064E3B 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    box-shadow: 0 6px 18px rgba(14, 139, 120, 0.5);
    border: 3px solid #03241F;
    transition: transform 0.2s ease;
  }

  .fab-circle i {
    font-size: 1.25rem !important;
  }

  .map-search-fab span {
    color: #10B981;
    font-weight: 800;
    font-size: 0.68rem;
    margin-top: 3px;
  }

  /* CLASSIC UNIFORM LOGIN BUTTON PILL */
  .mobile-bottom-item.login-btn-item {
    background: rgba(16, 185, 129, 0.12);
    color: #10B981 !important;
    border-radius: 12px;
    height: 38px;
    margin: 0 2px;
    border: 1px solid rgba(16, 185, 129, 0.25);
    flex: 0 0 62px;
  }

  .mobile-bottom-item.login-btn-item i {
    font-size: 0.95rem;
  }

  .mobile-bottom-item.login-btn-item span {
    font-size: 0.65rem;
  }
}

/* GLOBAL AUDIT MOBILE RESPONSIVE MEDIA QUERIES */

/* Search Page Responsive Grid */
.search-page-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
}

.search-results-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

@media (max-width: 992px) {
  .search-page-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .search-results-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .search-results-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px;
  }
}

/* Property Details Page Responsive Layouts */
.prop-details-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 36px;
}

.prop-quick-specs-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.prop-categories-grid,
.prop-grid-3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

@media (max-width: 992px) {
  .prop-details-layout {
    grid-template-columns: 1fr;
  }
  .prop-categories-grid,
  .prop-grid-3col {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .prop-quick-specs-bar {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .prop-categories-grid,
  .prop-grid-3col {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px;
  }
}

/* Project Details Page Responsive Layouts */
.proj-main-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
}

/* ABOUT PAGE RESPONSIVE LAYOUTS */
.about-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 50px;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.about-hero-img-wrap {
  border-radius: 20px;
  overflow: hidden;
  height: 420px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 992px) {
  .about-hero-grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
    margin-bottom: 36px !important;
  }

  .about-hero-img-wrap {
    height: 240px !important;
  }

  .about-values-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
}

@media (max-width: 480px) {
  .about-stats-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }
}

/* LOCATIONS OVERVIEW GRID (CITY DETAILS PAGE & CITIES LIST) */
.locations-overview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.location-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid #E2E8F0;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: block;
}

.location-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.location-img-wrap {
  height: 200px;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.location-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.location-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #063A34;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 2;
}

.location-content {
  padding: 24px;
}

.location-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: #063A34;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.location-desc {
  color: #64748B;
  font-size: 0.85rem;
  line-height: 1.5;
  margin-bottom: 16px;
  min-height: 40px;
}

.location-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid #F1F5F9;
}

.location-btn-text {
  font-size: 0.8rem;
  font-weight: 800;
  color: #0E8B78;
  text-transform: uppercase;
}

.location-chevron {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #F8FAF9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #063A34;
}

@media (max-width: 992px) {
  .locations-overview-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
  }
}

@media (max-width: 540px) {
  .locations-overview-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }

  .location-img-wrap {
    height: 120px !important;
  }

  .location-content {
    padding: 12px 12px !important;
  }

  .location-title {
    font-size: 0.95rem !important;
    font-weight: 800 !important;
    margin-bottom: 4px !important;
  }

  .location-title span {
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }

  .location-badge {
    top: 8px !important;
    right: 8px !important;
    font-size: 0.62rem !important;
    padding: 3px 8px !important;
  }

  .location-desc {
    font-size: 0.75rem !important;
    line-height: 1.35 !important;
    margin-bottom: 10px !important;
    min-height: auto !important;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .location-footer {
    padding-top: 8px !important;
  }

  .location-btn-text {
    font-size: 0.64rem !important;
    white-space: nowrap !important;
  }

  .location-chevron {
    width: 24px !important;
    height: 24px !important;
  }

  .location-chevron i {
    font-size: 0.65rem !important;
  }
}

/* MAIN PROJECTS OVERVIEW GRID (ALL PROJECTS LIST) */
.main-projects-overview-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.main-proj-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  border: 1px solid #E2E8F0;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: block;
}

.main-proj-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.12);
}

.main-proj-img-wrap {
  height: 250px;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.main-proj-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main-proj-content {
  padding: 28px;
}

.main-proj-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: #063A34;
  margin-bottom: 6px;
}

.main-proj-location {
  font-size: 0.88rem;
  color: #E53935;
  font-weight: 700;
  margin-bottom: 12px;
}

.main-proj-desc {
  color: #64748B;
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.main-proj-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid #F1F5F9;
}

.main-proj-price {
  font-size: 1.15rem;
  font-weight: 800;
  color: #063A34;
}

.main-proj-btn {
  background: #063A34;
  color: #fff;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 0.78rem;
  font-weight: 800;
}

@media (max-width: 992px) {
  .main-projects-overview-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
}

@media (max-width: 600px) {
  .main-proj-img-wrap {
    height: 170px !important;
  }

  .main-proj-content {
    padding: 16px 18px !important;
  }

  .main-proj-title {
    font-size: 1.2rem !important;
    margin-bottom: 4px !important;
  }

  .main-proj-location {
    font-size: 0.8rem !important;
    margin-bottom: 8px !important;
  }

  .main-proj-desc {
    font-size: 0.8rem !important;
    line-height: 1.45 !important;
    margin-bottom: 14px !important;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .main-proj-footer {
    padding-top: 10px !important;
  }

  .main-proj-price {
    font-size: 0.95rem !important;
  }

  .main-proj-btn {
    padding: 8px 14px !important;
    font-size: 0.7rem !important;
    white-space: nowrap !important;
  }
}

.proj-gallery-grid,
.proj-amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.proj-video-grid,
.proj-units-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

@media (max-width: 992px) {
  .proj-main-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .proj-gallery-grid,
  .proj-amenities-grid,
  .proj-video-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px;
  }

  .proj-units-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 520px) {
  .proj-units-grid,
  .proj-video-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .unit-inventory-card div[style*="height: 180px"] {
    height: 160px !important;
  }

  .unit-inventory-card div[style*="padding: 20px"] {
    padding: 14px 16px !important;
  }

  .unit-inventory-card h3 {
    font-size: 1.05rem !important;
    font-weight: 800 !important;
    line-height: 1.25 !important;
    margin-bottom: 4px !important;
  }

  .unit-inventory-card p {
    font-size: 0.78rem !important;
    line-height: 1.35 !important;
    margin-bottom: 10px !important;
    min-height: auto !important;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .projects-grid,
  .search-results-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }

  .project-card {
    border-radius: 14px !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
    background: #ffffff !important;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06) !important;
    border: 1px solid #E2E8F0 !important;
  }

  .project-card .project-img-wrap {
    height: 115px !important;
    width: 100% !important;
    flex-shrink: 0 !important;
  }

  .project-card .project-content {
    padding: 10px 10px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    flex: 1 !important;
  }

  .project-card .project-title,
  .projects-grid .project-title,
  .search-results-grid .project-title {
    font-size: 0.8rem !important;
    font-weight: 800 !important;
    color: #063A34 !important;
    line-height: 1.2 !important;
    margin-bottom: 3px !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }

  .project-card .project-location,
  .project-card .project-details {
    font-size: 0.68rem !important;
    line-height: 1.25 !important;
    margin-bottom: 3px !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }

  .project-card .project-content p,
  .projects-grid .project-content p,
  .search-results-grid .project-content p {
    display: none !important;
  }

  .unit-filter-tab {
    padding: 6px 12px !important;
    font-size: 0.68rem !important;
    white-space: nowrap !important;
  }
}

/* Contact Page Responsive Layout */
.contact-page-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 40px;
}

.contact-form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (max-width: 992px) {
  .contact-page-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .contact-form-row {
    grid-template-columns: 1fr;
  }
}

/* Login Page Responsive Layout */
.login-page-layout {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 50px;
  align-items: center;
}

.login-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (max-width: 992px) {
  .login-page-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .login-features-grid {
    grid-template-columns: 1fr;
  }
}

/* Dashboard Page Responsive Layouts */
.dash-milestones-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  text-align: center;
  position: relative;
  z-index: 3;
}

.dash-specs-grid,
.dash-docs-grid,
.dash-recently-grid,
.dash-progress-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.dash-handover-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 30px;
}

.dash-suggestions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

@media (max-width: 992px) {
  .dash-handover-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .dash-milestones-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .dash-specs-grid,
  .dash-docs-grid,
  .dash-recently-grid,
  .dash-progress-grid,
  .dash-suggestions-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .dash-milestones-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Promotional Banner Mobile Responsiveness */
@media (max-width: 768px) {
  .promo-banner-card {
    min-height: auto;
    border-radius: 16px;
  }
  .promo-banner-overlay {
    background: linear-gradient(180deg, rgba(4, 46, 40, 0.95) 0%, rgba(4, 46, 40, 0.90) 100%);
  }
  .promo-banner-content {
    padding: 30px 20px;
    max-width: 100%;
  }
  .promo-title {
    font-size: 1.5rem;
    line-height: 1.3;
    margin-bottom: 10px;
  }
  .promo-desc {
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 18px;
  }
  .promo-highlights {
    gap: 8px;
    margin-bottom: 22px;
  }
  .promo-highlight-item {
    font-size: 0.72rem;
    padding: 5px 10px;
  }
  .promo-btns {
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
    width: 100%;
  }
  .promo-btns .btn-search-red,
  .promo-btns .btn-pill-white {
    width: 100%;
    justify-content: center;
    text-align: center;
    font-size: 0.8rem;
    padding: 12px 18px;
    white-space: nowrap;
  }
}

@media (max-width: 480px) {
  .promo-banner-content {
    padding: 24px 16px;
  }
  .promo-title {
    font-size: 1.3rem;
  }
  .promo-tag {
    font-size: 0.65rem;
    padding: 4px 10px;
    margin-bottom: 10px;
  }
  .promo-highlights {
    flex-direction: column;
    align-items: flex-start;
  }
  .promo-highlight-item {
    width: 100%;
  }
}

