/* ===== Polished UI Overrides ===== */

:root {
  --brand-gold: #947054;
  --brand-gold-light: #c4a882;
  --brand-gold-dark: #7a5a3e;
  --brand-blue: #6591e5;
  --brand-dark: #1a2332;
  --brand-light: #f4f6f9;
  --text-body: #5a6578;
  --text-heading: #1e2a3a;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow-soft: 0 12px 40px rgba(26, 35, 50, 0.07);
  --shadow-card: 0 4px 24px rgba(26, 35, 50, 0.06);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", "Open Sans", sans-serif;
  color: var(--text-body);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "DM Sans", "Open Sans", sans-serif;
  color: var(--text-heading);
  letter-spacing: -0.02em;
}

body {
  padding-top: 0;
}

body.nav-open {
  overflow: hidden;
}

body.nav-open::before {
  content: '';
  position: fixed;
  inset: 0;
  background: rgba(26, 35, 50, 0.45);
  z-index: 9999;
}

/* --- Top bar --- */
.top-bar {
  background: var(--brand-dark);
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 500;
  padding: 8px 0;
  z-index: 10001;
  position: relative;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.top-bar span,
.top-bar a {
  color: rgba(255, 255, 255, 0.92);
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.top-bar a:hover {
  color: var(--brand-gold-light);
}

.top-bar i {
  color: var(--brand-gold-light);
}

/* --- Site header --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10000;
  background: #fff;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
  transition: box-shadow var(--transition);
}

.site-header.is-scrolled {
  box-shadow: 0 4px 24px rgba(26, 35, 50, 0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 72px;
  padding: 8px 15px;
}

.header-logo img {
  display: block;
  width: auto;
  max-width: 220px;
}

.header-nav ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header-nav ul li a {
  display: block;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-heading);
  border-radius: 8px;
  transition: var(--transition);
  white-space: nowrap;
}

.header-nav ul li a:hover {
  color: var(--brand-gold);
  background: rgba(148, 112, 84, 0.08);
}

.header-nav ul li a.header-cta {
  background: var(--brand-gold);
  color: #fff !important;
  padding: 10px 18px;
  margin-left: 6px;
}

.header-nav ul li a.header-cta:hover {
  background: var(--brand-gold-dark);
  color: #fff !important;
}

.header-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: none;
  background: var(--brand-light);
  border-radius: 10px;
  cursor: pointer;
}

.header-toggle span {
  display: block;
  height: 2px;
  background: var(--brand-dark);
  border-radius: 2px;
  transition: var(--transition);
}

.header-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.header-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.header-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 1100px) {
  .header-nav ul li a {
    padding: 8px 9px;
    font-size: 12px;
  }
}

@media (max-width: 991px) {
  .header-toggle {
    display: flex;
  }

  .header-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, 88vw);
    height: 100vh;
    background: #fff;
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.12);
    padding: 88px 24px 32px;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    overflow-y: auto;
  }

  .header-nav.is-open {
    transform: translateX(0);
  }

  .header-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }

  .header-nav ul li a {
    padding: 14px 16px;
    font-size: 15px;
    border-radius: 10px;
  }

  .header-nav ul li a.header-cta {
    margin: 12px 0 0;
    text-align: center;
  }
}

/* Hide legacy broken header styles */
.header-area,
.main-header-area {
  display: none !important;
}

/* --- Clean banner --- */
.hero-area.hero-clean {
  position: relative;
  overflow: hidden;
  background: #1a2332;
  line-height: 0;
  margin-top: 0;
}

.hero-area.hero-clean .carousel,
.hero-area.hero-clean .carousel-inner,
.hero-area.hero-clean .carousel-inner .item {
  width: 100%;
}

.hero-area.hero-clean .carousel-inner .item {
  position: relative;
  min-height: unset;
}

.hero-area.hero-clean .carousel-inner .item::after {
  display: none;
}

.hero-area.hero-clean .carousel-inner .item picture,
.hero-area.hero-clean .carousel-inner .item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: 72% center;
  min-height: 280px;
  max-height: none;
}

@media (min-width: 768px) {
  .hero-area.hero-clean .carousel-inner .item picture,
  .hero-area.hero-clean .carousel-inner .item img {
    min-height: 380px;
    max-height: 520px;
    object-fit: cover;
  }
}

@media (min-width: 1200px) {
  .hero-area.hero-clean .carousel-inner .item picture,
  .hero-area.hero-clean .carousel-inner .item img {
    max-height: 560px;
  }
}

/* --- Trust strip --- */
.trust-strip {
  background: linear-gradient(90deg, var(--brand-gold-dark) 0%, var(--brand-gold) 50%, var(--brand-gold-dark) 100%);
  padding: 12px 0;
}

.trust-strip-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.trust-strip-list li {
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.trust-strip-list li i {
  color: #fff;
  opacity: 0.9;
}

/* --- Global polish --- */
.featured-properties-area {
  background: #fff;
}

.boxBg1 {
  background: var(--brand-light) !important;
  background-image: none !important;
}

.container {
  max-width: 1140px;
}

.section-heading {
  margin-bottom: 44px;
}

.section-heading.text-center,
.about-grid .section-heading {
  text-align: center;
}

.about-grid .section-heading {
  text-align: left;
}

/* Enquiry bar --- */
.south-search-area.enquiry-bar-v2 {
  margin-top: 0;
  position: relative;
  z-index: 10;
  padding: 48px 0 36px;
  background: linear-gradient(180deg, #fff 0%, var(--brand-light) 100%);
}

.enquiry-bar-v2 .advanced-search-form {
  background: #fff;
  border: 1px solid rgba(148, 112, 84, 0.12);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
}

.enquiry-bar-v2 .search-title {
  background: linear-gradient(135deg, var(--brand-gold) 0%, var(--brand-gold-dark) 100%) !important;
  border-radius: 10px 10px 0 0;
}

.enquiry-bar-v2 .search-title p {
  color: #fff !important;
  font-weight: 600;
}

.enquiry-bar-v2 .form-control:focus {
  border-color: var(--brand-gold);
  box-shadow: 0 0 0 3px rgba(148, 112, 84, 0.15);
}

.enquiry-bar-v2 .south-btn {
  border-radius: 10px;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: var(--transition);
}

.enquiry-bar-v2 .south-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(148, 112, 84, 0.35);
}

/* --- Section headings --- */
.section-heading {
  margin-bottom: 48px;
}

.section-heading h1,
.section-heading h2 {
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 700;
  color: var(--text-heading);
  line-height: 1.25;
}

.section-heading::after {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-gold), var(--brand-gold-light));
  border-radius: 3px;
  margin-top: 16px;
}

