:root {
    /* ── Palette ── */
    --color-primary: #0b1f3b;
    /* dark navy */
    --color-secondary: #171a46;
    /* deep indigo */
    --color-body: #0f1116;
    /* near-black body text */
    --color-gold: #d8bd7f;
    /* brand gold */
    --color-gold-light: #f9e9b6;
    /* light gold tag bg */
    --color-bg: #f7f2ea;
    /* warm cream background */
    --color-white: #ffffff;
    --color-border: #e5e5e5;
    --color-border-gold: #d8bd7f;

    /* ── Typography ── */
    --font-display: 'Playfair Display', serif;
    --font-body: 'Roboto', sans-serif;
    --font-ui: 'Inter', sans-serif;
    --font-jakarta: 'Plus Jakarta Sans', sans-serif;
    --font-nunito: 'Nunito Sans', sans-serif;

    /* ── Spacing (follow Bootstrap's 8-pt grid) ── */
    --section-x: 100px;
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 12px;
    --radius-pill: 100px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    color: var(--color-body);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.5;
}

img {
    display: block;
    max-width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ── Utility: Section container ── */
.section-container {
    max-width: 1240px;
    margin-inline: auto;
    padding-inline: var(--section-x);
}

/* For inner full-width sections that sit at 100px from viewport edge */
.layout-container {
    padding-inline: var(--section-x);
}

/* ══════════════════════════════════════════
       TOPBAR
        ══════════════════════════════════════════ */
.topbar {
    background-color: var(--color-primary);
    padding: 8px var(--section-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.topbar__contact {
    display: flex;
    align-items: center;
    gap: 18px;
}

.topbar__item {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--color-bg);
    font-family: var(--font-ui);
    font-size: 12px;
    font-weight: 400;
}

.topbar__item img {
    width: 18px;
    height: 18px;
}

.topbar__hours {
    color: var(--color-bg);
    font-family: var(--font-ui);
    font-size: 12px;
}

/* ══════════════════════════════════════════
       NAVBAR
        ══════════════════════════════════════════ */
.site-navbar {
    background-color: var(--color-bg);
    padding: 8px var(--section-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(0, 0, 0, .06);
}

.site-navbar__logo img {
    height: 32px;
    width: auto;
}

.site-navbar__nav {
    display: flex;
    align-items: center;
    gap: 12px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-navbar__nav a {
    font-family: var(--font-ui);
    font-size: 14px;
    font-weight: 700;
    color: var(--color-body);
    padding: 4px 2px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 2px;
}

.site-navbar__nav a:hover {
    color: var(--color-primary);
}

.site-navbar__nav .nav-chevron {
    width: 18px;
    height: 18px;
    transform: scaleY(-1);
    display: inline-block;
}

/* Tag pill */
.tag-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--color-white);
    border: 1px solid var(--color-border-gold);
    border-radius: var(--radius-pill);
    padding: 8px 16px;
    font-family: var(--font-jakarta);
    font-size: 14px;
    font-weight: 500;
    color: var(--color-gold);
    white-space: nowrap;
}

.tag-pill img {
    width: 16px;
    height: 16px;
}


@media (max-width: 1199px) {
    :root {
        --section-x: 40px;
    }
}

@media (max-width: 991px) {
    :root {
        --section-x: 24px;
    }

    .site-navbar {
        flex-wrap: wrap;
        gap: 12px;
    }

    .topbar {
        flex-direction: column;
        gap: 6px;
        text-align: center;
    }
}

@media (max-width: 767px) {
    .site-navbar__nav {
        display: none;
    }
}

/* ══════════════════════════════════════════
   SITE FOOTER
══════════════════════════════════════════ */
.site-footer {
    position: relative;
    background-color: var(--color-primary);
    display: flex;
    flex-direction: column;
    gap: 48px;
    padding: 100px var(--section-x) 48px;
    overflow: hidden;
}

/* Gold top border accent */
.site-footer__top-border {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 10px;
    background-color: #c9a75c;
}

/* ── Main columns row ── */
.site-footer__inner {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    width: 100%;
    position: relative;
    z-index: 1;
}

/* ── Generic column ── */
.footer-col {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-col--brand {
    gap: 16px;
}

/* Logo */
.footer-logo img {
    height: 35px;
    width: auto;
    display: block;
}

/* Brand description */
.footer-col__desc {
    font-family: var(--font-ui);
    font-size: 16px;
    font-weight: 400;
    color: var(--color-white);
    line-height: 26px;
    margin: 0;
}

/* Social icons row */
.footer-social {
    display: flex;
    align-items: center;
    gap: 0;
}

.footer-social__link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    padding: 10px;
    transition: opacity .2s;
}

.footer-social__link:hover {
    opacity: .7;
}

.footer-social__link img {
    display: block;
}

/* Column heading */
.footer-col__heading {
    font-family: var(--font-ui);
    font-size: 18px;
    font-weight: 600;
    color: #c9a75c;
    line-height: 28px;
    margin: 0;
}

/* ── Nav list ── */
.footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.footer-nav__link {
    font-family: var(--font-ui);
    font-size: 14px;
    font-weight: 400;
    color: var(--color-white);
    line-height: 20px;
    transition: color .2s;
    display: block;
}

.footer-nav__link:hover {
    color: #c9a75c;
}

/* ── Contact list ── */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-contact__item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-family: var(--font-ui);
    font-size: 14px;
    font-weight: 400;
    color: var(--color-white);
    line-height: 20px;
}

.footer-contact__item img {
    flex-shrink: 0;
    margin-top: 1px;
}

/* ── Divider ── */
.footer-divider {
    width: 100%;
    height: 1px;
    background-color: var(--color-white);
    opacity: 0.2;
    position: relative;
    z-index: 1;
}

/* ── Disclaimer box ── */
.footer-disclaimer {
    background-color: #2b3340;
    border-radius: var(--radius-md);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
    z-index: 1;
}

.footer-disclaimer__heading {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-jakarta);
    font-size: 18px;
    font-weight: 400;
    color: var(--color-white);
    line-height: 26px;
}

