/* ================================================================
   GPG Prime Realty — Complete Stylesheet v2.0
   Premium Luxury Real Estate — Navy + Gold + White
   FULLY RESPONSIVE: Mobile-first, all issues fixed
================================================================ */

/* ============ CSS VARIABLES ============ */
:root {
  --navy: #0a1628;
  --navy-mid: #122040;
  --navy-light: #1a2f5a;
  --gold: #c9a227;
  --gold-light: #e8c44a;
  --gold-dark: #a07d15;
  --white: #ffffff;
  --off-white: #f8f6f0;
  --gray: #6c757d;
  --text-dark: #1a1a2e;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Nunito', sans-serif;
  --shadow: 0 4px 20px rgba(0,0,0,0.10);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.16);
  --shadow-gold: 0 6px 20px rgba(201,162,39,0.25);
  --radius: 12px;
  --transition: all 0.3s ease;
}


/* ================================================================
   HIDE SCROLLBARS — all browsers, all pages, all elements
   Scrolling still works; bars are just invisible
================================================================ */

/* Chrome, Safari, Edge, Opera */
*::-webkit-scrollbar {
  width: 0 !important;
  height: 0 !important;
  background: transparent !important;
}
*::-webkit-scrollbar-track {
  background: transparent !important;
}
*::-webkit-scrollbar-thumb {
  background: transparent !important;
}
*::-webkit-scrollbar-corner {
  background: transparent !important;
}

/* Firefox */
* {
  scrollbar-width: none !important;
}

/* IE 10+ */
* {
  -ms-overflow-style: none !important;
}

/* Make sure scrolling still works on all elements */
html, body {
  overflow-x: hidden;
  overflow-y: auto;
}

/* ============ RESET & BASE ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }

/* ============ PRELOADER ============ */
#preloader {
  position: fixed; inset: 0;
  background: var(--navy);
  z-index: 99999;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.preloader-inner { text-align: center; }

.preloader-logo {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  margin-bottom: 20px;
}
.preloader-logo .brand-g,
.preloader-logo .brand-g2 { color: var(--gold); }
.preloader-logo .brand-p  { color: var(--white); }

.preloader-bar {
  width: 180px; height: 3px;
  background: rgba(255,255,255,0.15);
  border-radius: 10px; overflow: hidden;
  margin: 0 auto;
}
.preloader-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 10px;
  animation: preloaderAnim 1.5s ease-in-out infinite;
}
@keyframes preloaderAnim {
  0%   { width: 0%; }
  100% { width: 100%; }
}

/* ============ UTILITIES ============ */
.text-gold   { color: var(--gold) !important; }
.text-navy   { color: var(--navy) !important; }
.bg-navy     { background-color: var(--navy) !important; }
.bg-navy-mid { background-color: var(--navy-mid) !important; }
.bg-gold     { background-color: var(--gold) !important; }
.bg-off-white{ background-color: var(--off-white) !important; }

.section-pad    { padding: 80px 0; }
.section-pad-sm { padding: 50px 0; }

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  font-family: var(--font-body);
}
.section-tag::before { content: '— '; }
.section-tag::after  { content: ' —'; }

.section-title {
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  color: var(--navy);
  margin-bottom: 16px;
}
.section-title span { color: var(--gold); }

.section-divider {
  width: 55px; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin: 0 auto 28px;
}
.section-divider.left { margin: 0 0 28px; }

/* ============ BUTTONS ============ */
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy) !important;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  padding: 11px 28px;
  letter-spacing: 0.03em;
  box-shadow: var(--shadow-gold);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201,162,39,0.4);
  color: var(--navy) !important;
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold) !important;
  border: 2px solid var(--gold);
  font-weight: 700;
  border-radius: 50px;
  padding: 9px 26px;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--navy) !important;
  transform: translateY(-2px);
}

.btn-navy {
  background: var(--navy);
  color: var(--white) !important;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  padding: 11px 28px;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
}
.btn-navy:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  color: var(--white) !important;
}

/* ============ NAVBAR ============ */
.gpg-navbar {
  background: transparent;
  padding: 16px 0;
  transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
  z-index: 1050;
}
.gpg-navbar.scrolled {
  background: var(--navy) !important;
  padding: 8px 0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}

.nav-logo {
  height: 52px;
  width: auto;
  transition: height 0.3s ease;
  object-fit: contain;
}
.gpg-navbar.scrolled .nav-logo { height: 42px; }

/* Brand fallback text */
.brand-text-fallback { display: flex; align-items: center; gap: 10px; }
.brand-gpg {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold);
}
.brand-lines .line1 { color: var(--white); font-weight: 700; font-size: 0.85rem; }
.brand-lines .line2 { color: var(--gold-light); font-size: 0.62rem; letter-spacing: 0.08em; }

/* Nav links */
.navbar-nav .nav-link {
  color: rgba(255,255,255,0.92) !important;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  padding: 8px 14px !important;
  position: relative;
  transition: color 0.2s ease;
}
.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 14px; right: 14px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active { color: var(--gold) !important; }
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after { transform: scaleX(1); }

