@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');
:root {
      --primary-font: 'Montserrat', sans-serif;
      --gks-primary: #708238;
      --nav-height: 82px;
      --cream-bg: #F6F7EE;
  --deep-green: #123726;
  --muted-green: #3c5447;
  --container-max: 1180px;
  --corner-radius: 6px;
   --cream: #F6F7EE;
  --accent-orange: #e67f2b;
  --faq-bg: #6b7f34;        /* section background (olive) — tweak to preferred hex */
  --card-bg: #F6F7EE;       /* cream card bg */
  --card-text: #123726;     /* heading / question color (deep green) */
  --muted-text: #3c5447;    /* paragraph color */
  --badge-bg: #F6F7EE;      /* badge inside color (cream) */
  --badge-border: rgba(18,55,36,0.12); /* subtle circle border */
  --card-radius: 14px;
  --cream: #F6F7EE;
  --olive: #6b7f34;        /* section footer olive (adjust if you want exact) */
  --input-border: rgba(18,55,36,0.16);
    }
    
    
    * { box-sizing: border-box; }
    body { font-family: var(--primary-font); overflow-x: hidden; }
    html {
        overflow-x: hidden;
    }

    /* Example: if your header/nav height = 80px */
section[id],
div[id],
h2[id] {
  scroll-margin-top: 90px; /* adjust this based on your header height */
}

    /* Navbar (transparent by default) */
.navbar-custom {
  height: var(--nav-height);
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  z-index: 999;
}

/* Solid style when scrolled */
.navbar-scrolled {
  background: rgba(0, 0, 0, 0.5);      /* change to #1a1a1a for solid */
  backdrop-filter: blur(6px);          /* optional glass‑blur */
  box-shadow: 0 2px 6px rgba(0,0,0,);/* subtle drop‑shadow */
}

/* Brand + links stay readable */
.navbar-brand img { height: 80px; margin-top: 2px; }
.navbar-nav .nav-link {
  text-transform: none !important;
  color: #fff !important;
  font-weight: 500;
}
/* =================  Mobile navbar dropdown  ================= */
@media (max-width: 991.98px) {          /* Bootstrap lg breakpoint */
  .navbar-custom .navbar-collapse {
    position: absolute;                 /* overlay on banner   */
    top: var(--nav-height);             /* starts below navbar */
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);     /* dark semi‑transparent bg */
    padding: 1rem 1.25rem;
  }

  .navbar-custom .nav-link {
    color: #fff !important;             /* good contrast      */
  }
}

/* 1. Base link styling (edit colours to suit) */
.navbar .nav-link{
  position: relative;          /* needed for the ::after */
  font-weight: 500;            /* matches the mock‑up */
  color: #ffffff;
  font-size: 11px;
  font-style: medium;
  padding: .25rem 1rem;
  text-decoration: none;       /* kill default underline */
  font-family: var(--primary-font);
}

/* 2. The underline */
.navbar .nav-link::after{
  content: '';
  position: absolute;
  left: 50%;                   /* start from the centre … */
  transform: translateX(-50%); /* … and truly centre it  */
  bottom: -4px;                /* distance below text    */
  width: 0;                    /* collapsed by default   */
  height: 2px;
  background: var(--gks-primary);          /* Montira brown */
  transition: width .35s ease; /* smooth grow/shrink      */
}

/* 3. Show the line on hover OR when active */
.navbar .nav-link:hover::after,
.navbar .nav-link.active::after{
  width: 48px;                 /* pick any length you like */
}


/* Hide / show the two icons based on Bootstrap's .collapsed state */
.navbar-toggler .toggler-icon-close { display: none; }
.navbar-toggler:not(.collapsed) .toggler-icon-open  { display: none; }
.navbar-toggler:not(.collapsed) .toggler-icon-close { display: inline-block; }

/* Keep icons white for dark / transparent bg */
.toggler-icon-open,
.toggler-icon-close {
  color: #fff;
}

    /* Hero */
    .hero-caption{position:relative;z-index:5;text-align:center;color:#fff;padding-top:var(--nav-height);}
    .hero-caption h1{font-size:clamp(1.8rem,4vw+0.5rem,3.2rem);font-weight:800;line-height:1.25;}
    .hero-caption .subline{font-size:.9rem;letter-spacing:1.2px;text-transform:uppercase;}
    .btn-cta{background:var(--montira-brown);border:none;padding:.6rem 2.2rem;font-weight:600;font-size:.9rem; margin-top: -165px;}
    .price-tag{position:absolute;right:4%;bottom:10%;z-index:4;font-weight:700;font-size:1.25rem;color:#fff;text-shadow:0 1px 2px rgba(0,0,0,.6);}

    @media (max-width:767.98px){.navbar-brand img{height:46px}.price-tag{font-size:1rem;right:6%;bottom:12%}}

    .carousel-item {
    height: 100vh;
    position: relative;
  }

  .carousel-item img {
    object-fit: cover;
    height: 100vh;
    width: 100%;
  }

  /* Green Info Bar Below Navbar */
.info-strip {
  background-color: var(--gks-primary); /* Same green as screenshot */
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600; /* Semi-bold */
  font-size: 20px;
  text-align: center;
  padding: 12px 10px;
  line-height: 1.4;
}

@media (max-width: 992px) {
  .navbar-custom .nav-link {
    font-size: 11px;
    letter-spacing: 1.2px;
  }
  .info-strip {
    font-size: 14px;
    padding: 10px 8px;
  }
}

.glenhart-story, .glenhart-story * {
  font-family: 'Montserrat', sans-serif !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  box-sizing: border-box;
}

/* Background + spacing */
.glenhart-story {
  background: #F6F7EE;
  padding: 56px 0 40px;
  color: #193a2a;
}

/* container helper */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Grid: left content + right image
   We set 2 columns, but headings will span both columns */
.glenhart-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 36px;
  align-items: center;
  grid-auto-rows: auto;
  position: relative;
}

/* Make kicker and title span full width of grid and center them */
.glenhart-inner .kicker,
.glenhart-inner .title {
  grid-column: 1 / -1; /* span all columns */
  text-align: center;
  margin: 0 auto 18px;
  color: #123726;
  margin-top: -31px;
}

/* kicker */
.kicker {
  font-size: 20px;
  font-weight: 300;        /* bold */
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

/* title */
.title {
  font-weight: 700;
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1.18;
  color: #0f3b2b;
  margin-bottom: 20px;
}

/* Left column (place it in column 1) */
.glenhart-left {
  grid-column: 1 / 2;
}

/* Right column image (place it in column 2) */
.glenhart-right {
  grid-column: 2 / 3;
}

/* Text styles */
.lead {
  margin: 0 0 22px 0;
  font-weight: 400;
  font-size: clamp(14px, 1.5vw, 16px);
  line-height: 1.65;
  color: #344a40;
  max-width: 640px;
  text-align: left; /* ensure left alignment */
}

.subhead {
  margin: 0 0 10px 0;
  font-weight: 600;
  font-size: 18px;
  color: #123726;
  text-align: left;
}

.body {
  margin: 0 0 20px 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: #3c5447;
  max-width: 640px;
  text-align: left;
}

.tagline {
  margin: 8px 0 0 0;
  font-size: 13px;
  color: #51685b;
  font-weight: 400;
}

/* Right column image styling */
.glenhart-right img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 28px;
  object-fit: cover;
  box-shadow: 0 6px 18px rgba(18,40,30,0.08);
}

/* CTA container (centers the button) */
.cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: 22px;
  padding: 0 20px;
}