.footer-disclaimer__body {
    font-family: var(--font-jakarta);
    font-size: 12px;
    font-weight: 400;
    color: var(--color-white);
    line-height: 17px;
    margin: 0;
}

/* ── Bottom bar ── */
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    position: relative;
    z-index: 1;
}

.footer-bottom__copy {
    font-family: var(--font-jakarta);
    font-size: 14px;
    font-weight: 400;
    color: var(--color-white);
    line-height: 23px;
    margin: 0;
    white-space: nowrap;
}

.footer-bottom__links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.footer-bottom__link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-family: var(--font-jakarta);
    font-size: 14px;
    font-weight: 400;
    color: var(--color-white);
    line-height: 23px;
    white-space: nowrap;
    transition: color .2s;
}

.footer-bottom__link:hover {
    color: #c9a75c;
}

/* ── Responsive ── */
@media (max-width: 1199px) {
    .site-footer__inner {
        flex-wrap: wrap;
    }

    .footer-col {
        flex: 1 1 calc(33% - 24px);
    }

    .footer-col--brand {
        flex: 1 1 100%;
    }
}

@media (max-width: 767px) {
    .site-footer {
        padding-top: 70px;
        gap: 32px;
    }

    .footer-col {
        flex: 1 1 calc(50% - 24px);
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .footer-bottom__links {
        flex-wrap: wrap;
        gap: 12px;
    }

    .footer-bottom__copy {
        white-space: normal;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .footer-col {
        flex: 1 1 100%;
    }
}

/* ── Navbar Contact Button ── */
.btn-contact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: var(--color-primary);
    color: var(--color-white);
    border-radius: var(--radius-sm);
    padding: 10px 18px;
    font-family: var(--font-ui);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.1px;
    white-space: nowrap;
    line-height: 21px;
    transition: opacity .2s;
    border: none;
}

.btn-contact:hover {
    opacity: .85;
    color: var(--color-white);
}

.btn-contact__arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    flex-shrink: 0;
}