/* Toggler */
.navbar-toggler {
  border: 1.5px solid var(--gold);
  border-radius: 8px;
  padding: 6px 10px;
}
.navbar-toggler:focus { box-shadow: none; }
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23c9a227' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Mobile nav dropdown */
@media (max-width: 991.98px) {
  .gpg-navbar { background: var(--navy) !important; padding: 10px 0; }
  .navbar-collapse {
    background: var(--navy-mid);
    border-radius: 12px;
    padding: 12px 8px;
    margin-top: 10px;
    border: 1px solid rgba(201,162,39,0.25);
    max-height: 80vh;
    overflow-y: auto;
  }
  .navbar-nav .nav-link { padding: 10px 16px !important; font-size: 0.95rem; }
  .navbar-nav .nav-link::after { display: none; }
  .navbar-nav .nav-item:last-child { padding: 8px 8px 4px; }
  .navbar-nav .nav-item:last-child .btn { width: 100%; justify-content: center; }
}

/* ============ HERO SLIDER ============ */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.hero-swiper { height: 100%; }

.hero-slide {
  position: relative;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-color: var(--navy);
}
.hero-slide::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,22,40,0.88) 0%,
    rgba(10,22,40,0.60) 50%,
    rgba(10,22,40,0.45) 100%
  );
  z-index: 1;
}

.hero-content {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: var(--white);
  width: 92%;
  max-width: 820px;
  z-index: 2;
  padding: 0 16px;
}

.hero-badge {
  display: inline-block;
  background: rgba(201,162,39,0.18);
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 5px 18px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero-title {
  font-size: clamp(1.6rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.hero-title .gold-word { color: var(--gold); }

.hero-subtitle {
  font-size: clamp(0.9rem, 2.5vw, 1.15rem);
  color: rgba(255,255,255,0.85);
  margin-bottom: 30px;
}

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

/* Stats bar */
.hero-stats {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(10,22,40,0.88);
  backdrop-filter: blur(6px);
  z-index: 5;
}
.hero-stat-item {
  padding: 16px 12px;
  text-align: center;
  border-right: 1px solid rgba(201,162,39,0.2);
}
.hero-stat-item:last-child { border-right: none; }
.hero-stat-num {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 3px;
}

.hero-swiper .swiper-pagination-bullet {
  background: rgba(255,255,255,0.45); opacity: 1; width: 9px; height: 9px;
}
.hero-swiper .swiper-pagination-bullet-active { background: var(--gold); }

/* ============ ABOUT PREVIEW ============ */
.about-preview { padding: 80px 0; background: var(--off-white); }

.about-img-wrapper {
  position: relative;
  border-radius: var(--radius);
  overflow: visible;
}
.about-img-wrapper img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}
.about-badge-card {
  position: absolute;
  bottom: -18px;
  right: 16px;
  background: var(--gold);
  color: var(--navy);
  padding: 20px 22px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-lg);
  min-width: 120px;
  z-index: 2;
}
.about-badge-card .num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
}
.about-badge-card .lbl {
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
}

.expertise-list { list-style: none; padding: 0; margin: 0; }
.expertise-list li {
  display: flex; align-items: center; gap: 10px;
  padding: 7px 0; font-weight: 500; font-size: 0.9rem;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.expertise-list li:last-child { border-bottom: none; }
.expertise-list li i { color: var(--gold); font-size: 0.9rem; flex-shrink: 0; }

/* ============ PROPERTY CARDS ============ */
.featured-section { padding: 80px 0; }

.property-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0,0,0,0.06);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.property-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.property-img-wrap {
  position: relative;
  height: 210px;
  overflow: hidden;
  flex-shrink: 0;
}
.property-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.property-card:hover .property-img-wrap img { transform: scale(1.07); }

