/**************************************** ROOT CSS *********************************/
:root {
  /* Font Weights */
  --extra-bold: 900;
  --bold: 800;
  --semi-bold: 700;
  --light-bold: 500;
  --super-extra--font: 60px;

  /* Brand Colors (Updated for New Logo) */
  --prime-color: #0D2B4D;       /* Deep Estate Navy - Main Branding */
  --prime-dark: #07192E;        /* Darker Navy - Hover states/Footers */
  --gold: #C5A059;              /* Luxury Gold - Buttons/Accents */
  --gold-light: #E8D9B5;        /* Soft Gold - Background strips/Highlights */

  /* Neutral & UI Colors */
  --white: #FFFFFF;
  --grey-color-secondary: #F9F7F2; /* Soft Off-White/Cream - Main Background */
  --light-grey: #F4F4F4;
  --grey: #4A4A4A;              /* Muted Grey for borders */
  --text-grey: #5F5F5F;
  --light-black: #212529;
  --text-black: #2C2C2C;        /* Sophisticated dark text */
  --black: #1A1A1A;
  --grey-color-prime: #212529;
  --red-color: #A63232;         /* Muted Red for errors/alerts */

  /* Typography Scaling */
  --text-1: 1em;
  --text-2: 0.97em;
  --text-3: 1.2em;
  --text-4: 1.1em;
}

/******************** COMMON ********************/
/* Main list */
/* Main list */
.custom-list {
    list-style-type: disc;
    padding-left: 20px;
    margin: 0;
    color: #fff; /* ✅ force white */
}

/* Sub list */
.custom-sub-list {
    list-style-type: circle;
    padding-left: 25px;
    margin-top: 5px;
    color: #fff; /* ✅ force white */
}

/* List items */
.custom-list li,
.custom-sub-list li {
    margin-bottom: 6px;
    line-height: 1.6;
    color: #fff; /* ✅ force white */
}

body {
  font-family: "Geist", sans-serif;;
}

.font-2 {
  font-family: "Inter", sans-serif;
}

.primary-btn {
  background-color: var(--prime-color);
  color: var(--white);
  text-decoration: none;
}

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

.primary-btn-outline {
  background-color: var(--white);
  color: var(--prime-color);
  border: 2px solid var(--prime-color);
  text-decoration: none;
}
.primary-btn-outline:hover {
  background-color: var(--prime-color);
  color: var(--white);
}

.color-white {
  color: var(--white);
}

.color-black {
  color: var(--black);
}

.color-grey {
  color: var(--grey);
}

.color-text-grey {
  color: var(--text-grey);
}

.color-light-grey {
  color: var(--light-grey);
}

.color-text-black {
  color: var(--text-black);
}

.content-heading {
  font-size: 2em;
  margin-bottom: 20px;
}



.content-text-1 {
  font-size: var(--text-3);
  line-height: 1.8em;
  text-align: justify;
  text-decoration: none;
}

.content-text-2 {
  font-size: var(--text-1);
  line-height: 2em;
  font-weight: var(--light-bold);
  text-align: justify;
  text-decoration: none;
}

.grey-container {
  background-color: var(--light-grey);
}

.primary-color-container {
  background-color: var(--prime-color);
  color: var(--white);
}

.web-card i {
  font-size: 50px;
  color: var(--prime-color);
}

.web-card .link-icon {
  font-size: 20px;
  color: var(--prime-color);
}

/****************** PAGE BANNER ******************/

.page-banner-img-div {
  position: relative;
  width: 100vw;
  overflow: hidden;
}

.page-banner-img-full-height {
  height: 90vh;
}

.page-banner-img-half-height {
  height: 40vh;
}

.page-banner-img-div a {
  text-decoration: none;
  color: var(--white);
}

.page-banner-img-div::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.66);
  z-index: 1;
}

.page-banner-img-div img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: relative;
  z-index: 0;
}

.page-banner-img-div .carousel-caption {
  z-index: 2;
  bottom: 22%;
  transform: translateY(-8%);
}

.page-banner-img-div .heading {
  font-size: 1.5em;
  color: var(--light-grey);
  font-weight: var(--light-bold);
}

.page-banner-img-div .title {
  font-size: 3.75em;
  color: var(--light-grey);
  font-weight: var(--bold);
}

.page-banner-img-div .sub_title {
  font-size: 1.35em;
  color: var(--light-grey);
  font-weight: 300;
}

.page-static-bnr {
  background-color: #0a3551;/*var(--grey);*/
  color: var(--white);
  padding: 40px 0;
  border-bottom: 5px solid var(--prime-color);
}

.page-static-bnr .heading {
  font-size: 1.5em;
  color: var(--light-grey);
  font-weight: var(--light-bold);
}

.page-static-bnr .title {
  font-size: 3.75em;
  color: var(--light-grey);
  font-weight: var(--bold);
}

.page-static-bnr .sub_title {
  font-size: 1.35em;
  color: var(--light-grey);
  font-weight: 300;
}