/* ── Buttons ── */
.cta-banner__btns {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
}

.cta-banner__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: var(--radius-sm);
    font-family: var(--font-ui);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.1px;
    white-space: nowrap;
    transition: opacity .2s;
    cursor: pointer;
}

.cta-banner__btn:hover {
    opacity: .85;
}

.cta-banner__btn--gold {
    background-color: #c9a75c;
    color: var(--color-primary);
    border: none;
}

.cta-banner__btn--gold:hover {
    color: var(--color-primary);
}

.cta-banner__btn--outline {
    background-color: transparent;
    color: var(--color-white);
    border: 1px solid #d2d2cc;
}

.cta-banner__btn--outline:hover {
    color: var(--color-white);
}

/* ── Responsive ── */
@media (max-width: 991px) {
    .cta-banner {
        padding: 36px 32px;
    }

    .cta-banner__heading {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .cta-banner-section {
        padding: 40px var(--section-x);
    }

    .cta-banner {
        padding: 32px 20px;
    }

    .cta-banner__heading {
        font-size: 24px;
    }

    .cta-banner__btns {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-banner__btn {
        justify-content: center;
    }
}

/* ── View All Button ── */
.btn-view-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--color-primary);
  color: var(--color-white);
  border: none;
  border-radius: var(--radius-sm);
  padding: 10px 18px;
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1px;
  white-space: nowrap;
  transition: opacity .2s;
}

.btn-view-all:hover { opacity: .85; color: var(--color-white); }

.btn-view-all img {
  width: 18px;
  height: 18px;
  transform: rotate(45deg);
  display: inline-block;
}

/* ══════════════════════════════════════════
   WHY SWITCH SECTION
══════════════════════════════════════════ */
.why-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  padding: 80px var(--section-x);
  background-color: var(--color-primary);
}

/* ── Header ── */
.why-section__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 1100px;
  text-align: center;
}

.why-section__heading {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.2;
  margin: 0;
}

.why-section__heading--gold { color: #e3d3b2; }

.why-section__subtext {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--color-white);
  line-height: 24px;
  margin: 0;
}

/* ── Cards ── */
.why-cards {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
}

.why-cards__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  height: 258px;
}

.why-card {
  background-color: #2b3340;
  border-radius: var(--radius-md);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 10px 15px -4px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

/* Card head: icon + text side by side */
.why-card__head {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  flex-shrink: 0;
}

.why-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: var(--color-primary);
  border-radius: var(--radius-md);
  flex-shrink: 0;
}

.why-card__head-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  min-width: 0;
}

.why-card__title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--color-white);
  line-height: 28px;
  margin: 0;
}

.why-card__desc {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--color-white);
  line-height: 24px;
  margin: 0;
}

/* Key points list */
.why-card__points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-shrink: 0;
}

.why-card__point {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--color-white);
  line-height: 24px;
}

.why-card__point img { flex-shrink: 0; }

/* ── CTA Buttons ── */
.why-section__btns {
  display: flex;
  align-items: center;
  gap: 24px;
}

.why-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1px;
  white-space: nowrap;
  transition: opacity .2s;
  cursor: pointer;
}

.why-btn:hover { opacity: .85; }

.why-btn--outline {
  background-color: var(--color-primary);
  color: var(--color-white);
  border: 1px solid #d2d2cc;
}

.why-btn--gold {
  background-color: #c9a75c;
  color: var(--color-primary);
  border: none;
}

.why-btn img {
  width: 18px;
  height: 18px;
  transform: rotate(45deg);
  display: inline-block;
}