.property-badge {
  position: absolute; top: 10px; left: 10px;
  padding: 4px 12px; border-radius: 50px;
  font-size: 0.68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.07em;
}
.badge-sale  { background: #28a745; color: white; }
.badge-rent  { background: var(--gold); color: var(--navy); }
.badge-lease { background: #17a2b8; color: white; }

.property-type-badge {
  position: absolute; top: 10px; right: 10px;
  background: rgba(10,22,40,0.85); color: white;
  padding: 3px 9px; border-radius: 50px;
  font-size: 0.62rem; font-weight: 600;
  max-width: 120px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

.property-body { padding: 18px; flex: 1; display: flex; flex-direction: column; }

.property-price {
  font-family: var(--font-heading);
  font-size: 1.3rem; font-weight: 700;
  color: var(--gold); margin-bottom: 6px;
}
.property-title {
  font-size: 0.95rem; font-weight: 700;
  color: var(--navy); margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.property-location {
  font-size: 0.82rem; color: var(--gray); margin-bottom: 10px;
}
.property-location i { color: var(--gold); }

.property-meta {
  display: flex; gap: 12px; flex-wrap: wrap;
  padding-top: 10px;
  border-top: 1px solid rgba(0,0,0,0.07);
  font-size: 0.78rem; color: var(--gray);
  margin-top: auto;
}
.property-meta span { display: flex; align-items: center; gap: 4px; }
.property-meta i { color: var(--gold); }

/* ============ SERVICES ============ */
.services-section { padding: 80px 0; background: var(--navy); }

.service-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,162,39,0.2);
  border-radius: var(--radius);
  padding: 30px 22px;
  text-align: center;
  transition: var(--transition);
  height: 100%;
  display: flex; flex-direction: column; align-items: center;
}
.service-card:hover {
  background: rgba(201,162,39,0.10);
  border-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.3);
}

.service-icon {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.8rem; color: var(--navy);
  flex-shrink: 0;
}
.service-title { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.service-desc  { font-size: 0.87rem; color: rgba(255,255,255,0.7); line-height: 1.7; }

/* ============ WHY CHOOSE US ============ */
.why-section { padding: 80px 0; background: var(--off-white); }

.why-card {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 22px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 3px 15px rgba(0,0,0,0.06);
  transition: var(--transition);
  height: 100%;
  border-left: 3px solid transparent;
}
.why-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-left-color: var(--gold);
}
.why-icon {
  width: 50px; height: 50px; min-width: 50px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1.3rem;
}
.why-content h6 { font-size: 0.9rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.why-content p  { font-size: 0.82rem; color: var(--gray); margin: 0; }

/* ============ TRUST SECTION ============ */
.trust-section { padding: 80px 0; background: var(--navy); }
.trust-feature { text-align: center; padding: 28px 18px; }
.trust-feature i { font-size: 2.2rem; color: var(--gold); margin-bottom: 14px; display: block; }
.trust-feature h5 { color: var(--white); font-size: 0.95rem; font-weight: 700; margin-bottom: 8px; }
.trust-feature p  { font-size: 0.82rem; color: rgba(255,255,255,0.62); margin: 0; }

/* ============ AREAS SERVED ============ */
.areas-section { padding: 80px 0; }

.area-card {
  position: relative; border-radius: var(--radius);
  overflow: hidden; height: 200px; cursor: pointer;
}
.area-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.area-card:hover img { transform: scale(1.08); }
.area-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.9) 0%, rgba(10,22,40,0.25) 100%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: flex-end;
  padding: 18px; transition: var(--transition);
}
.area-card:hover .area-overlay { background: linear-gradient(to top, rgba(201,162,39,0.85) 0%, rgba(10,22,40,0.5) 100%); }
.area-name { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 700; color: var(--white); margin-bottom: 2px; }
.area-desc { font-size: 0.78rem; color: rgba(255,255,255,0.82); }

/* ============ CTA SECTION ============ */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; top: -40%; right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,162,39,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* ============ TESTIMONIALS ============ */
.testimonials-section { padding: 80px 0; background: var(--off-white); }

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
  position: relative;
  transition: var(--transition);
  height: 100%;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.testimonial-card::before {
  content: '"';
  position: absolute; top: -10px; left: 24px;
  font-family: var(--font-heading); font-size: 5rem;
  color: var(--gold); line-height: 1; opacity: 0.25;
  pointer-events: none;
}
.testimonial-stars { color: var(--gold); margin-bottom: 12px; font-size: 0.9rem; }
.testimonial-text  { font-size: 0.9rem; color: var(--gray); line-height: 1.8; margin-bottom: 18px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700;
  flex-shrink: 0;
}
.author-name  { font-weight: 700; color: var(--navy); font-size: 0.9rem; }
.author-title { font-size: 0.78rem; color: var(--gray); }

/* ============ PAGE BANNER ============ */
.page-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 130px 0 60px;
  position: relative; overflow: hidden;
}
.page-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(201,162,39,0.07)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  pointer-events: none;
}
.page-banner .container { position: relative; z-index: 1; }
.page-banner h1 { font-size: clamp(1.8rem, 5vw, 2.8rem); color: var(--white); margin-bottom: 10px; }
.breadcrumb-item { color: rgba(255,255,255,0.65); font-size: 0.88rem; }
.breadcrumb-item.active { color: var(--gold); }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.35); }

/* ============ PROPERTIES PAGE ============ */
.filters-bar {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
  margin-bottom: 28px;
}
.filter-select {
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 8px;
  padding: 9px 13px;
  font-size: 0.88rem;
  transition: var(--transition);
  width: 100%;
}
.filter-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,162,39,0.14);
  outline: none;
}

/* ============ PROPERTY DETAIL ============ */
.property-gallery  { border-radius: var(--radius); overflow: hidden; margin-bottom: 28px; }
.property-gallery .main-img { height: 400px; object-fit: cover; width: 100%; }

.gallery-thumbs { display: flex; gap: 8px; margin-top: 8px; flex-wrap: wrap; }
.gallery-thumb {
  width: 76px; height: 56px; object-fit: cover;
  border-radius: 8px; cursor: pointer; opacity: 0.7;
  transition: var(--transition); border: 2px solid transparent;
}
.gallery-thumb:hover, .gallery-thumb.active { opacity: 1; border-color: var(--gold); }

.property-detail-card {
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 24px; margin-bottom: 22px;
}
.spec-item {
  display: flex; justify-content: space-between; align-items: center;
  padding: 11px 0; border-bottom: 1px solid rgba(0,0,0,0.06);
}
.spec-item:last-child { border-bottom: none; }
.spec-label { color: var(--gray); font-size: 0.88rem; display: flex; align-items: center; gap: 7px; }
.spec-label i { color: var(--gold); }
.spec-value { font-weight: 700; color: var(--navy); font-size: 0.9rem; text-align: right; }