/****************** HEADER ******************/
.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: linear-gradient(130deg, var(--grey-color-secondary) 0%, var(--white) 60%, var(--gold-light) 100%);
  border-bottom: 1px solid rgba(197, 160, 89, 0.35);
  box-shadow: 0 8px 24px rgba(7, 25, 46, 0.08);
}

.site-header__inner {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.site-brand__logo {
  width: 90px;
  max-width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

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

.site-nav__link {
  color: var(--prime-color);
  text-decoration: none;
  font-size: var(--text-1);
  font-weight: var(--semi-bold);
  padding: 11px 16px;
  border-radius: 999px;
  position: relative;
  border: 0;
  background: transparent;
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.2s ease;
  cursor: pointer;
  appearance: none;
}

.site-nav__link:hover,
.site-nav__link.is-active {
  background-color: var(--prime-color);
  color: var(--white);
  transform: translateY(-1px);
}

.site-nav__link::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 7px;
  height: 2px;
  background-color: var(--gold);
  opacity: 0;
  transform: scaleX(0.6);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.site-nav__link:hover::after,
.site-nav__link.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.site-nav__item--dropdown {
  position: relative;
}

.site-nav__dropdown-toggle i {
  margin-left: 6px;
  transition: transform 0.2s ease;
}

.site-dropdown {
  list-style: none;
  margin: 0;
  padding: 10px;
  min-width: 220px;
  position: absolute;
  left: 0;
  top: calc(100% + 8px);
  border-radius: 14px;
  background-color: var(--white);
  border: 1px solid rgba(13, 43, 77, 0.15);
  box-shadow: 0 15px 30px rgba(7, 25, 46, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(5px);
  transition: all 0.2s ease;
}

.site-dropdown li a {
  display: block;
  text-decoration: none;
  color: var(--text-black);
  font-weight: var(--light-bold);
  padding: 10px 12px;
  border-radius: 10px;
}

.site-dropdown li a:hover {
  background-color: var(--gold-light);
  color: var(--prime-dark);
}

.site-nav__item--dropdown.is-open .site-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.site-nav__item--dropdown.is-open .site-nav__dropdown-toggle {
  background-color: var(--prime-color);
  color: var(--white);
}

.site-nav__item--dropdown.is-open .site-nav__dropdown-toggle i {
  transform: rotate(180deg);
}

.site-header__cta {
  text-decoration: none;
  color: var(--prime-dark);
  border: 2px solid var(--gold);
  font-weight: var(--semi-bold);
  padding: 10px 18px;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--gold-light) 0%, var(--white) 70%);
  transition: all 0.25s ease;
}

.site-header__cta:hover {
  color: var(--white);
  background: var(--prime-color);
  border-color: var(--prime-color);
}

.site-menu-toggle {
  width: 46px;
  height: 40px;
  border: 1px solid var(--gold);
  border-radius: 10px;
  background-color: transparent;
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 0 10px;
}

.site-menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--prime-color);
}

.site-mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: min(340px, 84vw);
  height: 100vh;
  background-color: var(--light-black);
  color: var(--white);
  padding: 22px 18px;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  z-index: 1001;
  overflow-y: auto;
}

.site-mobile-nav__header {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 10px;
}

.site-mobile-nav__close {
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.28);
  width: 34px;
  height: 34px;
  border-radius: 8px;
  font-size: 18px;
}

.site-mobile-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-mobile-nav__list > li > a {
  display: block;
  color: var(--white);
  text-decoration: none;
  font-size: 1.12rem;
  font-weight: var(--light-bold);
  margin: 8px 0;
  line-height: 1.35;
  padding: 7px 8px;
  border-radius: 8px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.site-mobile-nav__list > li > a:hover {
  background-color: rgba(255, 255, 255, 0.08);
  color: var(--gold-light);
}

.site-mobile-nav__list > li > a i {
  color: var(--gold-light);
  margin-right: 8px;
  font-size: 0.86rem;
}

.site-mobile-nav__toggle span i {
  color: var(--gold-light);
  margin-right: 8px;
  font-size: 0.86rem;
}

.site-mobile-nav__group ul {
  list-style: none;
  margin: 2px 0 12px 14px;
  padding: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  padding-left: 12px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.25s ease, opacity 0.25s ease;
}

.site-mobile-nav__group ul li a {
  color: var(--white);
  text-decoration: none;
  font-size: 0.98rem;
  line-height: 1.7;
  opacity: 0.9;
}

.site-mobile-nav__toggle {
  width: 100%;
  background: transparent;
  border: 0;
  color: var(--white);
  font-size: 1.12rem;
  font-weight: var(--light-bold);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 8px;
  border-radius: 8px;
  text-align: left;
  cursor: pointer;
}

.site-mobile-nav__toggle:hover {
  background-color: rgba(255, 255, 255, 0.08);
}

.site-mobile-nav__toggle .fa-angle-down {
  margin-left: 8px;
  transition: transform 0.25s ease;
}

.site-mobile-nav__group.is-open .site-mobile-nav__toggle {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--gold-light);
}

.site-mobile-nav__group.is-open ul {
  max-height: 320px;
  opacity: 1;
}

