/* ============================================================
   BLUE SEAL PROPERTIES — custom.css  v4
   Theme: Bright white, clean, no heavy navy blocks
   ============================================================ */

:root {
  --bs-navy:   #202A45;
  --bs-gold:   #E8A838;
  --bs-white:  #ffffff;
  --bs-offwhite: #F8F9FA;
  --bs-light:  #F2F4F7;
  --bs-text:   #2C3345;
  --bs-muted:  #6B7280;
  --bs-border: #E5E7EB;
  --transition: all 0.26s ease;
  --radius:    3px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1rem; color: var(--bs-text);
  background: #fff; line-height: 1.7;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
h1, h2, h3, h4 { font-family: 'Cormorant Garamond', serif; color: var(--bs-navy); line-height: 1.2; }

.pg-contnr { min-height: 100vh; display: flex; flex-direction: column; background: #fff; }
.pgcont    { flex: 1; padding-top: 142px; background: #fff; }
@media (max-width: 767px) { .pgcont { padding-top: 102px; } }

/* ============================================================
   TOPBAR — gradient bright
   ============================================================ */
.bs-topbar {
  position: fixed; top: 0; left: 0; right: 0;
  height: 42px; z-index: 1100;
  background: linear-gradient(125deg, var(--bs-gold) 0%, #E84393 48%, #8E44AD 100%);
}
.bs-topbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1280px; margin: 0 auto; padding: 0 2rem; height: 42px;
}
.bs-topbar-social { display: flex; align-items: center; gap: 1rem; }
.bs-topbar-social a { color: rgba(255,255,255,0.88); font-size: 0.8rem; display: flex; align-items: center; }
.bs-topbar-social a:hover { color: #fff; }
.bs-topbar-contact a { color: #fff; font-size: 0.8rem; font-weight: 600; display: flex; align-items: center; gap: 7px; }
@media (max-width: 767px) {
  .bs-topbar { height: 38px; }
  .bs-topbar-inner { height: 38px; padding: 0 1.25rem; }
  .bs-topbar-social { gap: 0.75rem; }
  .bs-topbar-social a, .bs-topbar-contact a { font-size: 0.76rem; }
}

/* ============================================================
   NAVBAR
   ============================================================ */
.bs-navbar {
  position: fixed !important; top: 42px !important; left: 0; right: 0;
  background: #fff !important;
  border-bottom: 1px solid var(--bs-border);
  box-shadow: 0 1px 12px rgba(32,42,69,0.06);
  z-index: 1050; padding: 0 !important;
  transition: box-shadow 0.3s ease;
  overflow: visible;
}
.bs-navbar.scrolled { box-shadow: 0 2px 20px rgba(32,42,69,0.10); }
.bs-nav-container {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; max-width: 1280px; margin: 0 auto;
  padding: 0 2rem; min-height: 100px;
  /* Override Bootstrap container-fluid defaults */
  padding-right: 2rem !important;
  padding-left: 2rem !important;
}
@media (max-width: 767px) {
  .bs-navbar { top: 38px !important; }
  .bs-nav-container {
    min-height: 60px;
    padding: 0 1.25rem !important;
    padding-right: 1.25rem !important;
    padding-left: 1.25rem !important;
  }
  .pgcont { padding-top: 98px; }
}

/* Brand */
.bs-brand { display: inline-flex; align-items: center; flex-shrink: 0; outline: none; }
.bs-brand-box {
  background: #fff; border: none;
  border-radius: var(--radius);
  display: inline-flex; align-items: center; justify-content: center;
  padding: 6px 0; height: 54px; min-width: 180px;
}
.bs-brand-logo { display: block; height: 36px; width: auto; max-width: 220px; }
.bs-brand:hover .bs-brand-box { opacity: 0.85; }
@media (max-width: 767px) {
  .bs-brand-box { height: 46px; min-width: 160px; padding: 5px 0; }
  .bs-brand-logo { height: 30px; max-width: 190px; }
}

/* Nav links */
.bs-nav-links { gap: 0; align-items: center; }
.bs-nav-link {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--bs-navy) !important; padding: 10px 16px !important;
  transition: var(--transition);
}
.bs-nav-link:hover, .bs-nav-link.active { color: var(--bs-gold) !important; }
/* Desktop only: show gold underline on open dropdown parent */
@media (min-width: 993px) {
  .bs-dropdown.show > .bs-nav-link {
    color: var(--bs-gold) !important;
    box-shadow: inset 0 -2px 0 var(--bs-gold);
  }
}

/* CTA nav button — navy outline, white bg */
.bs-nav-cta {
  background: #fff !important;
  color: var(--bs-navy) !important;
  border: 1.5px solid var(--bs-navy) !important;
  border-radius: var(--radius); margin-left: 6px;
  padding: 8px 18px !important;
}
.bs-nav-cta:hover { background: var(--bs-navy) !important; color: #fff !important; }

/* Dropdown — clean */
.bs-dropdown { position: relative; }
.bs-dropdown-menu {
  display: none;
  position: absolute !important;
  top: 100%; left: 0; min-width: 260px;
  background: #fff;
  border-top: 3px solid var(--bs-gold);
  border-left: 1px solid var(--bs-border);
  border-right: 1px solid var(--bs-border);
  border-bottom: 1px solid var(--bs-border);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: 0 8px 32px rgba(32,42,69,0.10);
  padding: 4px 0; z-index: 200;
  margin-top: 0;
  /* Critical: take out of flow so it never shifts parent */
  float: none;
  width: auto;
}
.bs-dropdown-menu.show { display: block; }
.bs-dropdown-item {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 18px; font-size: 0.85rem; font-weight: 500;
  color: var(--bs-text) !important; transition: var(--transition);
  white-space: nowrap; border-left: 3px solid transparent;
}
.bs-dropdown-item i { color: var(--bs-gold); width: 14px; text-align: center; font-size: 0.82rem; }
.bs-dropdown-item:hover { background: var(--bs-offwhite); border-left-color: var(--bs-gold); color: var(--bs-navy) !important; }

/* Toggler */
.bs-toggler { background: transparent; border: 1.5px solid var(--bs-navy); border-radius: var(--radius); padding: 7px 9px; cursor: pointer; }
.bs-toggler-bar { display: block; width: 20px; height: 2px; background: var(--bs-navy); margin: 4px 0; }
@media (max-width: 767px) {
  .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 2px solid var(--bs-gold);
    border-bottom: 1px solid var(--bs-border);
    box-shadow: 0 8px 24px rgba(32,42,69,0.10);
    padding: 6px 0 10px;
    z-index: 999;
  }
  .bs-nav-link {
    display: block;
    padding: 11px 20px !important;
    font-size: 0.82rem;
    border-bottom: 1px solid var(--bs-border) !important;
    box-shadow: none !important;
    white-space: nowrap;
  }
  .bs-nav-link:last-child { border-bottom: none !important; }
  .bs-nav-cta {
    margin: 8px 16px 4px !important;
    display: block !important;
    text-align: center;
    background: var(--bs-navy) !important;
    color: #fff !important;
    border: none !important;
    padding: 11px 16px !important;
    border-radius: var(--radius) !important;
    white-space: nowrap;
  }
  .bs-dropdown-menu {
    position: static !important;
    box-shadow: none !important;
    border: none !important;
    border-top: none !important;
    background: var(--bs-offwhite) !important;
    padding: 0 !important;
    display: none;
  }
  .bs-dropdown-item {
    padding: 9px 32px !important;
    font-size: 0.82rem;
    border-bottom: 1px solid var(--bs-border);
  }
  .bs-dropdown > .bs-nav-link::after {
    display: none;
  }
}
.bs-hp { display: none; }

/* ============================================================
   HERO SLIDER
   ============================================================ */
.bs-hero-slider { position: relative; background: var(--bs-navy); margin: 0; padding: 0; display: block; }
/* Prevent slick list/track adding ghost whitespace below slides */
.bs-hero-slider .slick-list,
.bs-hero-slider .slick-track { margin: 0; padding: 0; line-height: 0; font-size: 0; }
.bs-hero-slide {
  height: 88vh; min-height: 520px; max-height: 860px;
  background-size: cover; background-position: center;
  position: relative; display: flex; align-items: flex-end;
}
.bs-hero-slide::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(32,42,69,0.78) 0%, rgba(32,42,69,0.28) 55%, rgba(32,42,69,0.04) 100%);
}
.bs-hero-caption { position: relative; z-index: 2; padding: 0 5vw 7vh; max-width: 680px; }
.bs-hero-tag {
  display: inline-block; font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--bs-gold); margin-bottom: 12px;
}
.bs-hero-caption h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 4.2rem);
  font-weight: 700; color: #fff; line-height: 1.1; margin-bottom: 10px;
}
.bs-hero-caption p { font-size: 0.97rem; color: rgba(255,255,255,0.82); margin-bottom: 24px; max-width: 460px; }