/* ============ INQUIRY FORM ============ */
.inquiry-form-card {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 26px;
  position: sticky; top: 90px;
}
.inquiry-form-card .form-control,
.inquiry-form-card .form-select {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white); border-radius: 8px; padding: 11px 13px;
}
.inquiry-form-card .form-control:focus,
.inquiry-form-card .form-select:focus {
  background: rgba(255,255,255,0.12);
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,162,39,0.18);
  color: var(--white);
}
.inquiry-form-card .form-control::placeholder { color: rgba(255,255,255,0.38); }
.inquiry-form-card .form-label { color: rgba(255,255,255,0.78); font-size: 0.83rem; font-weight: 600; }

/* ============ ABOUT PAGE ============ */
.vision-mission-card {
  background: var(--white); border-radius: var(--radius);
  padding: 36px; box-shadow: var(--shadow);
  border-top: 4px solid var(--gold); height: 100%;
}
.timeline { position: relative; padding-left: 46px; }
.timeline::before {
  content: '';
  position: absolute; left: 18px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), var(--navy));
}
.timeline-item {
  position: relative; margin-bottom: 28px; padding-bottom: 28px;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.timeline-item:last-child { border-bottom: none; margin-bottom: 0; }
.timeline-item::before {
  content: '';
  position: absolute; left: -35px; top: 5px;
  width: 14px; height: 14px;
  background: var(--gold); border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 3px var(--gold);
}
.timeline-year { font-family: var(--font-heading); font-size: 0.95rem; font-weight: 700; color: var(--gold); margin-bottom: 3px; }
.timeline-text { font-size: 0.87rem; color: var(--gray); margin: 0; }

/* Stats */
.stat-box { text-align: center; padding: 28px 16px; }
.stat-num {
  font-family: var(--font-heading);
  font-size: 2.6rem; font-weight: 800;
  color: var(--gold); line-height: 1; margin-bottom: 6px;
}
.stat-label { font-size: 0.82rem; color: rgba(255,255,255,0.68); font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em; }

/* ============ CONTACT PAGE ============ */
.contact-info-card {
  background: var(--navy); color: var(--white);
  border-radius: var(--radius); padding: 30px; height: 100%;
}
.contact-item {
  display: flex; gap: 16px; align-items: flex-start;
  margin-bottom: 22px; padding-bottom: 22px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.contact-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.contact-icon {
  width: 46px; height: 46px; min-width: 46px;
  background: rgba(201,162,39,0.14); border: 1px solid var(--gold);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1.1rem;
}
.contact-label { font-size: 0.76rem; color: rgba(255,255,255,0.48); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px; }
.contact-value { font-weight: 600; color: var(--white); font-size: 0.9rem; }
.contact-value a { color: var(--gold-light); }
.contact-value a:hover { color: var(--gold); }

.contact-form-wrap {
  background: var(--white); border-radius: var(--radius);
  padding: 36px; box-shadow: var(--shadow);
}
.contact-form-wrap .form-control,
.contact-form-wrap .form-select {
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 8px; padding: 11px 14px; transition: var(--transition);
}
.contact-form-wrap .form-control:focus,
.contact-form-wrap .form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,162,39,0.13);
}

/* ============ PROJECTS ============ */
.project-card {
  background: var(--white); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow);
  transition: var(--transition); height: 100%;
}
.project-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.project-img { height: 210px; overflow: hidden; }
.project-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.project-card:hover .project-img img { transform: scale(1.07); }
.project-body { padding: 22px; }
.project-status {
  display: inline-block; padding: 3px 11px;
  border-radius: 50px; font-size: 0.68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 10px;
}
.status-ongoing  { background: rgba(40,167,69,0.1);  color: #28a745; border: 1px solid #28a745; }
.status-completed{ background: rgba(23,162,184,0.1); color: #17a2b8; border: 1px solid #17a2b8; }
.status-upcoming { background: rgba(255,193,7,0.1);  color: #ca9a00; border: 1px solid #ffc107; }
.project-title   { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 7px; }
.project-location{ font-size: 0.82rem; color: var(--gray); margin-bottom: 10px; }
.project-location i { color: var(--gold); }
.project-desc    { font-size: 0.85rem; color: var(--gray); line-height: 1.7; margin-bottom: 14px; }

/* ============ FOOTER ============ */
.gpg-footer { background: var(--navy); }
.footer-top { padding: 60px 0 36px; }
.footer-bottom {
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.07);
  font-size: 0.82rem; color: rgba(255,255,255,0.45);
}
.footer-logo { height: 55px; width: auto; max-width: 180px; object-fit: contain; }
.footer-about { font-size: 0.85rem; color: rgba(255,255,255,0.58); line-height: 1.8; }

.footer-heading {
  font-family: var(--font-heading);
  font-size: 1.05rem; color: var(--white);
  margin-bottom: 18px; position: relative; padding-bottom: 10px;
}
.footer-heading::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 32px; height: 2px;
  background: var(--gold); border-radius: 2px;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 7px; }
.footer-links a {
  color: rgba(255,255,255,0.58); font-size: 0.85rem;
  transition: var(--transition); display: inline-flex; align-items: center; gap: 6px;
}
.footer-links a:hover { color: var(--gold); padding-left: 4px; }
.footer-links a::before { content: '›'; color: var(--gold); }

.footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-contact li {
  display: flex; align-items: flex-start; gap: 9px;
  margin-bottom: 10px; color: rgba(255,255,255,0.62); font-size: 0.85rem;
}
.footer-contact a { color: rgba(255,255,255,0.62); }
.footer-contact a:hover { color: var(--gold); }

.social-links { display: flex; gap: 9px; flex-wrap: wrap; }
.social-link {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.68); font-size: 0.95rem;
  transition: var(--transition);
}
.social-link:hover {
  background: var(--gold); border-color: var(--gold);
  color: var(--navy); transform: translateY(-2px);
}