.site-mobile-nav__group.is-open .site-mobile-nav__toggle .fa-angle-down {
  transform: rotate(180deg);
}

.site-mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  background-color: rgba(7, 25, 46, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
}

body.mobile-menu-open .site-mobile-nav {
  transform: translateX(0);
}

body.mobile-menu-open .site-mobile-nav-backdrop {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 1199px) {
  .site-brand__logo {
    width: 88px;
  }

  .site-nav__link {
    padding: 10px 12px;
  }
}

@media (max-width: 991px) {
  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1200;
  }

  body {
    padding-top: 70px;
  }

  .site-header .container {
    padding-left: 14px;
    padding-right: 14px;
  }

  .site-header__inner {
    min-height: 70px;
    gap: 10px;
  }

  .site-brand__logo {
    width: 72px;
  }

  .site-menu-toggle {
    display: inline-flex;
    width: 40px;
    height: 36px;
    border-radius: 8px;
    padding: 0 8px;
    gap: 4px;
  }

  .site-nav {
    display: none;
  }
}

@media (max-width: 575px) {
  body {
    padding-top: 64px;
  }

  .site-header__inner {
    min-height: 64px;
  }

  .site-brand__logo {
    width: 68px;
  }

  .site-mobile-nav {
    width: min(300px, 88vw);
    padding: 18px 14px;
  }

  .site-mobile-nav__header {
    margin-bottom: 8px;
  }

  .site-mobile-nav__list > li > a {
    font-size: 1rem;
    margin: 7px 0;
  }

  .site-mobile-nav__toggle {
    font-size: 1rem;
  }

  .site-mobile-nav__group ul li a {
    font-size: 0.92rem;
  }

  .page-banner-img-div .carousel-caption {
    bottom: 24%;
    transform: translateY(0);
    left: 4%;
    right: 4%;
  }

  .page-banner-img-div .heading,
  .page-banner-img-div .sub_title {
    width: 96%;
    margin-left: auto;
    margin-right: auto;
  }
}

/****************** HOME V2 ******************/
.home-intro-section,
.home-sectors-section,
.home-seo-section,
.home-blog-section,
.landing-hero-section,
.landing-content-section,
.blog-list-section,
.blog-detail-hero,
.blog-detail-section {
  padding: 86px 0;
}

.home-intro-section {
  background:
    radial-gradient(circle at top right, rgba(197, 160, 89, 0.16), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f8f5ee 100%);
}

.home-section-tag {
  display: inline-block;
  margin-bottom: 16px;
  padding: 8px 14px;
  border-radius: 999px;
  background-color: rgba(13, 43, 77, 0.08);
  color: var(--prime-color);
  font-size: 0.88rem;
  font-weight: var(--semi-bold);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.home-intro-section h1,
.home-section-head h2,
.landing-hero-card h1,
.blog-detail-hero__card h1 {
  color: var(--prime-color);
  font-size: 3rem;
  line-height: 1.12;
  margin-bottom: 18px;
  font-weight: var(--bold);
}

.home-intro-section__lead,
.home-section-head p,
.landing-hero-card p,
.blog-detail-hero__card p {
  font-size: 1.08rem;
  color: var(--text-grey);
  line-height: 1.9;
}

.home-intro-section__actions,
.landing-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.property-image-container {
  margin-top: 28px;
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 600px;
}

.property-image {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15), 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.8);
  object-fit: cover;
}

.property-image:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2), 0 10px 20px rgba(0, 0, 0, 0.12);
}

.property-image-container::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: linear-gradient(135deg, rgba(13, 43, 77, 0.1), rgba(255, 255, 255, 0.1));
  border-radius: 20px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.property-image-container:hover::before {
  opacity: 1;
}

.home-intro-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.home-intro-stat,
.landing-mini-card {
  background-color: var(--white);
  border: 1px solid rgba(13, 43, 77, 0.1);
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 16px 32px rgba(7, 25, 46, 0.06);
}