/* ── Responsive ── */
@media (max-width: 991px) {
  .why-cards__row {
    grid-template-columns: 1fr;
    height: auto;
  }

  .why-section__heading { font-size: 32px; }
}

@media (max-width: 767px) {
  .why-section__heading { font-size: 26px; }
  .why-section__btns { flex-direction: column; align-items: stretch; }
  .why-btn { justify-content: center; }
}
/* ══════════════════════════════════════════
   FAQ SECTION
══════════════════════════════════════════ */
.faq-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  padding: 80px var(--section-x);
  background-color: #f3f5f7;
}

/* ── Header ── */
.faq-section__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  width: 100%;
}

.faq-section__heading {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.2;
  margin: 0;
}

.faq-section__subtext {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--color-body);
  line-height: 24px;
  margin: 0;
}

/* ── Accordion list ── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

/* ── FAQ Item ── */
.faq-item {
  background-color: var(--color-white);
  border: 1px solid #e3d3b2;
  border-radius: 20px;
  overflow: hidden;
  transition: border-color .25s, box-shadow .25s;
}

.faq-item--open {
  border-color: #c9a75c;
  box-shadow: 0 4px 5px rgba(11, 31, 59, 0.25);
}

/* Trigger button */
.faq-item__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 28px 32px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
}

.faq-item__question {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--color-body);
  line-height: 24px;
  flex: 1;
  min-width: 0;
  transition: color .2s, font-weight .2s;
}

/* Active question styling */
.faq-item--open .faq-item__question {
  color: #c9a75c;
  font-weight: 600;
}

/* Icon toggle */
.faq-item__icon {
  position: relative;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.faq-item__icon-minus,
.faq-item__icon-plus {
  position: absolute;
  inset: 0;
  width: 24px;
  height: 24px;
  transition: opacity .2s;
}

/* Default: show plus, hide minus */
.faq-item__icon-minus { opacity: 0; }
.faq-item__icon-plus  { opacity: 1; }

/* Open: show minus, hide plus */
.faq-item--open .faq-item__icon-minus { opacity: 1; }
.faq-item--open .faq-item__icon-plus  { opacity: 0; }

/* Answer panel */
.faq-item__answer {
  display: none;
  padding: 0 32px 28px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--color-body);
  line-height: 24px;
}

.faq-item__answer p { margin: 0; }

.faq-item--open .faq-item__answer { display: block; }

/* ── Banner ── */
.faq-banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 24px;
  border-radius: var(--radius-md);
  width: 650px;
  max-width: 100%;
  background: radial-gradient(ellipse at center, #0d1829 0%, #0b1f3b 100%);
  text-align: center;
}

.faq-banner__text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.faq-banner__heading {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: #f7f2ea;
  line-height: 34px;
  margin: 0;
}

.faq-banner__desc {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--color-white);
  line-height: 24px;
  margin: 0;
}

.faq-banner__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: #c9a75c;
  color: #f7f2ea;
  border-radius: 6px;
  padding: 12px 24px;
  font-family: var(--font-nunito);
  font-size: 16px;
  font-weight: 500;
  white-space: nowrap;
  transition: opacity .2s;
}

.faq-banner__btn:hover { opacity: .85; color: #f7f2ea; }

/* ── Responsive ── */
@media (max-width: 991px) {
  .faq-section__heading { font-size: 32px; }
}

@media (max-width: 767px) {
  .faq-section__heading { font-size: 26px; }
  .faq-item__trigger { padding: 20px; }
  .faq-item__answer  { padding: 0 20px 20px; }
  .faq-banner { width: 100%; }
}

/* ══════════════════════════════════════════
   LATEST BLOGS SECTION
══════════════════════════════════════════ */
.latest-blogs-section {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 80px var(--section-x);
  background-color: #f7f6f3;
}

/* ── Section header ── */
.latest-blogs-section__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.latest-blogs-section__heading {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.2;
  margin: 0;
  white-space: nowrap;
}

.latest-blogs-section__heading--gold { color: #c9a75c; }

/* ── Cards grid ── */
.latest-blogs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
}

/* ── Blog Card ── */
.lb-card {
  background-color: var(--color-white);
  border: 1.5px solid #c9a75c;
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: box-shadow .25s, transform .25s;
}

.lb-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.10);
  transform: translateY(-2px);
}