/* ============ FLOATING BUTTONS — fixed on ALL pages ============ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px;
  height: 58px;
  background: #25D366;
  color: #ffffff !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  box-shadow: 0 6px 22px rgba(37,211,102,0.45);
  z-index: 9999;              /* highest z-index */
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.1) translateY(-2px);
  color: #ffffff !important;
  box-shadow: 0 10px 30px rgba(37,211,102,0.55);
}

/* Pulse ring */
.whatsapp-float::after {
  content: '';
  position: absolute;
  width: 100%; height: 100%;
  border-radius: 50%;
  background: rgba(37,211,102,0.35);
  animation: waPulseRing 2s ease-out infinite;
}
@keyframes waPulseRing {
  0%   { transform: scale(1);   opacity: 0.8; }
  70%  { transform: scale(1.55); opacity: 0; }
  100% { transform: scale(1.55); opacity: 0; }
}

.scroll-top-btn {
  position: fixed;
  bottom: 100px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--navy);
  color: var(--gold);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  cursor: pointer;
  z-index: 9998;              /* just below whatsapp */
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.25s ease, background 0.25s ease;
}
.scroll-top-btn.visible { opacity: 1; visibility: visible; }
.scroll-top-btn:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-3px);
}

/* ============ FORM ELEMENTS ============ */
.form-control, .form-select { font-family: var(--font-body); font-size: 0.88rem; }
.form-label { font-weight: 600; font-size: 0.85rem; color: var(--navy); margin-bottom: 5px; }

/* ============ MISC ============ */
.alert-gold { background: rgba(201,162,39,0.08); border: 1px solid var(--gold); color: var(--gold-dark); }
.empty-state { text-align: center; padding: 55px 20px; color: var(--gray); }
.empty-state i { font-size: 3.5rem; color: rgba(0,0,0,0.1); margin-bottom: 14px; }

/* ============ RESPONSIVE FIXES ============ */

/* --- Tablet 768–991px --- */
@media (min-width: 768px) and (max-width: 991.98px) {
  .section-pad { padding: 65px 0; }
  .hero-section { height: 75vh; min-height: 520px; }
  .hero-stats .col-6 { display: none; }
  .hero-stats .col-6:nth-child(-n+4) { display: block; }
  .hero-stat-item { padding: 12px 8px; }
  .hero-stat-num { font-size: 1.5rem; }

  .about-img-wrapper img { height: 360px; }
  .about-badge-card { right: 10px; bottom: -14px; padding: 16px 18px; }

  .contact-form-wrap { padding: 28px; }
  .vision-mission-card { padding: 28px; }
  .inquiry-form-card { position: static; }
}