.home-intro-stat strong {
  display: block;
  color: var(--prime-color);
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.home-intro-stat span,
.landing-mini-card p {
  color: var(--text-grey);
  line-height: 1.7;
}

.home-intro-panel,
.landing-content-card,
.blog-list-card,
.blog-detail-hero__card,
.blog-detail-article,
.blog-detail-cta {
  background-color: var(--white);
  border: 1px solid rgba(13, 43, 77, 0.1);
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(7, 25, 46, 0.08);
}

.home-intro-panel {
  padding: 32px 28px;
  background: linear-gradient(180deg, #0d2b4d 0%, #12385f 100%);
}

.home-intro-panel h3 {
  color: var(--white);
  margin-bottom: 18px;
}

.home-intro-panel ul,
.sector-card ul,
.landing-check-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.home-intro-panel li,
.landing-check-list li {
  display: flex;
  gap: 10px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.8;
  margin-bottom: 12px;
}

.home-intro-panel li i,
.landing-check-list li i {
  margin-top: 6px;
  color: var(--gold-light);
}

.landing-check-list-sub {
  list-style: none;
  margin: 8px 0 8px 24px;
  padding: 0;
}

.landing-check-list-sub li {
  display: flex;
  gap: 8px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 6px;
  font-size: 0.9em;
}

.landing-check-list-sub li i {
  margin-top: 4px;
  color: var(--gold-light);
  font-size: 0.8em;
}

.home-sectors-section,
.blog-list-section,
.blog-detail-section {
  background-color: var(--grey-color-secondary);
}

.home-section-head {
  max-width: 820px;
  margin: 0 auto 42px;
}

.sector-card,
.seo-link-card {
  height: 100%;
  text-decoration: none;
  background-color: var(--white);
  border: 1px solid rgba(13, 43, 77, 0.1);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 18px 35px rgba(7, 25, 46, 0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.sector-card:hover,
.seo-link-card:hover,
.blog-preview-card:hover,
.blog-list-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 46px rgba(7, 25, 46, 0.12);
  border-color: rgba(197, 160, 89, 0.55);
}

.sector-card__icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 18px;
  color: var(--prime-color);
  background: linear-gradient(145deg, var(--gold-light) 0%, #f7f0df 100%);
}

.sector-card h3,
.seo-link-card h3,
.blog-preview-card h3,
.blog-list-card h3,
.landing-content-card h2,
.landing-content-card h3,
.blog-detail-block h2,
.landing-cta-strip__inner h3,
.blog-detail-cta h3 {
  color: var(--prime-color);
  margin-bottom: 12px;
  font-weight: var(--semi-bold);
}

.sector-card p,
.seo-link-card p,
.blog-preview-card p,
.blog-list-card p,
.landing-content-card p,
.blog-detail-block p,
.landing-cta-strip__inner p,
.blog-detail-cta p {
  color: var(--text-grey);
  line-height: 1.8;
}

.sector-card ul {
  margin: 18px 0 22px;
}

.sector-card li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 10px;
  color: var(--text-grey);
  line-height: 1.7;
}

.sector-card li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--gold);
  position: absolute;
  left: 0;
  top: 10px;
}

.seo-link-card__label,
.blog-preview-card span,
.blog-list-card__meta {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--prime-color);
  background-color: rgba(13, 43, 77, 0.06);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 0.82rem;
  font-weight: var(--semi-bold);
}

.seo-link-card__cta,
.blog-preview-card a {
  color: var(--prime-color);
  font-weight: var(--semi-bold);
  text-decoration: none;
}

.home-blog-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #f6f1e5 100%);
}