.section-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-gold);
  margin-bottom: 10px;
}

.contant p {
  font-size: 15px;
  line-height: 1.85;
  color: var(--text-body);
}

.contant a {
  color: var(--brand-gold);
  font-weight: 600;
}

.contant a:hover {
  color: var(--brand-gold-dark);
}

/* --- About section --- */
.about-section-v2 {
  background: #fff;
  padding-top: 80px !important;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
  text-align: left;
}

.about-grid .section-heading {
  text-align: left;
  margin-bottom: 0;
}

.about-grid .section-heading::after {
  margin: 16px 0 0;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.highlight-card {
  background: #fff;
  border: 1px solid #e8ecf2;
  border-radius: var(--radius-lg);
  padding: 22px 18px;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.highlight-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
  border-color: rgba(148, 112, 84, 0.25);
}

.highlight-card .num {
  font-size: 28px;
  font-weight: 700;
  color: var(--brand-gold);
  line-height: 1;
  margin-bottom: 6px;
}

.highlight-card .label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-body);
  line-height: 1.4;
}

.highlight-card.accent {
  grid-column: span 2;
  background: linear-gradient(135deg, var(--brand-dark) 0%, #2d3d52 100%);
  border: none;
}

.highlight-card.accent .num {
  font-size: 15px;
  color: var(--brand-gold-light);
  letter-spacing: 0.04em;
}

.highlight-card.accent .label {
  color: rgba(255, 255, 255, 0.85);
}

/* --- Pricing cards --- */
.pricing-section-v2 {
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid #eef1f5;
}

.pricing-section-v2 .section-subtitle {
  text-align: center;
  color: var(--text-body);
  font-size: 15px;
  margin: -36px auto 40px;
  max-width: 520px;
  line-height: 1.6;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 18px;
}

.pricing-card {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid #e8ecf2;
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-soft);
  border-color: rgba(148, 112, 84, 0.3);
}