/* --- Mobile < 768px --- */
@media (max-width: 767.98px) {
  /* Global */
  .section-pad    { padding: 50px 0; }
  .section-pad-sm { padding: 36px 0; }
  .section-title  { font-size: 1.55rem; margin-bottom: 12px; }
  .section-divider { margin-bottom: 20px; }

  /* Hero */
  .hero-section { height: 100svh; min-height: 520px; }
  .hero-content { width: 96%; padding: 0 10px; }
  .hero-title   { font-size: 1.6rem; margin-bottom: 12px; }
  .hero-subtitle{ font-size: 0.88rem; margin-bottom: 22px; }
  .hero-badge   { font-size: 0.65rem; padding: 4px 14px; margin-bottom: 12px; }
  .hero-btns    { gap: 10px; }
  .hero-btns .btn-gold,
  .hero-btns .btn-outline-gold { padding: 10px 20px; font-size: 0.85rem; }
  .hero-stats   { display: none; }

  /* About preview */
  .about-preview { padding: 50px 0 60px; }
  .about-img-wrapper img { height: 260px; }
  .about-badge-card {
    position: static;
    display: inline-flex; align-items: center; gap: 10px;
    margin-top: 16px; border-radius: 10px;
    padding: 14px 20px; min-width: unset;
  }
  .about-badge-card .num { font-size: 1.6rem; }

  /* Property cards */
  .property-img-wrap { height: 190px; }
  .property-card:hover { transform: none; }

  /* Services */
  .services-section { padding: 50px 0; }
  .service-card { padding: 24px 18px; }
  .service-icon { width: 62px; height: 62px; font-size: 1.5rem; }

  /* Why */
  .why-card { padding: 16px; gap: 12px; }
  .why-icon { width: 44px; height: 44px; min-width: 44px; font-size: 1.1rem; }
  .why-card:hover { transform: none; }

  /* Trust */
  .trust-feature { padding: 20px 12px; }
  .trust-feature i { font-size: 1.8rem; }

  /* Areas */
  .area-card { height: 170px; }
  .area-name { font-size: 1.1rem; }

  /* Projects */
  .project-img { height: 185px; }
  .project-card:hover { transform: none; }
  .project-body { padding: 18px; }

  /* Page Banner */
  .page-banner { padding: 110px 0 48px; }
  .page-banner h1 { font-size: 1.7rem; }

  /* Properties filter */
  .filters-bar { padding: 16px; }

  /* Property detail */
  .property-gallery .main-img { height: 260px; }
  .gallery-thumb { width: 60px; height: 44px; }
  .inquiry-form-card { position: static; padding: 22px; }
  .property-detail-card { padding: 18px; }

  /* Contact */
  .contact-info-card { padding: 22px; }
  .contact-form-wrap { padding: 22px; }
  .contact-item { gap: 12px; }
  .contact-icon { width: 40px; height: 40px; min-width: 40px; font-size: 1rem; }

  /* About page */
  .vision-mission-card { padding: 24px; }
  .timeline { padding-left: 36px; }
  .timeline::before { left: 14px; }
  .timeline-item::before { left: -28px; width: 12px; height: 12px; }
  .stat-num { font-size: 2rem; }

  /* Footer */
  .footer-top { padding: 44px 0 28px; }
  .footer-logo { height: 48px; }
  .footer-bottom .row > div:last-child { text-align: left !important; margin-top: 6px; }

  /* Floating buttons */
  .whatsapp-float {
    bottom: 20px; right: 18px;
    width: 52px; height: 52px; font-size: 1.5rem;
  }
  .scroll-top-btn {
    bottom: 84px; right: 18px;
    width: 40px; height: 40px; font-size: 0.95rem;
  }

  /* CTA */
  .cta-section { padding: 50px 0; }
  .cta-section .d-flex { gap: 10px !important; }
  .cta-section .btn { width: 100%; justify-content: center; }

  /* Testimonials */
  .testimonial-card { padding: 24px; }

  /* Buttons full-width on mobile in forms */
  .hero-btns { flex-direction: column; align-items: center; }
  .hero-btns .btn { width: 220px; justify-content: center; }

  /* Tables scroll */
  .table-responsive { -webkit-overflow-scrolling: touch; }

  /* Fix backdrop on mobile perf */
  .hero-stats { backdrop-filter: none; }
}

/* --- Very small screens < 390px --- */
@media (max-width: 389.98px) {
  .hero-title   { font-size: 1.35rem; }
  .hero-btns .btn { width: 90%; font-size: 0.82rem; padding: 9px 18px; }
  .section-title { font-size: 1.35rem; }
  .stat-num { font-size: 1.8rem; }
  .nav-logo { height: 42px; }
}

/* ============ ANIMATIONS ============ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-fade-up { animation: fadeInUp 0.55s ease forwards; }

/* ============ EMPTY STATE ============ */
.empty-state i { display: block; }

/* ================================================================
   TESTIMONIALS v2 — Premium redesign
================================================================ */
.testimonials-section {
  padding: 90px 0;
  background: linear-gradient(180deg, #f8f6f0 0%, #ffffff 100%);
  overflow: hidden;
}

/* Card */
.tcard {
  background: #fff;
  border-radius: 18px;
  padding: 32px 28px 26px;
  box-shadow: 0 4px 24px rgba(10,22,40,0.08);
  border: 1px solid rgba(201,162,39,0.12);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.swiper-slide-active .tcard,
.tcard:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(10,22,40,0.13);
  border-color: rgba(201,162,39,0.35);
}

/* Quote icon top-right */
.tcard-quote {
  position: absolute;
  top: 20px; right: 24px;
  font-size: 2.6rem;
  color: var(--gold);
  opacity: 0.18;
  line-height: 1;
  font-family: var(--font-heading);
}

/* Stars */
.tcard-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}
.tcard-stars .bi-star-fill { color: #f5a623; font-size: 0.85rem; }
.tcard-stars .bi-star      { color: #ddd;    font-size: 0.85rem; }

/* Text */
.tcard-text {
  font-size: 0.92rem;
  color: #555;
  line-height: 1.85;
  font-style: italic;
  flex: 1;
  margin-bottom: 20px;
}

/* Divider */
.tcard-divider {
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-bottom: 18px;
  opacity: 0.4;
}

/* Author row */
.tcard-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.tcard-avatar {
  width: 44px; height: 44px; min-width: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 1.1rem; font-weight: 700;
}
.tcard-name { font-weight: 700; color: var(--navy); font-size: 0.9rem; }
.tcard-role { font-size: 0.76rem; color: var(--gray); margin-top: 1px; }
.tcard-verified { color: #1da1f2; font-size: 1.05rem; }

/* Nav arrows */
.t-nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--gold);
  color: var(--navy);
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition);
  box-shadow: 0 4px 14px rgba(0,0,0,0.1);
}
.t-nav:hover { background: var(--gold); color: var(--navy); }
.t-nav-prev { left: -22px; }
.t-nav-next { right: -22px; }