.blog-preview-card {
  height: 100%;
  background-color: var(--white);
  border: 1px solid rgba(13, 43, 77, 0.09);
  border-radius: 22px;
  padding: 26px;
  box-shadow: 0 18px 35px rgba(7, 25, 46, 0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.home-blog-section__footer {
  margin-top: 34px;
}

.landing-hero-section,
.blog-detail-hero {
  background:
    radial-gradient(circle at top left, rgba(197, 160, 89, 0.16), transparent 22%),
    linear-gradient(180deg, #f8f5ee 0%, #ffffff 100%);
}

.landing-hero-card,
.blog-detail-hero__card {
  padding: 42px;
}

.landing-content-card {
  height: 100%;
  padding: 28px;
}

.landing-content-card--accent {
  background: linear-gradient(180deg, #0d2b4d 0%, #143f6b 100%);
}

.landing-content-card--accent h3,
.landing-content-card--accent p {
  color: var(--white);
}

.landing-check-list li {
  color: rgba(255, 255, 255, 0.88);
}

.landing-mini-card span,
.blog-detail-block span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 14px;
  background-color: rgba(13, 43, 77, 0.08);
  color: var(--prime-color);
  font-weight: var(--semi-bold);
}

.landing-cta-strip {
  padding: 0 0 86px;
}

.landing-cta-strip__inner {
  background: linear-gradient(135deg, var(--prime-color) 0%, #184a79 100%);
  color: var(--white);
  border-radius: 24px;
  padding: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.landing-cta-strip__inner h3 {
  color: var(--white);
}

.landing-cta-strip__inner p {
  color: rgba(255, 255, 255, 0.84);
  margin: 0;
}

.blog-list-card {
  height: 100%;
  padding: 30px;
}

.blog-detail-article {
  padding: 34px;
}

.blog-detail-block {
  display: flex;
  gap: 20px;
  padding-bottom: 26px;
  margin-bottom: 26px;
  border-bottom: 1px solid rgba(13, 43, 77, 0.08);
}

.blog-detail-block:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.blog-detail-cta {
  margin-top: 28px;
  padding: 30px;
  text-align: center;
}

@media (max-width: 991px) {
  .home-intro-section,
  .home-sectors-section,
  .home-seo-section,
  .home-blog-section,
  .landing-hero-section,
  .landing-content-section,
  .blog-list-section,
  .blog-detail-hero,
  .blog-detail-section {
    padding: 68px 0;
  }

  .home-intro-section h1,
  .home-section-head h2,
  .landing-hero-card h1,
  .blog-detail-hero__card h1 {
    font-size: 2.35rem;
  }

  .home-intro-stats {
    grid-template-columns: 1fr;
  }

  .landing-cta-strip__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 767px) {
  .home-intro-section h1,
  .home-section-head h2,
  .landing-hero-card h1,
  .blog-detail-hero__card h1 {
    font-size: 1.95rem;
  }

  .home-intro-panel,
  .landing-hero-card,
  .blog-detail-hero__card,
  .blog-detail-article,
  .blog-detail-cta,
  .blog-list-card,
  .sector-card,
  .seo-link-card,
  .blog-preview-card,
  .landing-content-card,
  .landing-mini-card {
    padding: 22px;
    border-radius: 18px;
  }

  .home-intro-section__actions,
  .landing-hero-actions {
    flex-direction: column;
  }

  .home-intro-section__actions .btn,
  .landing-hero-actions .btn,
  .landing-cta-strip__inner .btn {
    width: 100%;
  }

  .blog-detail-block {
    flex-direction: column;
    gap: 12px;
  }
}

/****************** CONTACT PAGE V2 ******************/
.contact-v2-section {
  padding: 80px 0;
  background-color: var(--grey-color-secondary);
}

.contact-v2-form {
  background-color: transparent;
}

.contact-v2-label {
  display: block;
  margin-bottom: 8px;
  color: var(--prime-color);
  font-size: var(--text-1);
  font-weight: var(--semi-bold);
}

.contact-v2-input,
.contact-v2-textarea {
  width: 100%;
  border: 1px solid rgba(13, 43, 77, 0.12);
  border-radius: 8px;
  background-color: #eceef0;
  color: var(--text-black);
  padding: 14px 16px;
  font-size: var(--text-1);
}

.contact-v2-input {
  height: 56px;
}

.contact-v2-textarea {
  min-height: 190px;
  resize: vertical;
}

.contact-v2-input:focus,
.contact-v2-textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.18);
}

.contact-v2-input.is-invalid,
.contact-v2-textarea.is-invalid {
  border-color: var(--red-color);
  box-shadow: 0 0 0 3px rgba(166, 50, 50, 0.12);
}

.contact-v2-error {
  display: block;
  min-height: 16px;
  margin-top: 6px;
  color: var(--red-color);
  font-size: 0.84rem;
}

.contact-v2-submit {
  height: 44px;
  border: 0;
  border-radius: 10px;
  background-color: var(--prime-color);
  color: var(--white);
  font-weight: var(--semi-bold);
  padding: 0 20px;
}

.contact-v2-submit:hover {
  background-color: var(--prime-dark);
}

.contact-v2-submit:disabled {
  opacity: 0.75;
  cursor: not-allowed;
}

.contact-v2-status {
  min-height: 22px;
  margin-top: -6px;
  font-size: 0.92rem;
  color: var(--text-grey);
}

.contact-v2-status.is-success {
  color: #1b7f4a;
}

.contact-v2-status.is-error {
  color: var(--red-color);
}

.contact-v2-info {
  padding-top: 2px;
}

.contact-v2-info h2 {
  color: var(--prime-color);
  font-size: 2.2rem;
  font-weight: var(--bold);
  margin-bottom: 14px;
}

.contact-v2-info > p {
  margin-bottom: 24px;
  color: var(--text-grey);
  font-size: 1.05rem;
}

.contact-v2-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 26px;
}

.contact-v2-icon {
  color: var(--prime-color);
  font-size: 2.2rem;
  line-height: 1;
  min-width: 40px;
}

.contact-v2-item h4 {
  margin: 0 0 6px;
  color: var(--prime-dark);
  font-size: 1.45rem;
  font-weight: var(--semi-bold);
}

.contact-v2-item p,
.contact-v2-item a {
  display: block;
  margin: 0;
  text-decoration: none;
  color: var(--text-grey);
  font-size: 1rem;
  line-height: 1.55;
}

.contact-v2-item a:hover {
  color: var(--prime-color);
}

@media (max-width: 991px) {
  .contact-v2-section {
    padding: 60px 0;
  }

  .contact-v2-info h2 {
    font-size: 1.9rem;
  }

  .contact-v2-info > p {
    font-size: 1rem;
  }
}

@media (max-width: 575px) {
  .contact-v2-input {
    height: 48px;
    padding: 10px 12px;
    font-size: 0.92rem;
  }

  .contact-v2-textarea {
    min-height: 150px;
    padding: 10px 12px;
    font-size: 0.92rem;
  }
}

/****************** ABOUT PAGE ******************/
.about-overview-section {
  padding: 80px 0 60px;
  background-color: var(--grey-color-secondary);
}

.about-overview-text {
  margin: 0 0 34px;
  color: var(--prime-color);
  font-size: 1.4rem;
  line-height: 1.7;
  font-style: italic;
}

.about-overview-title {
  margin: 0 0 20px;
  color: var(--prime-dark);
  font-size: 1.8rem;
  font-weight: var(--bold);
}

.about-service-list p {
  margin: 0 0 18px;
  color: var(--prime-color);
  font-size: 1.25rem;
  line-height: 1.6;
  font-style: italic;
}

.about-service-list p strong {
  font-weight: var(--semi-bold);
}

.about-image-placeholder {
  min-height: 420px;
  border: 0;
  border-radius: 16px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.about-image-placeholder span {
  color: var(--prime-color);
  font-size: 1.7rem;
  font-weight: var(--semi-bold);
}

.about-image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
}

.about-mission-section {
  padding: 70px 0 90px;
  background-color: var(--grey-color-secondary);
}

.about-mission-head {
  margin-bottom: 40px;
}

.about-mission-head h2 {
  color: var(--prime-dark);
  font-size: 2.2rem;
  font-weight: var(--bold);
  margin-bottom: 8px;
}

.about-mission-head p {
  margin: 0;
  color: var(--text-grey);
  font-size: 1.15rem;
}

.about-mission-card {
  background-color: var(--white);
  border: 1px solid rgba(13, 43, 77, 0.1);
  border-radius: 12px;
  padding: 30px 24px;
  display: flex;
  gap: 20px;
  margin-bottom: 16px;
}

.about-mission-icon {
  min-width: 64px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--gold-light);
  color: var(--prime-color);
  font-size: 3rem;
}

.about-mission-card h4 {
  margin: 0 0 8px;
  color: var(--prime-dark);
  font-size: 1.35rem;
  font-weight: var(--bold);
}

.about-mission-card p {
  margin: 0;
  color: var(--prime-color);
  font-size: 1rem;
  line-height: 1.5;
}

.about-mission-image-placeholder {
  min-height: 560px;
  border: 0;
  border-radius: 16px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.about-mission-image-placeholder span {
  color: var(--prime-color);
  font-size: 1.8rem;
  font-weight: var(--semi-bold);
}

.about-mission-image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
}

@media (max-width: 991px) {
  .about-overview-text {
    font-size: 1.2rem;
  }

  .about-overview-title {
    font-size: 1.55rem;
  }

  .about-service-list p {
    font-size: 1.05rem;
  }

  .about-image-placeholder,
  .about-mission-image-placeholder {
    min-height: 320px;
  }

  .about-mission-head h2 {
    font-size: 1.75rem;
  }

  .about-mission-card h4 {
    font-size: 1.2rem;
  }

  .about-mission-card p {
    font-size: 1.05rem;
  }
}

/****************** SERVICES PAGE ******************/
.services-intro-section {
  padding: 75px 0 50px;
  background: linear-gradient(180deg, var(--grey-color-secondary) 0%, var(--white) 100%);
}

.services-intro-section h2 {
  color: var(--prime-dark);
  font-size: 2.3rem;
  font-weight: var(--bold);
  margin-bottom: 14px;
}

.services-intro-section p {
  margin: 0 0 22px;
  color: var(--text-grey);
  font-size: 1.08rem;
  line-height: 1.75;
}

.services-intro-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.services-intro-badges span {
  background-color: var(--white);
  border: 1px solid rgba(13, 43, 77, 0.18);
  color: var(--prime-color);
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 0.92rem;
  font-weight: var(--semi-bold);
}

.services-image-placeholder {
  min-height: 290px;
  border-radius: 16px;
  border: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.services-image-placeholder--tall {
  min-height: 470px;
}

.services-image-placeholder span {
  color: var(--prime-color);
  font-size: 1.05rem;
  font-weight: var(--semi-bold);
}

.services-image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.services-grid-section {
  padding: 20px 0 75px;
  background-color: var(--white);
}

.services-head {
  margin-bottom: 30px;
}

.services-head h3 {
  margin: 0 0 8px;
  color: var(--prime-dark);
  font-size: 2rem;
  font-weight: var(--bold);
}

.services-head p {
  margin: 0;
  color: var(--text-grey);
  font-size: 1.02rem;
}

.service-card {
  height: 100%;
  background-color: var(--grey-color-secondary);
  border: 1px solid rgba(13, 43, 77, 0.1);
  border-radius: 14px;
  padding: 24px 20px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card i {
  font-size: 2rem;
  color: var(--prime-color);
  margin-bottom: 14px;
}

.service-card h4 {
  margin: 0 0 8px;
  color: var(--prime-dark);
  font-size: 1.3rem;
  font-weight: var(--semi-bold);
}

.service-card p {
  margin: 0;
  color: var(--text-grey);
  font-size: 0.98rem;
  line-height: 1.65;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 14px 30px rgba(7, 25, 46, 0.12);
}

.services-process-section {
  padding: 10px 0 90px;
  background-color: var(--grey-color-secondary);
}

.services-process-section h3 {
  margin: 0 0 16px;
  color: var(--prime-dark);
  font-size: 2rem;
  font-weight: var(--bold);
}

.services-process-list {
  margin: 0;
  padding-left: 18px;
}

.services-process-list li {
  margin-bottom: 12px;
  color: var(--text-grey);
  font-size: 1.03rem;
  line-height: 1.65;
}

.services-process-list li strong {
  color: var(--prime-color);
  font-weight: var(--semi-bold);
}

@media (max-width: 991px) {
  .services-intro-section h2 {
    font-size: 1.9rem;
  }

  .services-head h3,
  .services-process-section h3 {
    font-size: 1.65rem;
  }

  .services-image-placeholder--tall {
    min-height: 320px;
  }
}

/****************** HOME REVIEWS ******************/
.home-reviews-section {
  padding: 80px 0 90px;
  background-color: var(--grey-color-secondary);
  background-image:
    radial-gradient(circle at 20% 30%, rgba(13, 43, 77, 0.03) 1px, transparent 1px),
    radial-gradient(circle at 80% 70%, rgba(13, 43, 77, 0.03) 1px, transparent 1px);
  background-size: 28px 28px, 24px 24px;
}

.home-reviews-head {
  margin-bottom: 34px;
}

.home-reviews-head h2 {
  margin: 0;
  color: var(--prime-dark);
  font-size: 2.35rem;
  font-weight: var(--bold);
}

.review-card {
  height: 100%;
  background-color: var(--white);
  border: 1px solid rgba(13, 43, 77, 0.1);
  border-radius: 14px;
  padding: 30px 28px 34px;
  text-align: center;
}

.review-avatar-wrap {
  position: relative;
  width: fit-content;
  margin: 0 auto 18px;
}

.review-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(13, 43, 77, 0.08);
}

.review-quote {
  position: absolute;
  right: -8px;
  bottom: -4px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #0f6f69;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.review-card p {
  margin: 0 0 20px;
  color: var(--text-grey);
  font-size: 1.05rem;
  line-height: 1.8;
  min-height: 150px;
}

.review-card h4 {
  margin: 0;
  color: var(--prime-dark);
  font-size: 2rem;
  font-weight: var(--semi-bold);
}

.review-card small {
  color: var(--text-grey);
  font-size: 0.96rem;
  font-style: italic;
}

@media (max-width: 991px) {
  .home-reviews-head h2 {
    font-size: 1.95rem;
  }

  .review-card p {
    min-height: auto;
  }
}

/****************** FOOTER ******************/
.site-footer {
  margin-top: 70px;
  background: linear-gradient(180deg, #eef2f6 0%, #e7edf3 100%);
  border-top: 1px solid rgba(13, 43, 77, 0.2);
}

.site-footer__top {
  padding: 58px 0 40px;
}

.site-footer__brand img {
  max-width: 100%;
  width: 140px;
  height: auto;
  margin-bottom: 18px;
}

.site-footer__brand p {
  color: var(--text-grey);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

.site-footer h5 {
  color: var(--prime-dark);
  font-size: 1.55rem;
  font-weight: var(--semi-bold);
  margin-bottom: 18px;
}

.site-footer__links,
.site-footer__contact,
.site-footer__city-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer__links li,
.site-footer__contact li,
.site-footer__city-links li {
  margin-bottom: 8px;
}

.site-footer__links a,
.site-footer__contact a,
.site-footer__city-links a {
  color: var(--text-grey);
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.2s ease;
}

.site-footer__links a:hover,
.site-footer__contact a:hover,
.site-footer__city-links a:hover {
  color: var(--prime-color);
}

.site-footer__contact li {
  color: var(--text-grey);
  font-size: 1rem;
  line-height: 1.65;
}

.site-footer__social {
  margin-top: 10px;
  display: flex;
  gap: 12px;
}

.site-footer__social a {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(13, 43, 77, 0.25);
  border-radius: 50%;
  color: var(--prime-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.site-footer__social a:hover {
  color: var(--white);
  background-color: var(--prime-color);
}

.site-footer__quick-strip {
  border-top: 1px solid rgba(13, 43, 77, 0.2);
  background-color: rgba(13, 43, 77, 0.03);
  padding: 30px 0 24px;
}

.site-footer__quick-strip h4 {
  color: var(--prime-dark);
  font-size: 2rem;
  font-weight: var(--bold);
  margin-bottom: 14px;
}

.site-footer__city-links a {
  line-height: 1.7;
}

@media (max-width: 991px) {
  .site-footer {
    margin-top: 50px;
  }

  .site-footer h5 {
    font-size: 1.3rem;
    margin-bottom: 12px;
  }

  .site-footer__quick-strip h4 {
    font-size: 1.6rem;
  }
}

/****************** WHATSAPP STICKY ******************/
.mobile-sticky-actions {
  position: static;
}

.sticky-contact-btn {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #25d366;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.2);
  z-index: 1200;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-sticky-btn {
  background-color: #25d366;
}

.call-sticky-btn {
  display: none;
  background-color: #0d2b4d;
}

.sticky-contact-btn span {
  display: none;
}

.sticky-contact-btn:hover {
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

@media (max-width: 767px) {
  body {
    padding-bottom: 58px !important;
  }

  .mobile-sticky-actions {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    z-index: 2500;
  }

  .sticky-contact-btn {
    position: static !important;
    right: auto !important;
    bottom: auto !important;
    width: 50% !important;
    height: 52px;
    border-radius: 0;
    font-size: 1.25rem;
    gap: 8px;
    box-shadow: 0 -6px 18px rgba(0, 0, 0, 0.18);
    transform: none;
    display: inline-flex !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  .call-sticky-btn {
    display: inline-flex !important;
  }

  .sticky-contact-btn span {
    display: inline;
    font-size: 0.95rem;
    font-weight: var(--semi-bold);
  }
}

/****************** LISTING DETAIL PAGE ******************/
.listing-detail-section {
  padding: 70px 0 85px;
  background-color: var(--grey-color-secondary);
}

.listing-detail-card {
  background-color: var(--white);
  border: 1px solid rgba(13, 43, 77, 0.12);
  border-radius: 14px;
  padding: 22px 22px 26px;
}

.listing-detail-image-placeholder {
  min-height: 320px;
  border: 2px dashed rgba(13, 43, 77, 0.25);
  border-radius: 12px;
  background: linear-gradient(150deg, rgba(232, 217, 181, 0.35) 0%, rgba(255, 255, 255, 0.95) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.listing-detail-image-placeholder span {
  color: var(--prime-color);
  font-weight: var(--semi-bold);
  font-size: 1rem;
}

.listing-detail-card h2,h1 {
  color: var(--prime-dark);
  font-size: 2rem;
  font-weight: var(--bold);
  margin: 0 0 12px;
}

.listing-detail-card p {
  margin: 0 0 12px;
  color: var(--text-grey);
  font-size: 1rem;
  line-height: 1.7;
}

.listing-mini-contact {
  position: sticky;
  top: 96px;
  background-color: var(--white);
  border: 1px solid rgba(13, 43, 77, 0.12);
  border-radius: 14px;
  padding: 20px;
}

.listing-mini-contact h3 {
  margin: 0 0 8px;
  color: var(--prime-dark);
  font-size: 1.5rem;
  font-weight: var(--semi-bold);
}

.listing-mini-contact p {
  margin: 0 0 14px;
  color: var(--text-grey);
  font-size: 0.95rem;
  line-height: 1.6;
}

.listing-mini-contact label {
  display: block;
  color: var(--prime-color);
  font-size: 0.94rem;
  font-weight: var(--semi-bold);
  margin-bottom: 5px;
}

.listing-mini-contact input,
.listing-mini-contact textarea {
  width: 100%;
  border: 1px solid rgba(13, 43, 77, 0.15);
  border-radius: 8px;
  background-color: var(--grey-color-secondary);
  color: var(--text-black);
  font-size: 0.94rem;
  padding: 10px 12px;
  margin-bottom: 10px;
}

.listing-mini-contact input.is-invalid,
.listing-mini-contact textarea.is-invalid {
  border-color: var(--red-color);
  box-shadow: 0 0 0 3px rgba(166, 50, 50, 0.12);
}

.listing-mini-contact textarea {
  min-height: 105px;
  resize: vertical;
}

.listing-contact-error {
  display: block;
  min-height: 16px;
  margin-top: -4px;
  margin-bottom: 8px;
  color: var(--red-color);
  font-size: 0.82rem;
}

.listing-mini-contact button {
  width: 100%;
  border: 0;
  border-radius: 8px;
  background-color: var(--prime-color);
  color: var(--white);
  font-size: 0.96rem;
  font-weight: var(--semi-bold);
  padding: 10px;
}

.listing-mini-contact button:hover {
  background-color: var(--prime-dark);
}

.listing-mini-contact button:disabled {
  opacity: 0.75;
  cursor: not-allowed;
}

.listing-contact-status {
  min-height: 20px;
  margin-top: 8px;
  color: var(--text-grey);
  font-size: 0.9rem;
}

.listing-contact-status.is-success {
  color: #1b7f4a;
}

.listing-contact-status.is-error {
  color: var(--red-color);
}

@media (max-width: 991px) {
  .listing-mini-contact {
    position: static;
  }
}

/****************** PAGE 404 ******************/
.page-404-section {
  min-height: 62vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 70px 0;
  background: linear-gradient(180deg, var(--grey-color-secondary) 0%, var(--white) 100%);
}

.page-404-card {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  background-color: var(--white);
  border: 1px solid rgba(13, 43, 77, 0.12);
  border-radius: 18px;
  padding: 42px 26px;
  box-shadow: 0 18px 36px rgba(7, 25, 46, 0.08);
}

.page-404-code {
  display: inline-block;
  color: var(--gold);
  font-size: 4rem;
  font-weight: var(--extra-bold);
  line-height: 1;
  margin-bottom: 8px;
}

.page-404-card h1 {
  margin: 0 0 12px;
  color: var(--prime-dark);
  font-size: 2.1rem;
  font-weight: var(--bold);
}

.page-404-card p {
  margin: 0 auto;
  max-width: 620px;
  color: var(--text-grey);
  font-size: 1.05rem;
  line-height: 1.7;
}

.page-404-actions {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

@media (max-width: 575px) {
  .page-404-card {
    padding: 30px 16px;
  }

  .page-404-code {
    font-size: 3.1rem;
  }

  .page-404-card h1 {
    font-size: 1.55rem;
  }
}