/* Hero button — white outline style */
.bs-btn-hero {
  display: inline-block;
  background: transparent; color: #fff;
  border: 2px solid rgba(255,255,255,0.8);
  font-size: 0.76rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 12px 28px; border-radius: var(--radius);
  transition: var(--transition); white-space: nowrap;
}
.bs-btn-hero:hover { background: #fff; color: var(--bs-navy); border-color: #fff; }

.bs-hero-slide.is-mobile { display: none; }
@media (max-width: 991px) {
  .bs-hero-slide.not-mobile { display: none; }
  .bs-hero-slide.is-mobile { display: flex; height: 44vh; min-height: 300px; }
  .bs-hero-caption { padding: 0 5vw 5vh; }
  .bs-hero-caption h2 { font-size: clamp(1.6rem, 6vw, 2.4rem); }
  .bs-hero-caption p  { font-size: 0.88rem; }
}

/* Slick — custom arrows only, disable defaults */
.slick-prev.slick-arrow.bs-arrow,
.slick-next.slick-arrow.bs-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff; font-size: 0.82rem; cursor: pointer; z-index: 10;
  display: flex !important; align-items: center; justify-content: center;
  transition: var(--transition);
}
.slick-prev.slick-arrow.bs-arrow { left: 16px; }
.slick-next.slick-arrow.bs-arrow { right: 16px; }
.slick-prev.slick-arrow.bs-arrow:hover,
.slick-next.slick-arrow.bs-arrow:hover { background: var(--bs-gold); border-color: var(--bs-gold); color: var(--bs-navy); }
/* Hide slick's own arrow glyphs */
.slick-prev.bs-arrow::before, .slick-next.bs-arrow::before { display: none !important; content: '' !important; }
.slick-dots { bottom: 18px; }
.slick-dots li button::before { color: #fff; font-size: 8px; opacity: 0.45; }
.slick-dots li.slick-active button::before { color: var(--bs-gold); opacity: 1; }

/* ============================================================
   SECTIONS
   ============================================================ */
.bs-section { padding: 80px 0; background: #fff; }
.bs-section-alt { background: var(--bs-offwhite); }
.bs-section-title { text-align: center; margin-bottom: 48px; }
.bs-section-tag {
  display: block; font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--bs-gold); margin-bottom: 10px;
}
.bs-section-title h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; color: var(--bs-navy); margin-bottom: 12px; }
.bs-rule { width: 40px; height: 2px; background: var(--bs-gold); margin: 0 auto 16px; }
.bs-section-intro { font-size: 0.97rem; color: var(--bs-muted); max-width: 540px; margin: 0 auto; line-height: 1.75; }
.container-fluid { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }
@media (max-width: 767px) { .container-fluid { padding: 0 1.25rem; } .bs-section { padding: 56px 0; } }