/* Exact pill/outlined button */
.btn-brochure{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  padding: 12px 28px;
  border-radius: 40px;
  border: 1.6px solid rgba(20,80,35,0.18);
  background: rgba(255,255,255,0.98);
  color: #fff;
  font-weight: 500;
  font-size: 15px;
  box-shadow: none;
  transition: transform .12s ease, box-shadow .12s ease;
  margin-top: 45px;
  background-color: #708238;
}

/* icon stroke inherits color */
.btn-brochure .icon {
  width: 18px; height: 18px;
  display: block; stroke: currentColor; fill: none;
}

/* Hover/focus */
.btn-brochure:hover,
.btn-brochure:focus {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(20,60,30,0.06);
  text-decoration: none;
}

/* Responsive: stack columns and keep headings centered */
@media (max-width: 992px) {
  .glenhart-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .glenhart-left { order: 1; grid-column: 1 / -1; }
  .glenhart-right { order: 2; grid-column: 1 / -1; }

  .title { font-size: clamp(20px, 4.2vw, 26px); }
  .lead, .body { font-size: 15px; }
  .btn-brochure { padding: 10px 22px; font-size: 14px; border-radius: 10px; width: 100%; justify-content: center; }
}

/* small screens: tighten spacing */
@media (max-width: 420px) {
  .glenhart-story { padding: 36px 0; }
  .title { font-size: 20px; }
  .kicker { font-size:13px; }
  .glenhart-right img { border-radius: 16px; }
}

/* ===== Image Gallery Section ===== */
.image-gallery {
  background: #F6F7EE; /* pale cream like screenshots */
  padding: 44px 0 68px;
  font-family: 'Montserrat', sans-serif;
  color: #123726; /* deep green for heading */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-top: -90px;
}

/* container helper (use your project container if exists) */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Title styling (uppercase small, exact weight/spacing) */
.gallery-title {
  margin: 0 0 20px 0;
  font-weight: 700;            /* bold */
  font-size: 18px;             /* matches screenshot size */
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #123726;
}

/* Grid: left big image, right two small stacked */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 320px; /* left large, right column fixed width */
  gap: 22px;
  align-items: start;
}

/* Large image wrapper */
.gallery-large img,
.gallery-smalls img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 28px;          /* rounded corners like screenshot */
  box-shadow: 0 8px 22px rgba(12,24,18,0.06);
}

/* Constrain large image height to look like screenshot */
.gallery-large {
  align-self: stretch;
}
.gallery-large img {
  height: 100%;
  max-height: 420px;            /* keep visual proportion */
}

/* Right column small images stacked */
.gallery-smalls {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
}
.gallery-smalls img {
  height: 200px;
  max-height: 210px;
}

/* Fine-tune typography (if any captions are added later) */
.image-gallery * { font-family: 'Montserrat', sans-serif; }

/* Responsive behavior: stack on smaller screens */
@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: 1fr 260px;
    gap: 18px;
  }
  .gallery-large img { max-height: 360px; }
  .gallery-smalls img { height: 170px; }
}

@media (max-width: 720px) {
  /* stack: large image first, then two small images below */
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .gallery-smalls {
    grid-template-columns: 1fr 1fr; /* show small images side-by-side on mid-small view */
    grid-auto-rows: auto;
    gap: 12px;
  }
  .gallery-smalls img {
    height: 140px;
    max-height: none;
    border-radius: 22px;
  }
  .gallery-large img {
    max-height: none;
    border-radius: 22px;
  }
}

@media (max-width: 420px) {
  /* fully stacked single column */
  .gallery-smalls {
    grid-template-columns: 1fr;
  }
  .gallery-smalls img {
    height: 160px;
    border-radius: 18px;
  }
  .gallery-large img {
    border-radius: 18px;
  }
  .gallery-title { font-size: 16px; }
}

/* Full-bleed section background */
.vg-section-fullwidth {
  width: 100%;
  background: #F6F7EE; /* full width cream */
  padding: 48px 0 72px;
  box-sizing: border-box;
  display: block;
}