/* Image */
.lb-card__img-wrap {
  width: 100%;
  height: 180px;
  border-radius: var(--radius-md);
  overflow: hidden;
  flex-shrink: 0;
}

.lb-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Body */
.lb-card__body {
  display: flex;
  flex-direction: column;
  gap: 18px;
  flex: 1;
}

/* Meta row: tag + read time */
.lb-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Tag badges */
.lb-card__tag {
  display: inline-flex;
  align-items: center;
  height: 28px;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  color: var(--color-body);
  white-space: nowrap;
}

.lb-card__tag--blue { background-color: #dbeafe; }
.lb-card__tag--gold { background-color: #f9e9b6; }
.lb-card__tag--red  { background-color: #fee2e2; }

/* Read time */
.lb-card__readtime {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 28px;
  padding: 6px 8px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  color: #c9a75c;
}

/* Date */
.lb-card__date {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: #c9a75c;
  line-height: 1;
}

/* Text block */
.lb-card__text {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.lb-card__title {
  font-family: var(--font-ui);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 24px;
  margin: 0;
}

.lb-card__excerpt {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--color-body);
  line-height: 24px;
  margin: 0;
}

/* Read more link */
.lb-card__readmore {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 28px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: #c9a75c;
  white-space: nowrap;
  transition: opacity .2s;
  margin-top: auto;
}

.lb-card__readmore:hover { opacity: .75; color: #c9a75c; }

/* ── Responsive ── */
@media (max-width: 991px) {
  .latest-blogs-grid { grid-template-columns: repeat(2, 1fr); }
  .latest-blogs-section__heading { font-size: 32px; }
}

@media (max-width: 767px) {
  .latest-blogs-grid { grid-template-columns: 1fr; }
  .latest-blogs-section__heading { font-size: 26px; }
  .latest-blogs-section__header { flex-wrap: wrap; gap: 16px; }
}
/* ══════════════════════════════════════════
   CTA BANNER SECTION
══════════════════════════════════════════ */
.cta-banner-section {
  padding: 80px var(--section-x);
  background-color: var(--color-white);
}

.cta-banner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 36px 56px;
  border-radius: var(--radius-md);
  overflow: hidden;
  text-align: center;
  background: radial-gradient(ellipse at center, #0d1829 0%, #0b1f3b 100%);
}

/* Background image — very subtle overlay */
.cta-banner__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.cta-banner__bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.08;
  border-radius: var(--radius-md);
  display: block;
}

/* All direct children above bg */
.cta-banner__content,
.cta-banner__btns {
  position: relative;
  z-index: 1;
}

/* ── Content ── */
.cta-banner__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 734px;
}

.cta-banner__eyebrow {
  font-family: var(--font-jakarta);
  font-size: 16px;
  font-weight: 700;
  color: #c9a75c;
  line-height: 24px;
  letter-spacing: 0.5px;
  margin: 0;
}

.cta-banner__heading {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.2;
  margin: 0;
}

.cta-banner__desc {
  font-family: var(--font-jakarta);
  font-size: 16px;
  font-weight: 400;
  color: var(--color-white);
  line-height: 24px;
  margin: 0;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1px;
  white-space: nowrap;
  cursor: pointer;
  transition: opacity .2s;
}

.btn-primary:hover { opacity: .85; }

.btn-primary--gold {
  background-color: #c9a75c;
  color: var(--color-primary);
  border: none;
}

.btn-primary--gold:hover { color: var(--color-primary); }

.btn-primary--dark {
  background-color: var(--color-primary);
  color: var(--color-white);
  border: none;
}

.btn-primary--dark:hover { color: var(--color-white); }

.btn-primary--outline {
  background-color: transparent;
  color: var(--color-white);
  border: 1px solid #d2d2cc;
}

.btn-primary--outline:hover { color: var(--color-white); }


/* ══════════════════════════════════════════
   SINGLE SERVICE — FREE CHECKLIST SECTION
══════════════════════════════════════════ */
.checklist-section {
  padding: 80px var(--section-x);
  background-color: #f7f6f3;
}

/* ── Inner hero card ── */
.checklist-hero {
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 94px 100px;
  border-radius: 24px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  position: relative;
  background: linear-gradient(90deg, #0b1f3b 0%, #0b1f3b 100%);
}

/* radial gold glow overlay */
.checklist-hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: 300px;
  width: 600px;
  height: 500px;
  background: radial-gradient(ellipse at center, rgba(201, 167, 92, 0.20) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.checklist-hero>* {
  position: relative;
  z-index: 1;
}

/* ── Left content ── */
.checklist-hero__left {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  justify-content: center;
}

/* Eyebrow */
.checklist-hero__eyebrow {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 500;
  color: #c9a75c;
  letter-spacing: 0.5px;
  margin: 0;
}

/* Heading */
.checklist-hero__heading {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 600;
  color: var(--color-white);
  line-height: 54px;
  margin: 0;
}

/* Desc */
.checklist-hero__desc {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: #f7f2ea;
  line-height: 24px;
  margin: 0;
}

/* Points list */
.checklist-hero__points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.checklist-hero__point {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: #f7f2ea;
  line-height: 24px;
}

.checklist-hero__point svg {
  flex-shrink: 0;
}

/* ── Right form card ── */
.checklist-form {
  background-color: var(--color-white);
  border-radius: 16px;
  padding: 32px;
  width: 492px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  z-index: 1;
}

.checklist-form__title {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 600;
  color: var(--color-body);
  line-height: 28px;
  margin: 0;
}

/* Fields wrapper */
.checklist-form__fields {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

/* Form field wrapper */
.form-field {
  width: 100%;
}

.form-field--select {
  position: relative;
}

/* Input */
.form-input {
  width: 100%;
  height: 36px;
  border: 1px solid #e0e5ea;
  border-radius: 8px;
  padding: 4px 12px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--color-body);
  background-color: var(--color-white);
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
}

.form-input::placeholder {
  color: #999;
}

.form-input:focus {
  border-color: #c9a75c;
}

/* Select specific */
.form-select {
  cursor: pointer;
  padding-right: 36px;
  color: #999;
}

.form-select__chevron {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  flex-shrink: 0;
}

/* Notice box */
.form-notice {
  background-color: #f7f6f3;
  border: 1px solid #c9a75c;
  border-radius: 8px;
  padding: 16px;
  width: 100%;
}

.form-notice p {
  font-family: var(--font-body);
  font-size: 12px;
  line-height: 16px;
  margin: 0;
  color: #999;
}

.form-notice strong {
  font-weight: 700;
  color: #c9a75c;
}

/* Submit button */
.checklist-form__submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background-color: var(--color-primary);
  color: var(--color-white);
  border: none;
  border-radius: 8px;
  padding: 10px 18px;
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1px;
  cursor: pointer;
  transition: opacity 0.2s;
  white-space: nowrap;
}

.checklist-form__submit:hover {
  opacity: 0.85;
}

/* ── Responsive ── */
@media (max-width: 1199px) {
  .checklist-hero {
    padding: 60px;
    gap: 40px;
  }

  .checklist-form {
    width: 420px;
  }

  .checklist-hero__heading {
    font-size: 32px;
    line-height: 42px;
  }
}

@media (max-width: 991px) {
  .checklist-hero {
    flex-direction: column;
    padding: 48px 40px;
    gap: 32px;
  }

  .checklist-form {
    width: 100%;
  }

  .checklist-hero__heading {
    font-size: 28px;
    line-height: 36px;
  }
}

@media (max-width: 767px) {
  .checklist-section {
    padding: 40px var(--section-x);
  }

  .checklist-hero {
    padding: 32px 24px;
    border-radius: 16px;
  }

  .checklist-hero__heading {
    font-size: 24px;
    line-height: 32px;
  }
}

/* ══════════════════════════════════════════
   SINGLE SERVICE — WHY CHOOSE US SECTION
══════════════════════════════════════════ */
.svc-choose {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding: 48px var(--section-x);
  background-color: var(--color-white);
  overflow: hidden;
}

.svc-choose::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--choose-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.10;
  z-index: 0;
  pointer-events: none;
}

/* Subtle background image */
.svc-choose__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.10;
  pointer-events: none;
  z-index: 0;
}

/* All direct children above bg */
.svc-choose__header,
.svc-choose__cards,
.svc-choose__cta {
  position: relative;
  z-index: 1;
}

/* ── Header ── */
.svc-choose__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 1100px;
  width: 100%;
  text-align: center;
}