.pricing-card-header {
  background: linear-gradient(180deg, #fafbfc 0%, #f4f6f9 100%);
  padding: 18px 20px;
  border-bottom: none;
}

.pricing-card-header .bhk-tag {
  background: rgba(148, 112, 84, 0.12);
  color: var(--brand-gold-dark);
  font-size: 10px;
  padding: 4px 9px;
  border-radius: 5px;
}

.pricing-card-header h3 {
  font-size: 17px;
  font-weight: 700;
}

.pricing-card-body {
  padding: 18px 20px;
  flex: 1;
}

.pricing-card-body .area span {
  font-size: 13px;
  font-weight: 600;
  color: #999;
}

.pricing-card-body .note {
  font-size: 13px;
  color: #888;
  margin: 0;
}

.pricing-card-footer {
  padding: 0 20px 18px;
}

.pricing-card-footer a {
  display: block;
  text-align: center;
  color: #fff !important;
  padding: 11px;
  font-weight: 600;
  font-size: 14px;
  border-radius: 10px;
  background: var(--brand-gold);
  transition: var(--transition);
}

.pricing-card-footer a:hover {
  background: var(--brand-gold-dark);
  color: #fff !important;
}

/* --- Amenities --- */
.amenities-section-v2 {
  background: var(--brand-light);
}

.amenity-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 28px;
}

.amenity-tab-btn {
  background: #fff;
  border: 1px solid #dde3ea;
  color: #555;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 20px;
  cursor: pointer;
  transition: var(--transition);
}

.amenity-tab-btn:hover,
.amenity-tab-btn.active {
  background: var(--brand-gold);
  border-color: var(--brand-gold);
  color: #fff;
}

.amenity-panel {
  display: none;
}

.amenity-panel.active {
  display: block;
}

.amenity-grid-v2 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 14px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.amenity-grid-v2 li {
  background: #fff;
  border-radius: 14px;
  padding: 20px 12px;
  text-align: center;
  border: 1px solid #e8ecf2;
  transition: var(--transition);
}

.amenity-icon-wrap {
  width: 52px;
  height: 52px;
  margin: 0 auto 12px;
  background: linear-gradient(135deg, #f8f0e8 0%, #efe4d6 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.amenity-icon-wrap img {
  width: 28px !important;
  margin: 0 !important;
}

.amenity-grid-v2 li p {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-heading);
  margin: 0;
  line-height: 1.35;
}

.amenity-grid-v2 li:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

.pricing-card-body .area {
  font-size: 26px;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 4px;
}

/* --- Gallery --- */
.gallery-section-v2 {
  background: linear-gradient(180deg, #1a2332 0%, #243044 100%);
  padding: 80px 0 !important;
}

.gallery-section-v2 .section-heading h2 {
  color: #fff;
}

.gallery-section-v2 .section-heading::after {
  background: var(--brand-gold);
}

.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 180px;
  gap: 14px;
}

.gallery-masonry .gallery-item {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
}

.gallery-masonry .gallery-item:nth-child(1) { grid-column: span 5; grid-row: span 2; }
.gallery-masonry .gallery-item:nth-child(2) { grid-column: span 4; grid-row: span 1; }
.gallery-masonry .gallery-item:nth-child(3) { grid-column: span 3; grid-row: span 2; }
.gallery-masonry .gallery-item:nth-child(4) { grid-column: span 4; grid-row: span 1; }
.gallery-masonry .gallery-item:nth-child(5) { grid-column: span 3; grid-row: span 1; }

.gallery-masonry .gallery-item a,
.gallery-masonry .gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.gallery-masonry .gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-masonry .gallery-item {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

/* --- Floor plans --- */
#Floor.boxBg1 {
  background: #fff;
}

.floor-card-v2 {
  border: 1px solid #e8ecf2;
  border-radius: var(--radius-lg);
}

.floor-card-v2 .property-content h3 {
  font-size: 15px;
  font-weight: 700;
  padding: 16px 18px;
  margin: 0;
  background: #fafbfc;
  border-top: 1px solid #eef1f5;
}

.floor-card-v2 .floor-badge {
  background: rgba(26, 35, 50, 0.85);
  backdrop-filter: blur(4px);
  border-radius: 6px;
  font-size: 11px;
  letter-spacing: 0.05em;
}

/* --- Location --- */
.location-section-v2 {
  background: var(--brand-light);
}

.location-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: stretch;
}