/* Inner centered wrap / content width */
.vg-fixed-wrap {
  max-width: 1180px;
  margin: 0 auto;         /* centers the content */
  padding: 0 22px;        /* page side padding (no white edge) */
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
  color: #123726;
}

/* Title */
.vg-fixed-title {
  margin: 0 0 22px 0;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #123726;
}

/* Grid layout - center column reduced height so center image isn't too tall */
.vg-fixed-frame {
  display: grid !important;
  grid-template-columns: 1fr 420px 1fr !important;
  gap: 28px !important;
  align-items: center;
  justify-items: center;
  overflow: visible;
  margin: 0 auto;
}

/* Column baseline */
.vg-fixed-col {
  min-height: 140px; /* prevents collapse */
  display:flex;
  align-items:center;
  justify-content:center;
  width:100%;
}

/* Force images visible and responsive */
.vg-fixed-col img {
  display:block !important;
  width:100% !important;
  height:auto !important;
  max-width:100% !important;
  border-radius: 26px !important;
  object-fit: cover !important;
  box-shadow: 0 8px 24px rgba(12,24,18,0.08) !important;
  background-color: #e9efe7 !important;
}

/* Left / Right thumbnails */
.vg-fixed-left img,
.vg-fixed-right img {
  max-width: 260px !important;
  height: auto !important;
}

/* Center image reduced for screenshot parity */
.vg-fixed-center img {
  max-width: 420px !important;
  height: auto !important;
}

/* ---- EXACT BUTTON STYLING (match screenshot) ----
   Thin green outer border circle, pale-green inner ring, small arrow centered.
*/
.vg-fixed-controls {
  display:flex;
  justify-content:center;
  gap: 18px;
  margin-top: 20px;
}

/* outer circle */
.vg-fixed-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.6px solid rgba(18,55,36,0.18);    /* thin green outline */
  background: transparent;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 0;
  cursor: pointer;
  transition: transform .12s ease, box-shadow .12s ease;
  color: #123726;
}

/* inner subtle ring (visual accent) */
.vg-btn-inner{
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(18,55,36,0.03);
  display:flex;
  align-items:center;
  justify-content:center;
}

/* arrow size and color */
.vg-fixed-arrow { width: 16px; height: 16px; }

/* hover/focus */
.vg-fixed-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(18,55,36,0.06);
}

/* RESPONSIVE ADJUSTMENTS */
@media (max-width: 1024px) {
  .vg-fixed-frame { grid-template-columns: 1fr 360px 1fr !important; gap: 20px !important; }
  .vg-fixed-center img { max-width: 360px !important; }
  .vg-fixed-left img, .vg-fixed-right img { max-width: 220px !important; }
  .vg-fixed-btn { width:46px; height:46px; }
}

@media (max-width: 820px) {
  /* Stack: center image first, then 2 thumbs inline below */
  .vg-fixed-frame { grid-template-columns: 1fr !important; gap: 18px !important; text-align: center; }
  .vg-fixed-center img { max-width: 100% !important; height: auto !important; border-radius: 22px !important; }

  /* thumbs appear side-by-side under center image */
  .vg-fixed-left, .vg-fixed-right { display: inline-block; width: 48%; }
  .vg-fixed-left img, .vg-fixed-right img { width: 100%; height: auto; border-radius: 18px; }

  /* make sure gallery stays centered */
  .vg-fixed-frame > .vg-fixed-left,
  .vg-fixed-frame > .vg-fixed-right {
    justify-self: center;
  }
}

@media (max-width: 420px) {
  .vg-fixed-left, .vg-fixed-right { width: 100% !important; display: block; margin-top: 8px; }
  .vg-fixed-left img, .vg-fixed-right img { border-radius: 14px !important; }
  .vg-fixed-center img { border-radius: 14px !important; }
  .vg-fixed-btn { width:44px; height:44px; }
  .vg-fixed-title { font-size: 16px; }
}

.highlights-section, .highlights-section * {
  font-family: 'Montserrat', sans-serif;
  box-sizing: border-box;
}