/* ============================================================
   FACT BAND — vibrant gradient, replaces statement band
   ============================================================ */
.bs-fact-band {
  background: linear-gradient(135deg, var(--bs-navy) 0%, #2d3d6b 50%, #1a2038 100%);
  padding: 56px 0;
  position: relative; overflow: hidden;
}
.bs-fact-band::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 15% 50%, rgba(232,168,56,0.12) 0%, transparent 45%),
    radial-gradient(circle at 85% 20%, rgba(232,168,56,0.07) 0%, transparent 40%);
}
.bs-fact-band-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: auto 1fr auto;
  gap: 40px; align-items: center;
}
@media (max-width: 767px) {
  .bs-fact-band-inner { grid-template-columns: 1fr; gap: 20px; text-align: center; }
  .bs-fact-band-divider { display: none; }
}
.bs-fact-band-stat {
  text-align: center; flex-shrink: 0;
}
.bs-fact-band-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 700; color: #fff; line-height: 1;
}
.bs-fact-band-num span { color: var(--bs-gold); }
.bs-fact-band-unit {
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.7); margin-top: 4px;
}
.bs-fact-band-divider {
  width: 1px; height: 80px;
  background: rgba(255,255,255,0.2); flex-shrink: 0;
}
.bs-fact-band-text {}
.bs-fact-band-kicker {
  display: block; font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--bs-gold); margin-bottom: 8px;
}
.bs-fact-band-text h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: #fff; font-weight: 700; margin-bottom: 10px;
}
.bs-fact-band-text p { font-size: 0.92rem; color: rgba(255,255,255,0.75); line-height: 1.75; max-width: 580px; }
.bs-fact-band-source { font-size: 0.74rem; color: rgba(255,255,255,0.45); margin-top: 8px; font-style: italic; }
.bs-fact-band-cta {
  flex-shrink: 0;
}
.bs-btn-outline-white {
  display: inline-block;
  background: transparent; color: #fff;
  border: 2px solid rgba(255,255,255,0.6);
  font-size: 0.76rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 13px 26px; border-radius: var(--radius);
  transition: var(--transition); white-space: nowrap;
}
.bs-btn-outline-white:hover { background: #fff; color: var(--bs-navy); border-color: #fff; }

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.bs-prop-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
@media (max-width: 991px) { .bs-prop-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; } }
@media (max-width: 575px)  { .bs-prop-grid { grid-template-columns: 1fr; gap: 14px; } }