.location-map-wrap {
  border: 4px solid #fff;
  box-shadow: var(--shadow-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 480px;
}

.location-map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 480px;
  border: 0;
  display: block;
}

.location-side-panel {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.distance-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.distance-grid li {
  background: #fff;
  border-left: 3px solid var(--brand-gold);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 13px;
  color: var(--text-body);
  line-height: 1.45;
}

.distance-grid li .dist {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: var(--brand-gold);
  margin-bottom: 3px;
}

.location-enquiry-v2 {
  background: linear-gradient(145deg, var(--brand-dark) 0%, #2a3548 100%);
  border-radius: var(--radius-lg);
  padding: 26px;
  color: #fff;
  flex: 1;
}

.location-enquiry-v2 h3 {
  color: #fff;
  font-size: 19px;
  margin-bottom: 6px;
}

.location-enquiry-v2 .sub {
  font-size: 13px;
  opacity: 0.8;
  margin-bottom: 18px;
}

.location-enquiry-v2 .form-control {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  border-radius: 10px;
  height: 44px;
  margin-bottom: 10px;
}

.location-enquiry-v2 .form-control::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.location-enquiry-v2 .south-btn {
  width: 100%;
  background: var(--brand-gold);
  border: none;
  border-radius: 10px;
  padding: 12px;
  font-weight: 600;
  margin-top: 4px;
}

/* --- FAQ --- */
.faq-section-v2 {
  background: #fff;
}

.faq-accordion {
  max-width: 780px;
  margin: 0 auto;
}

.faq-item {
  border-radius: 12px;
  transition: var(--transition);
  background: #fff;
  margin-bottom: 10px;
  box-shadow: var(--shadow-card);
  border: 1px solid #e8ecf2;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 18px 48px 18px 22px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-heading);
  cursor: pointer;
  position: relative;
  line-height: 1.45;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  font-weight: 300;
  color: var(--brand-gold);
}

.faq-item.open .faq-question::after {
  content: '−';
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 22px;
}

.faq-item.open .faq-answer {
  max-height: 280px;
  padding: 0 22px 18px;
}

.faq-answer p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-body);
  margin: 0;
}

/* --- CTA banner --- */
.cta-banner-v2 {
  background: linear-gradient(135deg, var(--brand-dark) 0%, #2a3848 60%, var(--brand-gold-dark) 100%);
  padding: 80px 0;
}

.cta-banner-v2 .contact-heading {
  text-align: center;
  margin-bottom: 32px !important;
}

.cta-banner-v2 .contact-heading h2 {
  font-size: clamp(22px, 3vw, 30px);
}

.cta-banner-v2 .advanced-search-form {
  max-width: 960px;
  margin: 0 auto;
}

/* --- Footer --- */
.footer-area {
  background-size: cover !important;
}

.footer-widget-area p,
.footer-widget-area h6 {
  line-height: 1.7;
}

/* --- Floating action buttons --- */
.float-call,
.float-enquire {
  position: fixed;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  color: #fff !important;
  text-decoration: none !important;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
  transition: var(--transition);
}

.float-call {
  bottom: 24px;
  left: 24px;
  background: linear-gradient(135deg, #25a244 0%, #1d8a38 100%);
}

.float-enquire {
  bottom: 24px;
  right: 24px;
  background: linear-gradient(135deg, var(--brand-gold) 0%, var(--brand-gold-dark) 100%);
}

.float-call:hover,
.float-enquire:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.28);
  color: #fff !important;
}

.float-call i,
.float-enquire i {
  font-size: 16px;
}

/* --- Global button polish --- */
.south-btn {
  border-radius: 10px !important;
  font-weight: 600 !important;
  transition: var(--transition) !important;
}

/* --- Responsive --- */
@media (max-width: 991px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-highlights {
    order: -1;
  }

  .location-split {
    grid-template-columns: 1fr;
  }

  .gallery-masonry {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
  }

  .gallery-masonry .gallery-item:nth-child(n) {
    grid-column: span 1;
    grid-row: span 1;
  }

  .gallery-masonry .gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
  }
}