/* Base section styling */
.highlights-section {
  position: relative;
  background: #F6F7EE;
  color: #123726;
  text-align: center;
  padding: 60px 0 0;
  overflow: hidden;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Heading */
.highlight-heading {
  font-size: 20px;
  font-weight: 700;
  color: #0E3B2A;
  line-height: 1.5;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.highlight-heading span {
  font-weight: 600;
  color: #0E3B2A;
}

/* Grid layout */
.highlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px 20px;
  justify-items: center;
  margin-bottom: 50px;
}

/* Each item */
.highlight-item {
  text-align: center;
  color: #1a3b2a;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 400;
  max-width: 220px;
}

.highlight-item img {
  width: 36px;
  height: 36px;
  margin-bottom: 12px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.highlight-item strong {
  display: block;
  font-weight: 600;
  color: #0E3B2A;
  font-size: 14px;
}

/* CTA button */
.highlight-btn {
  background-color: #123726;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 32px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.highlight-btn:hover {
  background-color: #708238;
}

/* CTA wrapper */
.cta-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

/* Bottom background image */
.highlight-bg {
  background-image: url('images/bg-trial.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center bottom;
  width: 100%;
  height: 200px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .highlight-heading {
    font-size: 16px;
    line-height: 1.4;
  }

  .highlight-item {
    font-size: 13px;
  }

  .highlight-btn {
    width: auto;
    padding: 10px 24px;
  }

  .highlight-bg {
    height: 160px;
  }
}

/* ===== Amenities Section ===== */
.amenities-section {
  background: #F6F7EE;                 /* pale cream */
  padding: 46px 0 56px;
  font-family: 'Montserrat', sans-serif;
  color: #123726;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* inner container */
.amenities-inner.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Title: uppercase, bold, letter spacing as screenshot */
.amenities-title {
  margin: 0 0 22px 0;
  font-weight: 700;                   /* Montserrat 700 */
  font-size: 20px;                    /* exact-ish to screenshot */
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #123726;
  margin-left: 90px;
}

/* Grid: auto-fit to allow flexible columns; desktop shows 4 columns */
.amenities-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px 30px;                     /* row gap | column gap */
  padding: 0;
  margin: 12px 0 0 0;
  align-items: start;
}

/* Individual item */
.amenity-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  min-height: 120px;
}

/* Icon wrapper (circular ring) */
.amen-icon-wrap {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:72px;
  height:72px;
  border-radius:50%;
  border: 1.2px solid rgba(18,55,36,0.18); /* thin green ring */
  background: rgba(18,55,36,0.015);        /* very subtle fill */
  box-shadow: none;
}

/* SVG icon styling: stroke color, sizing */
.amen-icon {
  width:34px;
  height:34px;
  display:block;
  color: #123726;               /* controls stroke via currentColor */
  stroke: currentColor;
  fill: none;
}

/* Label below icon */
.amen-label{
  display:block;
  font-size: 13.5px;               /* matches screenshot small label */
  font-weight: 400;                /* regular */
  color: #123726;
  line-height: 1.3;
  text-align: center;
  max-width: 120px;
}

/* make labels slightly bolder (500) if you prefer - uncomment below */
/* .amen-label { font-weight: 500; } */

/* Responsive breakpoints */
@media (max-width: 1100px) {
  .amenities-grid { grid-template-columns: repeat(3, 1fr); gap: 28px 22px; }
  .amen-icon-wrap { width:64px; height:64px; }
  .amen-icon { width:30px; height:30px; }
  .amen-label { font-size: 13px; max-width: 140px; }
}

@media (max-width: 760px) {
  .amenities-grid { grid-template-columns: repeat(2, 1fr); gap: 22px 18px; }
  .amen-icon-wrap { width:60px; height:60px; }
  .amen-icon { width:28px; height:28px; }
  .amen-label { font-size: 13px; }
  .amenity-item { min-height: 110px; }
}

@media (max-width: 420px) {
  .amenities-grid { grid-template-columns: 1fr; gap: 18px 0; }
  .amen-icon-wrap { width:56px; height:56px; }
  .amen-icon { width:24px; height:24px; }
  .amen-label { font-size: 13px; max-width: 240px; }
  .amenities-section { padding: 28px 0; }
  .amenities-inner.container { padding: 0 14px; }
}

/* ======= ADVANTAGES SECTION ======= */
.advantages-section {
  background: #F6F7EE;
  padding: 60px 0;
  font-family: 'Montserrat', sans-serif;
  color: #123726;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.advantages-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Grid Layout */
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 36px;
}

.adv-card {
  background: #F6F7EE;
  border: 1.2px solid rgba(18, 55, 36, 0.25);
  border-radius: 12px;
  padding: 26px 24px;
  box-sizing: border-box;
  transition: all 0.3s ease;
}

/* Header part (icon + title) */
.adv-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

/* Icon style */
.adv-icon {
  width: 28px;
  height: 28px;
  color: #123726;
  flex-shrink: 0;
}
.adv-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Title */
.adv-title {
  font-size: 15.5px;
  font-weight: 700;
  color: #123726;
  margin: 0;
  line-height: 1.3;
}

/* Text paragraph */
.adv-text {
  font-size: 13.8px;
  line-height: 1.6;
  color: #3c5447;
  font-weight: 400;
  margin: 0;
  text-align: justify;
}

/* Hover subtle lift */
.adv-card:hover {
  border-color: rgba(18, 55, 36, 0.4);
  background: #f9faf4;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .advantages-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .adv-card {
    padding: 22px 20px;
  }
}

@media (max-width: 480px) {
  .adv-title {
    font-size: 15px;
  }
  .adv-text {
    font-size: 13.2px;
  }
  .adv-icon {
    width: 24px;
    height: 24px;
  }
  .advantages-section {
    padding: 40px 0;
  }
}

/* Accessibility (screen reader only) */
.visually-hidden {
  position: absolute !important;
  height: 1px; width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

.anekal-section,
.anekal-section * {
  font-family: 'Montserrat', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  box-sizing: border-box;
}

.anekal-section {
  background: var(--cream-bg);
  color: var(--deep-green);
  padding: 60px 0 50px;
}

/* Container */
.anekal-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}

/* Heading */
.anekal-heading {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--deep-green);
  margin-bottom: 36px;
  line-height: 1.4;
  text-transform: uppercase;
}

/* Main content layout */
.anekal-content {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 40px;
  align-items: start;
}

/* Left: Chart Image */
.anekal-left {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.anekal-img {
  width: 100%;
  max-width: 760px;
  height: auto;
  border-radius: 6px;
  display: block;
}

/* Right: Textual info boxes */
.anekal-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Subheadings (1-Year, 3-Year, etc.) */
.anekal-subheading {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 6px;
  color: var(--deep-green);
}

/* Paragraphs */
.anekal-text {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--muted-green);
  font-weight: 400;
  margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
  .anekal-content {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .anekal-left {
    order: 1;
  }
  .anekal-right {
    order: 2;
  }
}

@media (max-width: 600px) {
  .anekal-heading {
    font-size: 18px;
    text-align: center;
    margin-bottom: 24px;
  }
  .anekal-container {
    padding: 0 16px;
  }
  .anekal-text {
    font-size: 13px;
  }
}

.locmap-section, .locmap-section * {
  font-family: 'Montserrat', sans-serif;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Section */
:root {
  --cream: #F4F6ED;
  --deep-green: #043927;
  --border-green: #C9D7CD;
  --container-max: 1180px;
}
.locmap-section {
  background: var(--cream);
  padding: 44px 0 56px;
  color: var(--deep-green);
}

/* Container */
.container-sm {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}

/* Heading */
.locmap-heading {
  margin: 0 0 18px;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--deep-green);
}

/* Grid */
.locmap-grid {
  display: grid;
  grid-template-columns: 1fr 360px; /* left flexible, right fixed */
  gap: 28px 40px;
  align-items: start;
}

/* Left map - card */
.locmap-left { width: 100%; }

.locmap-placeholder {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
  border: 1.2px solid var(--border-green);
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
  /* aspect-ratio fallback for modern browsers */
  aspect-ratio: 16/9;
}

/* For browsers without aspect-ratio support, use padding-top trick */
.locmap-placeholder::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}