/* Dots */
.t-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}
.tdot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(10,22,40,0.15);
  border: none; cursor: pointer;
  padding: 0;
  transition: var(--transition);
}
.tdot.active {
  background: var(--gold);
  width: 28px;
  border-radius: 5px;
}

/* Trust badges */
.t-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 52px;
  background: var(--navy);
  border-radius: 16px;
  padding: 22px 32px;
  flex-wrap: wrap;
}
.t-trust-item {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  padding: 8px 24px;
  flex: 1;
  justify-content: center;
  min-width: 160px;
}
.t-trust-item i { color: var(--gold); font-size: 1.3rem; }
.t-trust-item strong { color: var(--white); }
.t-trust-sep {
  width: 1px; height: 36px;
  background: rgba(201,162,39,0.25);
}

/* Mobile adjustments */
@media (max-width: 767.98px) {
  .testimonials-section { padding: 52px 0; }
  .tcard { padding: 24px 20px 20px; border-radius: 14px; }
  .tcard-text { font-size: 0.88rem; }
  .t-nav { display: none; }
  .t-trust { padding: 18px 16px; gap: 0; border-radius: 12px; }
  .t-trust-item { padding: 8px 12px; font-size: 0.82rem; min-width: 120px; }
  .t-trust-sep { display: none; }
}

/* ================================================================
   CONTACT PAGE v2 — Full redesign
================================================================ */

/* Hero strip */
.contact-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 140px 0 0;
  position: relative; overflow: hidden;
}
.contact-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="g" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(201,162,39,0.07)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23g)"/></svg>');
  pointer-events: none;
}
.contact-hero .container { position: relative; z-index: 1; }