@media (max-width: 767px) {
  .trust-strip-list {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .trust-strip-list li {
    font-size: 12px;
  }

  .south-search-area.enquiry-bar-v2 {
    padding: 32px 0 24px;
  }

  .about-highlights {
    grid-template-columns: 1fr 1fr;
  }

  .highlight-card.accent {
    grid-column: span 2;
  }

  .distance-grid {
    grid-template-columns: 1fr;
  }

  .gallery-masonry {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
  }

  .gallery-masonry .gallery-item:nth-child(n) {
    grid-column: span 1;
    grid-row: span 1;
  }

  .float-call span,
  .float-enquire span {
    display: none;
  }

  .float-call,
  .float-enquire {
    width: 52px;
    height: 52px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }

  .float-call {
    bottom: 16px;
    left: 16px;
  }

  .float-enquire {
    bottom: 16px;
    right: 16px;
  }
}

/* ===== Icons ===== */
.search-title p i,
.south-btn .fa,
.btn.south-btn .fa {
  margin-right: 8px;
}

.trust-strip-list li i {
  font-size: 15px;
  width: 18px;
  text-align: center;
}

/* Input fields with icons */
.input-icon-wrap {
  position: relative;
}

.input-icon-wrap > .fa {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--brand-gold);
  font-size: 15px;
  z-index: 2;
  pointer-events: none;
}

.input-icon-wrap .form-control {
  padding-left: 42px !important;
}

.input-icon-wrap.light-icon > .fa {
  color: rgba(255, 255, 255, 0.65);
}

.location-enquiry-v2 h3 .fa {
  margin-right: 8px;
  color: var(--brand-gold-light);
}

/* Highlight stat cards */
.highlight-icon {
  font-size: 22px;
  color: var(--brand-gold);
  margin-bottom: 10px;
  display: block;
}

.highlight-card.accent .highlight-icon {
  color: var(--brand-gold-light);
}

/* Distance grid icons */
.distance-grid li {
  position: relative;
  padding-left: 42px !important;
}

.distance-grid li .dist-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--brand-gold);
  font-size: 14px;
  width: 16px;
  text-align: center;
}

.distance-grid li .dist {
  display: inline;
  font-size: inherit;
  font-weight: 700;
  color: var(--brand-gold);
  margin-right: 4px;
}

/* Pricing card button icons */
.pricing-card-footer a .fa {
  margin-right: 6px;
}

/* Footer & CTA heading icons */
.widget-title h6 .fa,
.contact-heading h2 .fa {
  margin-right: 8px;
  color: var(--brand-gold-light);
}

.cta-banner-v2 .contact-heading h2 .fa {
  color: var(--brand-gold-light);
}

/* Floating buttons */
.float-call .fa,
.float-enquire .fa {
  font-size: 18px;
}

/* Modal */
.modal-title .fa {
  margin-right: 8px;
  color: var(--brand-gold);
}

#Enquire_Now_Popup .input-icon-wrap {
  margin-bottom: 12px;
}

#Enquire_Now_Popup .btn .fa {
  margin-right: 6px;
}

.section-eyebrow .fa {
  margin-right: 6px;
}

.top-bar .fa {
  font-size: 14px;
}

/* --- Legal pages --- */
.legal-page {
  background: var(--brand-light);
  padding: 48px 0 72px !important;
}

.legal-page .legal-content {
  max-width: 820px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 40px 44px;
  box-shadow: var(--shadow-soft);
  border: 1px solid #e8ecf2;
  text-align: left;
}

.legal-page h1 {
  font-size: clamp(26px, 4vw, 34px);
  margin-bottom: 8px;
  color: var(--text-heading);
}

.legal-page .legal-meta {
  color: #888;
  font-size: 14px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eef1f5;
}

.legal-page h2 {
  font-size: 20px;
  margin: 32px 0 12px;
  color: var(--text-heading);
}

.legal-page h3 {
  font-size: 17px;
  margin: 24px 0 10px;
  color: var(--text-heading);
}

.legal-page p,
.legal-page li {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-body);
}

.legal-page ul {
  padding-left: 22px;
  margin: 12px 0 16px;
}

.legal-page ul li {
  margin-bottom: 8px;
}

.legal-page a {
  color: var(--brand-gold);
  font-weight: 600;
}

.legal-page a:hover {
  color: var(--brand-gold-dark);
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
  padding: 12px 20px;
  background: var(--brand-dark);
  color: #fff !important;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition);
}

.legal-back:hover {
  background: var(--brand-gold);
  color: #fff !important;
}

@media (max-width: 767px) {
  .legal-page .legal-content {
    padding: 28px 20px;
  }
}