/* Make iframe fully cover the placeholder and remove default spacing */
.locmap-placeholder iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  border-radius: 12px;
  -webkit-transform: translateZ(0); /* reduces rendering artifacts */
}

/* Right list */
.locmap-right { width: 100%; }
.locmap-list {
  list-style: none;
  margin: 0;
  padding: 6px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.locmap-list li {
  font-size: 13px;
  line-height: 1.6;
  color: var(--deep-green);
  font-weight: 500;
  margin: 0;
  font-style: normal;
}

/* Slight adjustments on smaller screens */
@media (max-width: 920px) {
  .locmap-grid { grid-template-columns: 1fr; gap: 18px; }
  .locmap-placeholder { min-height: 300px; aspect-ratio: auto; }
  .locmap-placeholder::before { padding-top: 56.25%; }
  .container-sm { padding: 0 16px; }
}
@media (max-width: 480px) {
  .locmap-heading { font-size: 16px; text-align: left; }
  .locmap-placeholder { min-height: 240px; border-radius: 10px; }
  .locmap-list li { font-size: 13px; line-height: 1.5; }
  .container-sm { padding: 0 12px; }
}

.masterplan-section,
.masterplan-section * {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: 'Montserrat', sans-serif;
}

/* SECTION: white background (card sits on white) */
.masterplan-section {
  background: #ffffff;    /* changed to white as requested */
  padding: 36px 0 48px;   /* reduced top padding so section is shorter */
  color: #0f3b2a;
}

/* central container */
.container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Heading: LEFT aligned inside the container */
.masterplan-heading {
  margin: 0 0 18px 0;
  text-align: left;       /* left aligned */
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #0e3b2a;
  padding-left: 8px;      /* small offset to visually match container padding */
}

/* Card that contains the masterplan image */
.masterplan-card {
  background: #ffffff;
  padding: 18px;
  border-radius: 6px;
  box-shadow: 0 14px 32px rgba(6,22,12,0.08);
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  width: 100%;
  overflow: hidden;       /* hide any overflow to avoid double scrollbars */
}

/* Make the image scale to fit within a limited height so the section fits on one scroll */
.masterplan-image {
  display: block;
  width: 100%;
  height: auto;
  max-width: 1100px;                /* image won't grow beyond card width */
  /* IMPORTANT: limit height relative to viewport so it fits on single scroll */
  max-height: calc(70vh - 80px);    /* adjust subtracted px if you have a big header */
  object-fit: contain;
  border-radius: 2px;
}

/* Tablet adjustments: slightly taller image allowed but still limited */
@media (max-width: 1100px) {
  .masterplan-section { padding: 28px 0 40px; }
  .masterplan-heading { font-size: 20px; }
  .masterplan-image { max-width: 900px; max-height: calc(65vh - 80px); }
}

/* Mobile: stack, reduce heading and image height so everything is visible */
@media (max-width: 768px) {
  .masterplan-section { padding: 22px 0 28px; }
  .masterplan-heading { font-size: 18px; padding-left: 0; text-align: left; }
  .masterplan-card { padding: 12px; box-shadow: 0 10px 24px rgba(6,22,12,0.06); }
  .masterplan-image {
    max-width: 100%;
    max-height: calc(50vh - 60px);
  }
}

/* Small phones: keep it compact */
@media (max-width: 420px) {
  .masterplan-heading { font-size: 16px; letter-spacing: 0.8px; }
  .masterplan-image { max-height: calc(45vh - 50px); }
}

/* base */
.faq-section, .faq-section * {
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Full-width solid bg */
.faq-section {
  background: var(--faq-bg);
  padding: 56px 0 70px;
  color: var(--card-text);
}

/* inner centered container */
.faq-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}

/* Section title */
.faq-title {
  color: var(--card-bg); /* show as cream on green like screenshot */
  background: transparent;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin: 0 0 28px 6px; /* the title sits slightly inset */
}

/* grid: 2 columns, with last centered item spanning full width center */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 36px;
  align-items: start;
  position: relative;
}

/* Each card */
.faq-card {
  position: relative;
  background: var(--card-bg);
  border-radius: var(--card-radius);
  padding: 28px 28px 26px;
  border: 1px solid rgba(18,55,36,0.08);
  box-shadow: none;
  min-height: 130px;
  overflow: visible;
}

/* center card style — placed in its own row and centered on large screens */
.faq-card--center {
  grid-column: 1 / -1; /* span both columns */
  justify-self: center;
  max-width: 640px;
}

/* Badge (number) circle overlapping card top center */
.faq-badge {
  /* fallback if needed */
}

.faq-badge,
.faq-card .faq-badge,
.faq-badge {
  display: none;
}

/* we use the badge element inside each card (.faq-badge inside markup) */
.faq-card .faq-badge {
  display: block;
}

/* badge (number) styling */
.faq-badge,
.faq-card .faq-badge {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--badge-bg);
  border: 1px solid var(--badge-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: var(--card-text);
  box-shadow: none;
  font-size: 14px;
  z-index: 2;
}

/* content inside card */
.faq-content {
  margin-top: 6px; /* allow space under badge overlap */
}