/* Quick-contact bar (floats below hero) */
.qc-bar {
  background: var(--gold);
  border-radius: 18px 18px 0 0;
  padding: 0;
  margin-top: 40px;
}
.qc-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 28px;
  border-right: 1px solid rgba(10,22,40,0.12);
  text-decoration: none;
  transition: background 0.2s ease;
  flex: 1;
  min-width: 0;
}
.qc-item:last-child { border-right: none; }
.qc-item:hover { background: rgba(10,22,40,0.08); }
.qc-icon {
  width: 46px; height: 46px; min-width: 46px;
  background: var(--navy);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1.2rem;
}
.qc-label { font-size: 0.7rem; font-weight: 700; color: rgba(10,22,40,0.6); text-transform: uppercase; letter-spacing: 0.1em; }
.qc-value { font-size: 0.92rem; font-weight: 800; color: var(--navy); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* Main contact section */
.contact-main { padding: 70px 0 80px; background: #f8f6f0; }

/* Info card (left) */
.cinfo-card {
  background: var(--navy);
  border-radius: 20px;
  padding: 36px 32px;
  height: 100%;
}
.cinfo-heading {
  font-family: var(--font-heading);
  font-size: 1.5rem; font-weight: 700;
  color: var(--white); margin-bottom: 6px;
}
.cinfo-sub { color: rgba(255,255,255,0.55); font-size: 0.88rem; margin-bottom: 30px; }

.cinfo-row {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.cinfo-row:last-of-type { border-bottom: none; }
.cinfo-icon {
  width: 42px; height: 42px; min-width: 42px;
  background: rgba(201,162,39,0.12);
  border: 1px solid rgba(201,162,39,0.3);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1.1rem;
}
.cinfo-ttl { font-size: 0.72rem; color: rgba(255,255,255,0.42); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 3px; }
.cinfo-val { color: var(--white); font-weight: 600; font-size: 0.88rem; }
.cinfo-val a { color: rgba(255,255,255,0.85); transition: color 0.2s; }
.cinfo-val a:hover { color: var(--gold); }

/* Social row */
.cinfo-social { display: flex; gap: 10px; margin-top: 26px; }
.cinfo-soc-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.05rem; color: var(--white);
  transition: transform 0.2s ease, opacity 0.2s;
  text-decoration: none;
}
.cinfo-soc-btn:hover { transform: translateY(-3px); opacity: 0.9; color: var(--white); }
.soc-fb   { background: #1877f2; }
.soc-ig   { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.soc-wa   { background: #25D366; }

/* WhatsApp big button */
.wa-big-btn {
  display: flex; align-items: center; gap: 12px;
  background: #25D366; color: #fff !important;
  padding: 14px 22px; border-radius: 12px;
  font-weight: 700; font-size: 0.95rem;
  text-decoration: none; margin-top: 22px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 6px 20px rgba(37,211,102,0.35);
}
.wa-big-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(37,211,102,0.45); color: #fff !important; }
.wa-big-btn i { font-size: 1.4rem; }

/* Form card (right) */
.cform-card {
  background: var(--white);
  border-radius: 20px;
  padding: 36px 32px;
  box-shadow: 0 8px 40px rgba(10,22,40,0.09);
  height: 100%;
}
.cform-title { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.cform-sub   { color: var(--gray); font-size: 0.88rem; margin-bottom: 26px; }

.cform-card .form-label { font-weight: 700; font-size: 0.82rem; color: var(--navy); letter-spacing: 0.02em; }
.cform-card .form-control,
.cform-card .form-select {
  border: 1.5px solid #e8e8e8;
  border-radius: 10px;
  padding: 11px 14px;
  font-size: 0.9rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  background: #fafafa;
}
.cform-card .form-control:focus,
.cform-card .form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,162,39,0.12);
  background: #fff; outline: none;
}
.cform-card .form-control::placeholder { color: #bbb; }
.cform-card textarea { resize: vertical; min-height: 110px; }

.cform-submit {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy) !important; border: none;
  border-radius: 12px; padding: 14px;
  font-weight: 800; font-size: 1rem; width: 100%;
  box-shadow: 0 6px 20px rgba(201,162,39,0.3);
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.cform-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(201,162,39,0.4); }

/* Map */
.contact-map { padding: 0 0 70px; background: #f8f6f0; }
.map-wrap {
  border-radius: 20px; overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

/* Areas served */
.contact-areas { padding: 0 0 80px; background: #f8f6f0; }
.area-pill {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px; padding: 28px 16px;
  background: var(--navy); border-radius: 16px;
  color: var(--white); text-align: center;
  transition: var(--transition); cursor: default;
  border: 2px solid transparent;
}
.area-pill:hover {
  background: var(--gold); color: var(--navy);
  border-color: var(--gold);
}
.area-pill:hover i { color: var(--navy) !important; }
.area-pill i { color: var(--gold); font-size: 2rem; transition: color 0.2s; }
.area-pill h6 { font-weight: 700; font-size: 1rem; margin: 0; }
.area-pill p  { font-size: 0.76rem; opacity: 0.7; margin: 0; }

/* Mobile contact */
@media (max-width: 767.98px) {
  .contact-hero { padding-top: 110px; }
  .qc-bar { border-radius: 14px 14px 0 0; margin-top: 24px; }
  .qc-item { padding: 14px 16px; gap: 10px; }
  .qc-icon { width: 38px; height: 38px; min-width: 38px; font-size: 1rem; }
  .qc-value { font-size: 0.82rem; }
  .contact-main { padding: 44px 0 56px; }
  .cinfo-card  { padding: 24px 20px; border-radius: 14px; }
  .cform-card  { padding: 24px 20px; border-radius: 14px; margin-top: 0; }
  .cinfo-heading, .cform-title { font-size: 1.2rem; }
  .contact-areas { padding: 0 0 56px; }
  .area-pill { padding: 20px 12px; border-radius: 12px; }
  .area-pill i  { font-size: 1.6rem; }
  .area-pill h6 { font-size: 0.9rem; }
}

/* ================================================================
   GLOBAL MOBILE POLISH — Extra fixes
================================================================ */
@media (max-width: 767.98px) {

  /* prevent horizontal overflow everywhere */
  .container { padding-left: 16px; padding-right: 16px; }

  /* hero buttons always stacked neatly */
  .hero-btns { flex-direction: column; align-items: center; gap: 10px; }
  .hero-btns .btn { width: min(240px, 90vw); justify-content: center; font-size: 0.88rem; }

  /* about section: remove overflow from badge */
  .about-img-wrapper { overflow: visible; }
  .about-preview .row { row-gap: 2.5rem !important; }

  /* property cards: 1 per row on very small, 2 on > 400px */
  .property-card { margin-bottom: 0; }

  /* why cards: full width on mobile */
  .why-section .col-6 { width: 100% !important; max-width: 100% !important; flex: 0 0 100%; }

  /* trust section */
  .trust-feature { padding: 18px 10px; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .trust-feature:last-child { border-bottom: none; }

  /* area cards */
  .area-card { height: 150px; }

  /* categories grid */
  .section-pad .row .col-6.col-md-3.col-lg-2 { width: 33.333% !important; flex: 0 0 33.333%; }

  /* footer stack */
  .footer-top .col-6 { width: 100% !important; flex: 0 0 100%; }

  /* remove AOS x-translation on mobile (prevents white flash) */
  [data-aos="fade-right"],
  [data-aos="fade-left"] {
    transform: none !important;
    opacity: 1 !important;
  }

  /* forms: inputs full height touch-friendly */
  .form-control, .form-select { min-height: 46px; font-size: 16px !important; /* prevents iOS zoom */ }
  textarea.form-control { min-height: 110px; font-size: 16px !important; }
}

@media (max-width: 389.98px) {
  .section-pad .row .col-6.col-md-3.col-lg-2 { width: 50% !important; flex: 0 0 50%; }
  .qc-item .qc-value { font-size: 0.78rem; }
}

/* ── Category pills ── */
.cat-pill { transition: background 0.25s ease, transform 0.2s ease; }
.cat-pill:hover { background: var(--navy) !important; transform: translateY(-3px); }
.cat-pill:hover .cat-icon { color: var(--gold) !important; }
.cat-pill:hover .cat-label { color: white !important; }