.svc-choose__heading {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.2;
  margin: 0;
}

.svc-choose__subtext {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--color-body);
  line-height: 24px;
  margin: 0;
}

/* ── Cards column: 2 rows ── */
.svc-choose__cards {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
}

/* ── Row: 2 columns ── */
.svc-choose__row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  align-items: stretch;
}

/* ── Choose card ── */
.choose-card {
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  box-shadow: 0px 10px 15px -4px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

/* ── Card head: icon + text ── */
.choose-card__head {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  width: 100%;
}

/* Icon bubble — dark navy with radial gradient */
.choose-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: var(--radius-md);
  background: radial-gradient(ellipse at 30% 80%, #0f1116 0%, #0d1829 50%, #0b1f3b 100%);
  padding: 12px;
  flex-shrink: 0;
}

.choose-card__icon img {
  width: 24px;
  height: 24px;
  display: block;
}

/* Head text */
.choose-card__head-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  min-width: 0;
}

.choose-card__title {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--color-primary);
  line-height: 24px;
  margin: 0;
  white-space: nowrap;
}

.choose-card__subtitle {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--color-body);
  line-height: 24px;
  margin: 0;
}

/* ── Key points list ── */
.choose-card__points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.choose-card__point {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--color-body);
  line-height: 24px;
}