/* question heading */
.faq-question {
  margin: 6px 0 10px 0;
  font-size: 15px;
  font-weight: 700; /* bold */
  color: var(--card-text);
  line-height: 1.25;
}

/* answer paragraph */
.faq-answer {
  margin: 0;
  color: var(--muted-text);
  font-weight: 400;
  font-size: 13.6px;
  line-height: 1.6;
  opacity: 0.95;
}

/* make sure badge numbers are visible when cards wrap; center card needs its badge centered */
.faq-card--center .faq-badge {
  top: -18px;
}

/* spacing for grid to visually match screenshot */
@media (min-width: 1000px) {
  .faq-grid { gap: 34px 48px; }
  .faq-card { padding: 30px 34px 30px; min-height: 150px; }
  .faq-title { font-size: 20px; margin-left: 8px; }
}

/* responsive: single column on small screens (cards stacked) */
@media (max-width: 900px) {
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .faq-card--center { grid-column: 1 / -1; max-width: none; }
  .faq-card { padding: 20px; min-height: auto; }
  .faq-section { padding: 36px 0; }
  .faq-title { text-align: left; margin-left: 4px; }
  .faq-card .faq-badge { top: -16px; width: 34px; height: 34px; font-size: 13px; }
  .faq-inner { padding: 0 14px; }
}

/* very small screens adjustments */
@media (max-width: 420px) {
  .faq-card .faq-badge { top: -14px; width: 32px; height: 32px; font-size: 12px; }
  .faq-question { font-size: 14px; }
  .faq-answer { font-size: 13px; line-height: 1.55; }
}

/* utility to make badge inside accessible and consistent */
.faq-card .faq-badge { pointer-events: none; }

/* Ensure Montserrat everywhere in this section */
.gh-contact-section, .gh-contact-section * {
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Section background and outer spacing */
.gh-contact-section {
  background: var(--cream);
  color: var(--deep-green);
  padding-bottom: 0;
}

/* inner container */
.gh-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 46px 20px 18px;
}

/* Top copy */
.gh-heading {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 14px 0;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.gh-lead {
  margin: 0 0 12px 0;
  color: var(--muted-green);
  font-size: 14.2px;
  line-height: 1.6;
  font-weight: 400;
}

.gh-para { margin: 0 0 28px 0; color: var(--muted-green); font-size: 14px; line-height: 1.6; }

/* Contact grid: two columns (form + right text). On desktop: left wide, right narrow */
.gh-contact-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 36px;
  align-items: start;
}

/* Form styling */
.gh-form {
  width: 100%;
}

.gh-form-inner {
  display: grid;
  grid-template-columns: 1fr 190px; /* inputs left, buttons column narrow */
  gap: 18px;
  align-items: start;
}

/* Inputs column */
.gh-inputs input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 6px;
  border: 1px solid var(--input-border);
  background: #fff;
  font-size: 14px;
  color: var(--deep-green);
  margin-bottom: 12px;
  outline: none;
  transition: box-shadow .12s ease, border-color .12s ease;
  -webkit-appearance: none;
}

.gh-inputs input::placeholder { color: #9aa18f; font-weight: 400; }

/* Buttons column: stacked small buttons */
.gh-quick-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
  width: 174px;
}

/* small button */
.gh-small-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  min-height: 36px;
  border-radius: 8px;
  background: transparent;
  border: 1px solid rgba(18,55,36,0.14);
  color: var(--deep-green);
  font-weight: 500;
  font-size: 13px;
  text-decoration: none;
  cursor: pointer;
}

/* primary action (submit) */
.gh-small-btn.gh-primary {
  background: #6b7f34; /* olive filled */
  color: #fff;
  border: 1px solid rgba(18,55,36,0.16);
  box-shadow: none;
}

/* a link styled as button */
.gh-link-btn { display:inline-flex; text-decoration:none; }

/* optional focus styles */
.gh-small-btn:focus,
.gh-inputs input:focus { box-shadow: 0 4px 14px rgba(18,55,36,0.06); border-color: rgba(18,55,36,0.22); }

/* note under form */
.gh-note { margin-top: 10px; font-size: 12.5px; color: var(--muted-green); }

/* Right column copy */
.gh-right { padding-top: 6px; }
.gh-right p { margin: 0 0 12px 0; color: var(--muted-green); font-size: 14px; line-height: 1.5; }
.gh-right .gh-copyright { font-weight: 700; color: var(--deep-green); font-size: 16px; }

.gh-footer, .gh-footer * { box-sizing: border-box; font-family: "Montserrat", sans-serif; -webkit-font-smoothing:antialiased; -moz-osx-font-smoothing:grayscale; }

/* Footer base */
.gh-footer {
  background: #708238;             /* green from your theme */
  color: rgba(255,255,255,0.95);
  padding: 28px 0 18px;
  font-size: 15px;
  line-height: 1.6;
}

/* central container */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

/* layout: two columns on desktop */
.gh-footer-inner {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  justify-content: space-between;
}

/* left column styles */
.gh-footer-left {
  flex: 1 1 60%;
  min-width: 260px;
}

/* marketer logo */
.gh-marketer-logo {
  width: 180px;                      /* size matches screenshot */
  max-width: 45%;
  height: auto;
  display: block;
  margin-bottom: 12px;
  filter: brightness(1.05) invert(0); /* preserve white logo if provided */
}

/* footer quick links (inline) */
.gh-footer-links {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-bottom: 14px;
}

.gh-link {
  color: rgba(255,255,255,0.95);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;                 /* Montserrat 500 */
  letter-spacing: 0.2px;
}

.gh-link:hover, .gh-link:focus {
  text-decoration: underline;
  opacity: 0.95;
}

/* description paragraph - smaller and softer */
.gh-desc {
  margin: 0 0 12px;
  color: rgba(255,255,255,0.92);
  font-size: 13px;
  max-width: 800px;
  font-weight: 400;
  line-height: 1.6;
}