.bs-prop-card {
  background: #fff; border: 1px solid var(--bs-border);
  border-radius: var(--radius); display: flex; flex-direction: column;
  text-decoration: none; color: inherit;
  transition: var(--transition); overflow: hidden;
}
.bs-prop-card:hover { box-shadow: 0 6px 28px rgba(32,42,69,0.09); transform: translateY(-3px); border-color: var(--bs-gold); }
.bs-prop-img { height: 185px; background-size: cover; background-position: center; position: relative; overflow: hidden; }
.bs-prop-img::after { content: ''; position: absolute; inset: 0; background: rgba(32,42,69,0.12); transition: var(--transition); }
.bs-prop-card:hover .bs-prop-img::after { background: rgba(32,42,69,0.04); }
.bs-prop-body { padding: 18px 20px 20px; flex: 1; display: flex; flex-direction: column; border-top: 2px solid transparent; transition: border-color 0.25s ease; }
.bs-prop-card:hover .bs-prop-body { border-top-color: var(--bs-gold); }
.bs-prop-body h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; color: var(--bs-navy); margin-bottom: 7px; transition: var(--transition); }
.bs-prop-card:hover .bs-prop-body h3 { color: var(--bs-gold); }
.bs-prop-body p { font-size: 0.86rem; color: var(--bs-muted); line-height: 1.65; flex: 1; margin-bottom: 12px; }
.bs-card-link { font-size: 0.74rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--bs-navy); display: flex; align-items: center; gap: 6px; }
.bs-prop-card:hover .bs-card-link { color: var(--bs-gold); }
.bs-services-viewall { text-align: center; margin-top: 32px; }
.bs-viewall-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--bs-navy); border-bottom: 2px solid var(--bs-gold); padding-bottom: 3px; transition: var(--transition);
}
.bs-viewall-link:hover { color: var(--bs-gold); }

/* ============================================================
   STATS ROW — white bg, navy numbers
   ============================================================ */
.bs-stats-section {
  background: #fff;
  border-top: 1px solid var(--bs-border);
  border-bottom: 1px solid var(--bs-border);
  padding: 0;
}
.bs-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
@media (max-width: 767px) { .bs-stats-grid { grid-template-columns: repeat(2, 1fr); } }
.bs-stat-item {
  text-align: center; padding: 44px 20px;
  border-right: 1px solid var(--bs-border);
}
.bs-stat-item:last-child { border-right: none; }
@media (max-width: 767px) {
  .bs-stat-item:nth-child(2) { border-right: none; }
  .bs-stat-item { border-bottom: 1px solid var(--bs-border); }
  .bs-stat-item:nth-last-child(-n+2) { border-bottom: none; }
}
.bs-stat-num { font-family: 'Cormorant Garamond', serif; font-size: 2.8rem; font-weight: 700; color: var(--bs-navy); line-height: 1; margin-bottom: 6px; }
.bs-stat-accent { color: var(--bs-gold); }
.bs-stat-label { font-size: 0.74rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--bs-navy); margin-bottom: 3px; }
.bs-stat-desc { font-size: 0.79rem; color: var(--bs-muted); }

/* ============================================================
   WHY US — white cards with subtle pattern bg
   ============================================================ */
.bs-why-section {
  background: #fff;
  background-image: radial-gradient(circle, #E5E7EB 1px, transparent 1px);
  background-size: 24px 24px;
  padding: 80px 0;
}
.bs-why-intro {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; margin-bottom: 48px;
}
@media (max-width: 767px) { .bs-why-intro { grid-template-columns: 1fr; gap: 20px; } }
.bs-why-intro h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); color: var(--bs-navy); font-weight: 700; }
.bs-why-intro h2 em { color: var(--bs-gold); font-style: italic; }
.bs-why-intro p { font-size: 0.97rem; color: var(--bs-muted); line-height: 1.8; }
.bs-why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 991px) { .bs-why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575px)  { .bs-why-grid { grid-template-columns: 1fr; } }
.bs-why-item {
  background: #fff; border: 1px solid var(--bs-border);
  border-radius: var(--radius); padding: 28px 22px;
  transition: var(--transition);
}
.bs-why-item:hover { border-color: var(--bs-gold); box-shadow: 0 4px 20px rgba(32,42,69,0.08); }
.bs-why-icon {
  width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
  color: var(--bs-gold); font-size: 1.1rem; margin-bottom: 14px;
  background: var(--bs-offwhite); border-radius: 50%;
}
.bs-why-item h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: var(--bs-navy); margin-bottom: 7px; }
.bs-why-item p { font-size: 0.83rem; color: var(--bs-muted); line-height: 1.65; }

/* ============================================================
   HOMEPAGE ENQUIRY FORM — light bg, no navy block
   ============================================================ */
.bs-enquiry-section {
  background: var(--bs-offwhite);
  border-top: 1px solid var(--bs-border);
  border-bottom: 1px solid var(--bs-border);
  padding: 72px 0;
}
.bs-enquiry-inner { display: grid; grid-template-columns: 1fr 1.8fr; gap: 56px; align-items: start; }
@media (max-width: 767px) { .bs-enquiry-inner { grid-template-columns: 1fr; gap: 32px; } }