.choose-card__point img {
  flex-shrink: 0;
}

/* ── CTA ── */
.svc-choose__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  width: 100%;
}

/* ── Responsive ── */
@media (max-width: 991px) {
  .svc-choose__row {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .svc-choose__heading {
    font-size: 32px;
  }
}

@media (max-width: 767px) {
  .svc-choose__heading {
    font-size: 26px;
  }

  .choose-card__title {
    white-space: normal;
  }
}

/* ══════════════════════════════════════════
   ABOUT HERO SECTION
══════════════════════════════════════════ */
.about-hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 40px;
  padding: 94px var(--section-x);
  min-height: 400px;
  overflow: hidden;
  background-image: var(--hero-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--color-primary);
}

/* All direct children above overlay */
.about-hero>* {
  position: relative;
  z-index: 1;
}

.about-hero__heading {
  font-family: var(--font-display);
  font-size: 54px;
  font-weight: 700;
  color: var(--color-bg);
  line-height: 1.15;
  margin: 0;
}

.about-hero__subtext {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--color-white);
  line-height: 24px;
  margin: 0;
}

.about-hero__btns {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ── Responsive ── */
@media (max-width: 991px) {
  .about-hero__heading {
    font-size: 38px;
  }
}

@media (max-width: 767px) {
  .about-hero__heading {
    font-size: 28px;
  }

  .about-hero__btns {
    flex-direction: column;
    align-items: stretch;
  }

  .about-hero__btns .cta-banner__btn {
    justify-content: center;
  }
}