/* copyright line - small centered under content on narrow screens */
.gh-copy {
  margin-top: 6px;
  font-size: 12px;
  color: rgba(255,255,255,0.85);
  font-weight: 400;
}

/* right column - Glenhart logo */
.gh-footer-right {
  flex: 0 0 240px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  min-width: 160px;
}

.gh-brand-logo {
  width: 160px;                      /* matches screenshot proportion */
  height: auto;
  display: block;
  object-fit: contain;
  filter: brightness(1.1);
}

/* Small screens: stack and center everything */
@media (max-width: 880px) {
  .gh-footer {
    padding: 26px 0 20px;
  }
  .gh-footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .gh-footer-left { order: 1; width: 100%; }
  .gh-footer-right { order: 2; width: 100%; justify-content: center; margin-top: 12px; }
  .gh-marketer-logo { margin: 0 auto 10px; max-width: 220px; }
  .gh-footer-links { justify-content: center; margin-bottom: 12px; }
  .gh-desc { margin: 0 auto 10px; max-width: 720px; }
  .gh-copy { margin-top: 10px; }
  .gh-brand-logo { width: 180px; }
}

/* Very small screens: tighten text */
@media (max-width: 420px) {
  .gh-desc { font-size: 12px; }
  .gh-link { font-size: 12px; }
  .gh-marketer-logo { width: 160px; }
  .gh-brand-logo { width: 150px; }
}

/* small helper */
.visually-hidden { position:absolute !important; height:1px; width:1px; overflow:hidden; clip:rect(1px,1px,1px,1px); white-space:nowrap; }


/* ===== Responsive modal CSS (replace your modal CSS with this) ===== */

/* Base modal container */
.lead-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px; /* small page padding for mobile */
}

/* visible state (keeps your existing aria-hidden toggling working) */
.lead-modal[aria-hidden="false"] {
  display: flex;
}

/* backdrop */
.lead-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

/* panel */
.lead-modal-panel {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 560px;          /* desktop width */
  margin: 0 auto;
  background: #fff;
  border-radius: 10px;
  padding: 22px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  box-sizing: border-box;
  overflow: auto;
}

/* close button */
.lead-modal-close {
  position: absolute;
  right: 10px;
  top: 8px;
  border: none;
  background: transparent;
  font-size: 24px;
  cursor: pointer;
  line-height: 1;
}

/* small spacing helpers */
.form-row { margin-bottom: 12px; }
.form-row label { display:block; font-size:13px; margin-bottom:6px; color:#333; }

/* inputs */
.form-row input[type="text"],
.form-row input[type="tel"],
.form-row input[type="email"],
.form-row select {
  width:100%;
  padding:8px 10px;
  border:1px solid #dcdcdc;
  border-radius:6px;
  font-size:15px;
  box-sizing:border-box;
  background: #fff;
}

/* two column layout on wide screens */
.two-cols {
  display:flex;
  gap:12px;
  align-items:stretch;
}

/* ensure children grow equally */
.two-cols > div { flex:1; }

/* tighten country + phone inputs visually (keeps your reduced padding) */
.lead-modal-panel .two-cols { gap: 10px; }
.lead-modal-panel select#00N5j00000K4Ak7,
.lead-modal-panel input#mobile,
.lead-modal-panel input#last_name,
.lead-modal-panel input#00N5j00000ULr9z {
  padding: 8px 10px;
  font-size: 15px;
  border-radius: 6px;
  border: 1px solid #e0e0e0;
  height: 42px;
  box-sizing: border-box;
}

/* checkbox row — supports markup where checkbox is followed by label */
.lead-modal-panel input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 0 10px 0 0;
  vertical-align: middle;
  accent-color: #708238;
}

/* If checkbox and label are direct children of the same .form-row, style the container */
.lead-modal-panel .form-row {
  display: block;
}

/* Styling a checkbox row gracefully even if markup is input then label */
.lead-modal-panel .checkbox-inline {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

/* fallback: if user didn't add .checkbox-inline, the following rule still aligns label next to checkbox */
.lead-modal-panel input[type="checkbox"] + label {
  display: inline-block;
  font-size: 13px;
  color: #333;
  line-height: 1.3;
}

/* Form actions wrapper - right aligned on desktop */
.form-actions {
  margin-top: 8px;
  display: flex;
  justify-content: flex-end;   /* keeps submit on the right */
  gap: 12px;
  align-items: center;
}

/* Primary submit button */
.lead-modal-panel .btn-cta {
  background: #708238 !important;  /* your color */
  color: #fff !important;
  border: none;
  padding: 10px 18px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(112,130,56,0.18);
  transition: transform .06s ease, box-shadow .12s ease;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  margin: 0; /* remove previous fixed margin-right */
}

/* hover */
.lead-modal-panel .btn-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(112,130,56,0.22);
}

/* disabled look */
.lead-modal-panel .btn-cta:disabled {
  opacity: 0.85;
  cursor: not-allowed;
}

/* small-screen tweaks */
@media (max-width: 880px) {
  .lead-modal-panel {
    max-width: 680px;   /* tablets: allow slightly wider if landscape */
    padding: 18px;
  }

  .two-cols { gap: 10px; }
  .lead-modal-panel input[type="checkbox"] + label { font-size: 13px; }
}