.bs-enquiry-left h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.8rem, 3vw, 2.6rem); color: var(--bs-navy); font-weight: 700; margin-bottom: 12px; }
.bs-enquiry-left h2 em { color: var(--bs-gold); font-style: italic; }
.bs-enquiry-left p { font-size: 0.95rem; color: var(--bs-muted); line-height: 1.75; margin-bottom: 24px; }
.bs-enquiry-contact { list-style: none; padding: 0; }
.bs-enquiry-contact li { display: flex; align-items: center; gap: 12px; font-size: 0.88rem; color: var(--bs-muted); margin-bottom: 10px; }
.bs-enquiry-contact li i { color: var(--bs-gold); width: 16px; }
.bs-enquiry-contact li a { color: var(--bs-navy); font-weight: 600; }
.bs-enquiry-contact li a:hover { color: var(--bs-gold); }

.bs-enquiry-form {
  background: #fff; border: 1px solid var(--bs-border);
  border-radius: var(--radius); border-top: 3px solid var(--bs-gold);
  padding: 32px 28px;
}
.bs-enquiry-form h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; color: var(--bs-navy); margin-bottom: 5px; }
.bs-enquiry-form > p { font-size: 0.84rem; color: var(--bs-muted); margin-bottom: 22px; }
.bs-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 575px) { .bs-form-row { grid-template-columns: 1fr; } }

/* ============================================================
   BUTTONS — no full-width navy blocks
   ============================================================ */