/* mobile: stack columns, full-width inputs, full-width submit */
@media (max-width: 480px) {
  .lead-modal-panel {
    width: 100%;
    max-width: 460px;
    margin: 12px;
    padding: 16px;
    border-radius: 10px;
  }

  /* stack the two columns vertically */
  .two-cols {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .two-cols > div { width: 100%; }

  /* checkbox row: place checkbox then label, wrap if needed */
  .lead-modal-panel .form-row { margin-bottom: 10px; }
  /* make checkbox & label sit on same line but allow wrap */
  .lead-modal-panel input[type="checkbox"] + label {
    display: inline-block;
    vertical-align: middle;
  }

  /* submit becomes full width and placed after checkbox */
  .form-actions {
    display: block;
    width: 100%;
    margin-top: 10px;
  }
  .lead-modal-panel .btn-cta {
    width: 100%;
    padding: 12px 14px;
    font-size: 15px;
  }

  .lead-modal-close { right: 8px; top: 6px; font-size: 22px; }
}

/* micro accessibility focus style for keyboard users */
.lead-modal-panel .btn-cta:focus,
.lead-modal-panel input:focus,
.lead-modal-panel select:focus,
.lead-modal-close:focus {
  outline: 3px solid rgba(112,130,56,0.18);
  outline-offset: 2px;
}

/* prevent overflow double-scroll: ensure body doesn't scroll when modal open if you set overflow hidden in JS */
html.modal-open { overflow: hidden; }


.site-blog, .site-blog * { box-sizing: border-box; font-family: "Montserrat", sans-serif; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

/* Container helper */
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* Section spacing & heading */
.blog-inner { padding: 56px 0 64px; text-align: center; background: #ffffff; }
.blog-heading {
  margin: 0 0 34px;
  font-weight: 700;           /* Montserrat 700 */
  font-size: 20px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #0E3B2A;
}

/* Grid: 3 columns desktop, 2 tablet, 1 mobile */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items:start;
  justify-items: stretch;
}

/* Card */
.blog-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(4,22,12,0.04);
  box-shadow: 0 8px 18px rgba(6,22,12,0.06);
  display: flex;
  flex-direction: column;
  min-height: 360px;
}

/* Media placeholder (replace with <img> if needed) */
.card-media {
  background: #e9e9ea;
  height: 160px;
  width: 100%;
  display: block;
}

/* Card body */
.card-body { padding: 18px 18px 22px; display:flex; flex-direction:column; flex:1; }

/* Date/meta */
.card-meta {
  font-size: 12px;
  color: #7b9487;
  margin-bottom: 8px;
  font-weight: 500;
}

/* Title */
.card-title {
  font-size: 16px;
  line-height: 1.3;
  margin: 0 0 12px;
  color: #0f3b2a;
  font-weight: 600; /* Montserrat 600 */
}

/* Excerpt */
.card-excerpt {
  color: #5a6e66;
  font-size: 13px;
  line-height: 1.6;
  margin: 0 0 18px;
  flex: 1;
}

/* Read more link */
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0e3b2a;
  font-weight: 600;
  text-decoration: none;
  font-size: 13px;
}

/* small arrow */
.card-link .arrow { font-weight: 700; }

/* CTA row */
.cta-row { margin-top: 26px; display:flex; justify-content:center; }
.btn-readall {
  background: #0E3B2A;
  color: #ffffff;
  padding: 8px 18px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  display:inline-block;
}

/* Hover states */
.blog-card:hover { transform: translateY(-6px); box-shadow: 0 18px 36px rgba(6,22,12,0.09); transition: all .18s ease; }
.card-link:hover { text-decoration: underline; }
.btn-readall:hover { background:#708238; transition: background .15s ease; }

/* Responsive rules */
@media (max-width: 980px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
  .card-media { height: 150px; }
}

@media (max-width: 560px) {
  .blog-grid { grid-template-columns: 1fr; gap: 18px; }
  .card-media { height: 140px; }
  .blog-inner { padding: 36px 0 40px; }
  .card-body { padding: 14px; }
  .blog-heading { font-size: 18px; }
}


.btn-cta {
  background: var(--montira-brown); /* use your defined variable */
  border: none;
  padding: 0.6rem 2.2rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: white;
}

html .njs-sticky-side.image_button_cover.placement-right {
    right: 0;
}

html .njs-sticky-side.image_button_cover {
    position: fixed;
    top: 40%;
    box-shadow: none;
    z-index: 99999;
    transition: transform .3s cubic-bezier(0,0,0,1);
    -webkit-transition: -webkit-transform .3s cubic-bezier(0,0,0,1);
}

html .njs-sticky-side.image_button_cover.placement-right.now-show a {
    transform: translate3d(4px,0,0) rotate(-90deg);
    -webkit-transform: translate3d(4px,0,0) rotate(-90deg);
}

html .njs-sticky-side.image_button_cover.placement-right a {
    border-radius: 3px 3px 0 0;
    transform: translate3d(200%,0,0) rotate(-90deg);
    -webkit-transform: translate3d(200%,0,0) rotate(-90deg);
    transform-origin: 100% 100%;
    -webkit-transform-origin: 100% 100%;
}

html .njs-sticky-side.image_button_cover a {
    padding: 6px 15px 12px;
    font-size: 18px;
    font-weight: 700;
    display: inline-block;
    position: relative;
    transition: transform .3s;
    -webkit-transition: -webkit-transform .3s;
	background-color: #708238; 
	color: white;	
  font-weight: 100; 
  top: -50px; 
  font-family: 'Arial';
  text-decoration: none;
}

html .njs-sticky-side.image_button_cover a:hover {
	background-color: white;
	color: black;
	border: 2px solid ##708238;
}

/* Existing styles remain the same... */

@media only screen and (max-width: 767px) {
    html .njs-sticky-side.image_button_cover {
        display: none !important;
    }
}

.button-container {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	display: flex;
	z-index: 1000;
}

.cta-button {
	flex: 1;
	padding: 10px 0;
	text-align: center;
	text-decoration: none;
	font-size: 16px;
	color: white;
	transition: background-color 0.3s ease;
}

.enquire {
	background-color: #708238;
}

.call {
	background-color: #4f6709;
}

.mobile-section {
	display: none;
}

@media screen and (max-width: 767px) {
	.mobile-section {
		display: flex;
	}
}