.bs-btn-submit {
  display: inline-block;
  background: var(--bs-navy); color: #fff;
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 13px 28px; border-radius: var(--radius);
  border: 1.5px solid var(--bs-navy); cursor: pointer;
  transition: var(--transition); width: 100%;
}
.bs-btn-submit:hover { background: #fff; color: var(--bs-navy); }

/* Outline button — preferred for CTA areas */
.bs-btn-outline {
  display: inline-block;
  background: #fff; color: var(--bs-navy);
  border: 1.5px solid var(--bs-navy);
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 13px 28px; border-radius: var(--radius);
  cursor: pointer; transition: var(--transition);
  white-space: nowrap;
}
.bs-btn-outline:hover { background: var(--bs-navy); color: #fff; }

/* Gold button */
.bs-btn-gold {
  display: inline-block;
  background: var(--bs-gold); color: var(--bs-navy);
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 13px 32px; border-radius: var(--radius);
  border: 1.5px solid var(--bs-gold); cursor: pointer;
  transition: var(--transition); white-space: nowrap;
}
.bs-btn-gold:hover { background: #fff; color: var(--bs-navy); border-color: var(--bs-navy); }

/* ============================================================
   FORM — shared
   ============================================================ */
.bs-form-group { margin-bottom: 14px; }
.bs-form-label { display: block; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; color: var(--bs-navy); margin-bottom: 5px; }
.bs-form-control {
  width: 100%; padding: 10px 13px;
  background: #fff; border: 1px solid var(--bs-border);
  border-radius: var(--radius); font-family: inherit;
  font-size: 0.91rem; color: var(--bs-text);
  transition: border-color 0.2s ease; outline: none;
}
.bs-form-control:focus { border-color: var(--bs-navy); }
textarea.bs-form-control { resize: vertical; min-height: 100px; }
select.bs-form-control { appearance: auto; }
.bs-field-error { font-size: 0.75rem; color: #c0392b; margin-top: 3px; display: none; }
.bs-form-msg { padding: 10px 13px; border-radius: var(--radius); margin-bottom: 12px; font-size: 0.88rem; display: none; }
.bs-form-msg.success { background: #e8f5e9; color: #2e7d32; border: 1px solid #a5d6a7; }
.bs-form-msg.error   { background: #fde8e8; color: #c0392b; border: 1px solid #f5a0a0; }
.req { color: #c0392b; }

/* ============================================================
   CTA BAND — light, no heavy dark overlay
   ============================================================ */
.bs-cta-band {
  background: var(--bs-offwhite);
  border-top: 1px solid var(--bs-border);
  padding: 80px 0;
  position: relative; overflow: hidden;
}
.bs-cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 70% 50%, rgba(232,168,56,0.08) 0%, transparent 60%),
                    radial-gradient(circle at 20% 80%, rgba(32,42,69,0.04) 0%, transparent 50%);
}
.bs-cta-inner { position: relative; z-index: 1; text-align: center; max-width: 560px; margin: 0 auto; }
.bs-cta-inner h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.8rem, 3.5vw, 2.8rem); color: var(--bs-navy); font-weight: 700; margin-bottom: 12px; }
.bs-cta-inner p { color: var(--bs-muted); font-size: 0.97rem; margin-bottom: 28px; }
.bs-btn-cta {
  display: inline-block;
  background: var(--bs-navy); color: #fff;
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 14px 36px; border-radius: var(--radius);
  border: 1.5px solid var(--bs-navy);
  transition: var(--transition);
}
.bs-btn-cta:hover { background: #fff; color: var(--bs-navy); }

/* ============================================================
   PAGE BANNER
   ============================================================ */
.bs-page-banner { position: relative; overflow: hidden; }
.bs-banner-img { height: 280px; background-size: cover; background-position: center; position: relative; }
.bs-banner-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to right, rgba(32,42,69,0.75) 0%, rgba(32,42,69,0.32) 100%); }
.bs-banner-img.is-mobile { display: none; }
@media (max-width: 991px) {
  .bs-banner-img.not-mobile { display: none; }
  .bs-banner-img.is-mobile  { display: block; height: 200px; }
}
.bs-banner-caption { position: absolute; bottom: 0; left: 0; right: 0; padding: 18px 2rem; z-index: 2; }
.bs-banner-caption h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.6rem, 4vw, 2.6rem); font-weight: 700; color: #fff; }
/* Breadcrumb overlays the banner image — positioned absolutely at the top of the banner */
.bs-breadcrumb {
  list-style: none; display: flex; align-items: center; gap: 8px;
  padding: 10px 2rem;
  position: absolute; top: 0; left: 0; right: 0;
  z-index: 3;
}
.bs-breadcrumb li,
.bs-breadcrumb a { font-size: 0.77rem; color: rgba(255,255,255,0.82) !important; font-weight: 400; }
.bs-breadcrumb a { text-decoration: none; }
.bs-breadcrumb a:hover { color: var(--bs-gold) !important; }
.bs-breadcrumb li[aria-current="page"] { color: var(--bs-gold) !important; font-weight: 600; }
.bs-breadcrumb .separator { color: rgba(255,255,255,0.4) !important; }

/* ============================================================
   CONTENT PAGES
   ============================================================ */
.bs-content { max-width: 800px; margin: 0 auto; padding: 52px 2rem 68px; }
.bs-content p { margin-bottom: 18px; font-size: 0.97rem; line-height: 1.8; color: var(--bs-text); }
.bs-content p.intro { font-size: 1.08rem; color: var(--bs-navy); font-weight: 400; line-height: 1.75; }
.bs-content h2 { font-family: 'Cormorant Garamond', serif; font-size: 1.7rem; color: var(--bs-navy); margin: 34px 0 12px; padding-bottom: 7px; border-bottom: 2px solid var(--bs-gold); }
.bs-values-list, .bs-service-list { list-style: none; padding: 0; margin: 0 0 20px; }
.bs-values-list li { padding: 12px 0; border-bottom: 1px solid var(--bs-border); font-size: 0.94rem; line-height: 1.7; }
.bs-values-list li strong { color: var(--bs-navy); display: block; font-size: 0.81rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 3px; }
.bs-service-list li { display: flex; gap: 12px; align-items: flex-start; padding: 11px 0; border-bottom: 1px solid var(--bs-border); font-size: 0.94rem; line-height: 1.65; }
.bs-blog-meta { font-size: 0.79rem; color: var(--bs-muted); display: flex; align-items: center; gap: 10px; }
.bs-blog-meta i { color: var(--bs-gold); }
.bs-blog-tag { display: inline-block; background: var(--bs-offwhite); color: var(--bs-navy); border: 1px solid var(--bs-border); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 3px 10px; border-radius: 2px; }

/* ============================================================
   BLOG GRID
   ============================================================ */
.bs-blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 991px) { .bs-blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575px)  { .bs-blog-grid { grid-template-columns: 1fr; } }
.bs-blog-card { background: #fff; border: 1px solid var(--bs-border); border-radius: var(--radius); display: flex; flex-direction: column; overflow: hidden; transition: var(--transition); }
.bs-blog-card:hover { box-shadow: 0 5px 24px rgba(32,42,69,0.08); transform: translateY(-2px); }
.bs-blog-img-link { display: block; overflow: hidden; }
.bs-blog-img { height: 185px; background-size: cover; background-position: center; transition: transform 0.4s ease; }
.bs-blog-card:hover .bs-blog-img { transform: scale(1.04); }
.bs-blog-body { padding: 16px 18px 20px; flex: 1; display: flex; flex-direction: column; }
.bs-blog-body h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.08rem; color: var(--bs-navy); margin: 7px 0 6px; line-height: 1.3; }
.bs-blog-body h3 a { color: inherit; }
.bs-blog-body h3 a:hover { color: var(--bs-gold); }
.bs-blog-body p { font-size: 0.84rem; color: var(--bs-muted); line-height: 1.6; flex: 1; margin-bottom: 10px; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.bs-contact-wrapper { display: grid; grid-template-columns: 1fr 1.7fr; gap: 0; max-width: 1280px; margin: 0 auto; padding: 52px 2rem; }
@media (max-width: 767px) { .bs-contact-wrapper { grid-template-columns: 1fr; gap: 36px; } }
.bs-contact-details h2, .bs-contact-form-wrap h2 { font-family: 'Cormorant Garamond', serif; font-size: 1.9rem; color: var(--bs-navy); margin-bottom: 12px; }
.bs-contact-details p { font-size: 0.94rem; color: var(--bs-muted); margin-bottom: 20px; line-height: 1.75; }
.bs-contact-list { list-style: none; padding: 0; }
.bs-contact-list li { display: flex; gap: 12px; align-items: flex-start; padding: 11px 0; border-bottom: 1px solid var(--bs-border); font-size: 0.91rem; }
.bs-contact-list li i { color: var(--bs-gold); margin-top: 3px; width: 15px; flex-shrink: 0; }
.bs-contact-list li a { color: var(--bs-navy); font-weight: 600; }
.bs-contact-list li a:hover { color: var(--bs-gold); }
.bs-social-contact { list-style: none; display: flex; gap: 9px; padding: 0; margin-top: 20px; }
.bs-social-contact a { width: 33px; height: 33px; border-radius: 50%; background: var(--bs-offwhite); border: 1px solid var(--bs-border); color: var(--bs-navy); display: flex; align-items: center; justify-content: center; font-size: 0.78rem; transition: var(--transition); }
.bs-social-contact a:hover { background: var(--bs-navy); color: #fff; border-color: var(--bs-navy); }

/* ============================================================
   FOOTER — white, clean
   ============================================================ */
.bs-footer-inner { background: #fff; border-top: 1px solid var(--bs-border); }
.bs-footer-top { padding: 52px 0 36px; }
.bs-footer-grid { display: grid; grid-template-columns: 1.2fr 2fr 1.2fr; gap: 48px; }
@media (max-width: 991px) { .bs-footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 575px)  { .bs-footer-grid { grid-template-columns: 1fr; gap: 28px; } }
.bs-footer-tagline { font-family: 'Cormorant Garamond', serif; font-size: 0.95rem; font-style: italic; color: var(--bs-navy); margin-bottom: 8px; opacity: 0.65; }
.bs-footer-desc { font-size: 0.83rem; color: var(--bs-muted); line-height: 1.7; }
.bs-footer-links-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.bs-footer-heading { font-size: 0.71rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--bs-navy); margin-bottom: 14px; padding-bottom: 7px; border-bottom: 2px solid var(--bs-gold); }
.bs-footer-links { list-style: none; padding: 0; }
.bs-footer-links li { margin-bottom: 8px; }
.bs-footer-links a { font-size: 0.84rem; color: var(--bs-muted); transition: var(--transition); }
.bs-footer-links a:hover { color: var(--bs-navy); padding-left: 3px; }
.bs-footer-contact { list-style: none; padding: 0; }
.bs-footer-contact li { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 10px; font-size: 0.83rem; color: var(--bs-muted); }
.bs-footer-contact li i { color: var(--bs-gold); margin-top: 3px; width: 13px; flex-shrink: 0; }
.bs-footer-contact li a { color: var(--bs-muted); }
.bs-footer-contact li a:hover { color: var(--bs-navy); }
.bs-footer-brand-box { background: var(--bs-light); border: 1px solid var(--bs-border); border-radius: var(--radius); display: inline-flex; align-items: center; justify-content: center; padding: 10px 16px; height: 52px; margin-bottom: 14px; }
.bs-footer-brand-box img { height: 100%; width: auto; filter: brightness(0) saturate(100%); background: transparent; }
.bs-footer-bottom { border-top: 1px solid var(--bs-border); padding: 16px 0; }
.bs-footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.bs-copyright { font-size: 0.77rem; color: var(--bs-muted); margin: 0; }
.bs-social-links { list-style: none; display: flex; gap: 7px; padding: 0; margin: 0; }
.bs-social-links a { width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--bs-border); color: var(--bs-muted); display: flex; align-items: center; justify-content: center; font-size: 0.75rem; transition: var(--transition); }
.bs-social-links a:hover { border-color: var(--bs-navy); color: var(--bs-navy); }

/* WhatsApp float */
.bs-whatsapp-float { position: fixed; bottom: 24px; right: 24px; z-index: 999; width: 52px; height: 52px; border-radius: 50%; background: #25D366; color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; box-shadow: 0 4px 16px rgba(37,211,102,0.35); transition: var(--transition); }
.bs-whatsapp-float:hover { background: #1da851; transform: scale(1.07); }

/* ABOUT — mobile responsive */
.bs-about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
@media (max-width: 767px) { .bs-about-grid { grid-template-columns: 1fr; gap: 32px; } .bs-about-img-col { display: none; } }
.bs-vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 575px) { .bs-vm-grid { grid-template-columns: 1fr; } }
.bs-vm-card { background: #fff; border: 1px solid var(--bs-border); border-top: 3px solid var(--bs-gold); border-radius: var(--radius); padding: 32px 28px; }
.bs-vm-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; color: var(--bs-navy); margin-bottom: 10px; }
.bs-vm-card p { font-size: 0.92rem; color: var(--bs-muted); line-height: 1.75; margin: 0; }
.bs-vm-icon { width: 40px; height: 40px; background: var(--bs-offwhite); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--bs-gold); font-size: 1rem; margin-bottom: 14px; }
.bs-values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 767px) { .bs-values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .bs-values-grid { grid-template-columns: 1fr; } }
.bs-value-card { background: #fff; border: 1px solid var(--bs-border); border-radius: var(--radius); padding: 24px 20px; transition: var(--transition); }
.bs-value-card:hover { border-color: var(--bs-gold); box-shadow: 0 4px 16px rgba(32,42,69,0.07); }
.bs-value-card h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: var(--bs-navy); margin-bottom: 7px; }
.bs-value-card p { font-size: 0.83rem; color: var(--bs-muted); line-height: 1.65; margin: 0; }
.bs-value-icon { width: 36px; height: 36px; background: var(--bs-offwhite); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--bs-gold); font-size: 0.95rem; margin-bottom: 12px; }

/* 404 */
.bs-404-wrap { min-height: 60vh; display: flex; align-items: center; justify-content: center; padding: 80px 24px; }
.bs-404-inner { text-align: center; max-width: 480px; }
.bs-404-icon { font-size: 3rem; color: var(--bs-gold); margin-bottom: 14px; }
.bs-404-title { font-size: 5rem; color: var(--bs-navy); margin-bottom: 0; }
.bs-404-sub { font-size: 1.5rem; color: var(--bs-navy); margin-bottom: 14px; }
.bs-404-msg { font-size: 0.95rem; color: var(--bs-muted); margin-bottom: 24px; }

/* Custom injected slider arrows */
.bs-hero-slider { position: relative; }
.slick-prev-custom,
.slick-next-custom {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff; font-size: 0.82rem; cursor: pointer; z-index: 10;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.slick-prev-custom { left: 16px; }
.slick-next-custom { right: 16px; }
.slick-prev-custom:hover,
.slick-next-custom:hover { background: var(--bs-gold); border-color: var(--bs-gold); color: var(--bs-navy); }

/* Hero button — never full width on mobile */
.bs-btn-hero {
  width: auto !important;
  align-self: flex-start;
}
.bs-hero-caption {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (max-width: 991px) {
  .bs-btn-hero {
    font-size: 0.72rem !important;
    padding: 10px 22px !important;
  }
}

/* Suppress Bootstrap's auto caret on dropdown-toggle */
.bs-nav-link.dropdown-toggle::after,
.bs-nav-link::after { display: none !important; }
/* Keep chevron icon fixed width so text never shifts */
.bs-drop-chevron { width: 12px; text-align: center; flex-shrink: 0; }

/* ============================================================
   WHATSAPP GREEN — footer & contact page
   ============================================================ */
.bs-footer-contact li a[href*="wa.me"],
.bs-contact-list li a[href*="wa.me"] {
  color: #25D366 !important;
  font-weight: 600;
}
.bs-footer-contact li a[href*="wa.me"]:hover,
.bs-contact-list li a[href*="wa.me"]:hover {
  color: #1da851 !important;
}
/* Also the enquiry-contact in home form */
.bs-enquiry-contact li a[href*="wa.me"] {
  color: #25D366 !important;
  font-weight: 600;
}

/* ============================================================
   QUICK ENQUIRY heading — centered with line break preserved
   ============================================================ */
.bs-enquiry-left h2 {
  text-align: center;
}
.bs-enquiry-left {
  text-align: center;
}
.bs-enquiry-contact {
  display: inline-block;
  text-align: left;
}

/* ============================================================
   BREADCRUMB — duplicate removed; canonical rules are in PAGE BANNER section above
   ============================================================ */

/* ============================================================
   PHONE COUNTRY PICKER
   ============================================================ */
.bs-phone-group {
  display: flex;
  gap: 0;
  align-items: stretch;
}
.bs-phone-code {
  flex: 0 0 auto;
  width: 76px;
  padding: 10px 2px 10px 6px;
  background: var(--bs-offwhite);
  border: 1px solid var(--bs-border);
  border-right: none;
  border-radius: var(--radius) 0 0 var(--radius);
  font-family: inherit;
  font-size: 0.82rem;
  color: var(--bs-text);
  outline: none;
  cursor: pointer;
  transition: border-color 0.2s ease;
  appearance: auto;
}
.bs-phone-code:focus { border-color: var(--bs-navy); }
.bs-phone-number {
  flex: 1;
  border-radius: 0 var(--radius) var(--radius) 0 !important;
}

/* ============================================================
   WELCOME SECTION — between hero and fact band
   ============================================================ */
.bs-welcome-section {
  background: #fff;
  border-bottom: 1px solid var(--bs-border);
  padding: 18px 0 24px;
}
.bs-welcome-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  padding: 0 2rem;
}
.bs-welcome-inner .bs-section-tag {
  margin-bottom: 12px;
}
.bs-welcome-inner h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--bs-navy);
  font-weight: 700;
  margin-bottom: 18px;
}
.bs-welcome-inner p {
  font-size: 1rem;
  color: var(--bs-navy);
  line-height: 1.8;
  opacity: 0.82;
  margin-bottom: 28px;
}
.bs-rule-center {
  width: 40px; height: 2px;
  background: var(--bs-gold);
  margin: 0 auto 20px;
}
