@import url(https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Lora:ital,wght@0,400..700;1,400..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap);

/* ============================================================
   AHANA STRUCTURES — PREMIUM REAL ESTATE WEBSITE
   Updated Color System based on Ahana Logo (Deep Forest Green)
   
   Brand Green:   #1B5E35  (primary — from logo)
   Brand Dark:    #0D3D1F  (dark green — headers/footer)
   Gold Accent:   #B89750  (secondary — luxury highlight)
   Dark:          #111111
   White:         #FFFFFF
   Off-White:     #F7F5F0
   Muted Gray:    #777777
   Footer:        #082216
   ============================================================ */
.service-details p{
	text-align: justify;
}
.body-text{
	color:#000;
		text-align: justify;
}
.segment-link{
    display:block;
  }
/* ─────────────────────────────────────────────
   1. CSS CUSTOM PROPERTIES
───────────────────────────────────────────── */
:root {
  /* Brand Colors — Ahana Green Palette */
  --brand: #1B5E35;
  --brand-dark: #0D3D1F;
  --brand-light: #237A44;
  --brand-hover: #164D2B;
	--font-display: Poppins, sans-serif;
  --font-body: Poppins, sans-serif;
	font-family: Poppins, sans-serif;

  /* Gold accent (luxury highlight) */
  --gold: #B89750;
  --gold-light: #CEAF6E;
  --gold-dark: #9A7D3E;

  /* Neutrals */
  --dark: #111111;
  --dark-2: #1C1C1C;
  --white: #FFFFFF;
  --off-white: #F7F5F0;
  --muted: #292626;
  --muted-light: #AAAAAA;

  /* Footer */
  --footer-bg: #082216;
  --footer-border: #0F3320;


  /* Spacing */
  --sp-xs: 0.5rem;
  --sp-sm: 1rem;
  --sp-md: 1.5rem;
  --sp-lg: 2.5rem;
  --sp-xl: 4rem;
  --sp-2xl: 7rem;

  /* Transitions */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition: 0.35s var(--ease);

  /* Layout */
  --max-width: 1280px;
  --header-h: 80px;
  --radius: 4px;
  --radius-lg: 10px;
}


/* ─────────────────────────────────────────────
   2. RESET & BASE
───────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--dark);
  background-color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

address {
  font-style: normal;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-body);
}

:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}


/* ─────────────────────────────────────────────
   3. UTILITY
───────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3.5rem);
}

.section-pad {
  padding: var(--sp-2xl) 0;
}

.section-pad p{
  text-align: justify;
}

.bg-off-white {
  background-color: var(--off-white);
}

.bg-dark {
  background-color: var(--dark-2);
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal:nth-child(2) {
  transition-delay: 0.10s;
}

.reveal:nth-child(3) {
  transition-delay: 0.20s;
}

.reveal:nth-child(4) {
  transition-delay: 0.30s;
}


/* ─────────────────────────────────────────────
   4. TYPOGRAPHY
───────────────────────────────────────────── */
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: var(--sp-sm);
text-align:center;
}

.section-eyebrow--gold {
  color: var(--gold);
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 600;
  line-height: 1.18;
  color: var(--dark);
  margin-bottom: var(--sp-md);
}

.section-heading em {
  font-style: italic;
  font-weight: 400;
  color: var(--brand);
}

.section-heading--white {
  color: var(--white);
}

.section-heading--white em {
  color: var(--gold-light);
}

.section-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 52ch;
  line-height: 1.7;
}

.body-text {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: var(--sp-md);
  max-width: 55ch;
}

.body-text--muted {
  color: rgba(255, 255, 255, 0.5);
}

.section-intro {
  margin-bottom: var(--sp-xl);
}


/* ─────────────────────────────────────────────
   5. BUTTON SYSTEM
───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition),
    border-color var(--transition), box-shadow var(--transition),
    transform var(--transition);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

/* Brand Green — primary CTA */
.btn--brand {
  background: var(--brand);
  color: var(--white);
  border: 1px solid var(--brand);
}

.btn--brand:hover {
  background: var(--brand-hover);
  border-color: var(--brand-hover);
  box-shadow: 0 8px 28px rgba(27, 94, 53, 0.4);
}

/* Outlined — header */
.btn--outline-brand {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.55);
  padding: 0.6rem 1.4rem;
  font-size: 0.8rem;
}

.btn--outline-brand:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: var(--white);
}

/* Scrolled header override */
.site-header.scrolled .btn--outline-brand {
  color: var(--brand);
  border-color: var(--brand);
}

.site-header.scrolled .btn--outline-brand:hover {
  background: var(--brand);
  color: var(--white);
}

/* Ghost — hero secondary */
.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.7);
}

/* Dark */
.btn--dark {
  background: var(--dark);
  color: var(--white);
  border: 1px solid var(--dark);
}

.btn--dark:hover {
  background: #2a2a2a;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* Outlined dark */
.btn--outline-dark {
  background: transparent;
  color: var(--dark);
  border: 1px solid var(--dark);
}

.btn--outline-dark:hover {
  background: var(--dark);
  color: var(--white);
}

/* Full width */
.btn--full {
  width: 100%;
  justify-content: center;
}


/* ─────────────────────────────────────────────
   6. STICKY HEADER
───────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  padding: 0 clamp(1.25rem, 5vw, 3.5rem);
  max-width: var(--max-width);
  margin: 0 auto;
}

/* Gradient wash over hero image */
.site-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.6) 0%,
      rgba(0, 0, 0, 0) 100%);
  z-index: -1;
  transition: opacity var(--transition);
}

/* Scrolled */
.site-header.scrolled {
  background: var(--white);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.07), 0 4px 24px rgba(0, 0, 0, 0.06);
}

.site-header.scrolled::before {
  opacity: 0;
}

/* ── Logo Image ── */
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

/* The real PNG logo from ahanastructures.com */
.logo-img {
  height: 52px;
  width: auto;
  /*object-fit: contain;
  filter: brightness(0) invert(1);
  transition: filter var(--transition);*/
}

/* On white scrolled header, revert to original green logo */
.site-header.scrolled .logo-img {
  filter: none;
}

/* Fallback text logo (if image fails) */
.logo-fallback {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: var(--brand);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

.logo-mark--sm {
  width: 32px;
  height: 32px;
  font-size: 0.8rem;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
  transition: color var(--transition);
}

.logo-sub {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition);
}

.site-header.scrolled .logo-name {
  color: var(--dark);
}

.site-header.scrolled .logo-sub {
  color: var(--muted);
}

/* Primary nav */
.primary-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

.nav-link {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  position: relative;
  transition: color var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-link:hover {
  color: var(--white);
}

.nav-link:hover::after {
  width: 100%;
}

.site-header.scrolled .nav-link {
  color: var(--muted);
}

.site-header.scrolled .nav-link:hover {
  color: var(--brand);
}

.site-header.scrolled .nav-link::after {
  background: var(--brand);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--white);
  border-radius: 2px;
  transition: background var(--transition), transform var(--transition), opacity var(--transition);
}

.site-header.scrolled .hamburger span {
  background: var(--dark);
}

.hamburger.is-open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.hamburger.is-open span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile drawer */
.mobile-nav {
  display: none;
  position: absolute;
  top: var(--header-h);
  left: 0;
  width: 100%;
  background: var(--white);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}

.mobile-nav.is-open {
  max-height: 500px;
}

.mobile-nav-list {
  padding: 0.5rem 0 1.5rem;
}

.mobile-nav-link {
  display: block;
  padding: 0.85rem clamp(1.25rem, 5vw, 3.5rem);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dark);
  letter-spacing: 0.04em;
  transition: color var(--transition), background var(--transition);
}

.mobile-nav-link:hover {
  color: var(--brand);
  background: var(--off-white);
}

.mobile-cta {
  color: var(--brand) !important;
  font-weight: 600;
  margin-top: 0.5rem;
  border-top: 1px solid var(--off-white);
  padding-top: 1.2rem;
}

.nav-link.is-active::after {
  width: 100%;
}

.site-header.scrolled .nav-link.is-active {
  color: var(--brand);
}


/* Inner premium pages */
.inner-hero {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: end;
  overflow: hidden;
  background: var(--brand-dark);
}

.inner-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--inner-hero-image, url('https://images.unsplash.com/photo-1600596542815-ffad4c1539a9?w=1920&q=80')) center / cover no-repeat;
  transform: scale(1.03);
}

.inner-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 34, 22, 0.94) 0%, rgba(13, 61, 31, 0.72) 46%, rgba(0, 0, 0, 0.25) 100%),
    linear-gradient(0deg, rgba(8, 34, 22, 0.92) 0%, rgba(8, 34, 22, 0.1) 45%);
}

.inner-hero-content {
  position: relative;
  z-index: 2;
  padding-top: calc(var(--header-h) + 5rem);
  padding-bottom: 5.5rem;
}

.page-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
}

.page-kicker::before {
  content: '';
  width: 42px;
  height: 1px;
  background: var(--gold);
}

.inner-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6.6rem);
  line-height: 0.98;
  color: var(--white);
  max-width: 50%;
  margin-bottom: 1.5rem;
}

.inner-title em {
  color: var(--gold-light);
  font-style: italic;
  font-weight: 400;
}

.inner-lead {
  max-width: 62ch;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  line-height: 1.8;
}

.page-panel {
  background: var(--off-white);
  border-top: 2px solid var(--gold);
}

.split-feature {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}

.feature-list {
  display: grid;
  gap: 1rem;
}

.feature-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1.3rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.feature-index {
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 1.25rem;
}

.feature-row h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--dark);
  margin-bottom: 0.3rem;
}

.feature-row p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.75;
}

.premium-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.premium-card {
  min-height: 260px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.045);
  color: var(--white);
  border-radius: var(--radius-lg);
  transition: transform var(--transition), background var(--transition), border-color var(--transition);
}

.premium-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(184, 151, 80, 0.55);
}

.premium-card h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  margin-bottom: 0.8rem;
}

.premium-card p,
.premium-card li {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
  line-height: 1.75;
}

.premium-card ul {
  display: grid;
  gap: 0.45rem;
}

.image-band {
  min-height: 420px;
  background: var(--band-image) center / cover no-repeat;
  position: relative;
}

.image-band::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 34, 22, 0.88), rgba(8, 34, 22, 0.08));
}

.image-band-content {
  position: relative;
  z-index: 1;
  min-height: 420px;
  display: flex;
  align-items: center;
}

.image-band-copy {
  max-width: 560px;
}

.route-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.route-pill {
  padding: 0.55rem 0.85rem;
  border: 1px solid rgba(184, 151, 80, 0.36);
  color: var(--gold-light);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-page .contact {
  padding-top: calc(var(--sp-2xl) + 1rem);
}


/* ─────────────────────────────────────────────
   7. HERO SECTION
───────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    url('https://images.unsplash.com/photo-1600596542815-ffad4c1539a9?w=1920&q=80') center center / cover no-repeat;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg,
      rgba(8, 34, 18, 0.90) 0%,
      rgba(13, 61, 31, 0.60) 55%,
      rgba(0, 0, 0, 0.25) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: var(--header-h);
}

.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  opacity: 0;
  transform: translateY(12px);
  animation: fadeUp 0.8s var(--ease) 0.3s forwards;
}

.hero-headline {
  font-family: var(--font-display);
 font-size: 45px;
  font-weight: 700;
  line-height: 1.06;
  color: var(--white);
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUp 0.9s var(--ease) 0.5s forwards;
}

.hero-headline em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold-light);
}

.hero-tagline {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: rgba(255, 255, 255, 0.72);
  max-width: 50ch;
  line-height: 1.7;
  margin-bottom: 2.2rem;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 0.75s forwards;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 0.95s forwards;
}

/* Scroll cue */
.hero-scroll-cue {
  position: absolute;
  bottom: 2.5rem;
  left: clamp(1.25rem, 5vw, 3.5rem);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fadeIn 1s var(--ease) 1.8s forwards;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2.5s ease-in-out infinite;
}

.scroll-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

/* Social strip */
.hero-socials {
  position: absolute;
  right: clamp(1.25rem, 3vw, 2.5rem);
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  opacity: 0;
  animation: fadeIn 1s var(--ease) 1.8s forwards;
}

.social-link {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.45);
  writing-mode: vertical-rl;
  transition: color var(--transition);
}

.social-link:hover {
  color: var(--gold);
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

@keyframes scrollPulse {

  0%,
  100% {
    height: 50px;
    opacity: 1;
  }

  50% {
    height: 30px;
    opacity: 0.4;
  }
}


/* ─────────────────────────────────────────────
   8. BANK LOAN TRUST BANNER
───────────────────────────────────────────── */
.bank-banner {
  background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand) 100%);
  position: relative;
  z-index: 1;
  /* No bottom border here — logo strip provides separation */
}

/* Top row */
.bank-banner-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1.1rem 0;
}

.bank-icon {
  color: var(--gold);
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.bank-text {
  flex: 1;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
}

.bank-text strong {
  color: var(--white);
  font-weight: 600;
}

.bank-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 1rem;
  background: var(--gold);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ── Bank logo strip (below the text row) ── */
.bank-logos-strip {
  background: rgba(0, 0, 0, 0.22);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 2px solid var(--gold);
  padding: 0.75rem 0;
}

.bank-logo-img {
  filter: none;
}

.bank-logo-item {
  background: rgba(255, 255, 255, 0.95);
  /* near-white card */
  padding: 4px 12px;
  border-radius: 4px;
}

.bank-logos-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.bank-logos-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  white-space: nowrap;
  flex-shrink: 0;
}

/* Each bank logo wrapper */
.bank-logo-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  opacity: 0.88;
  transition: opacity var(--transition), transform var(--transition);
  flex-shrink: 0;
}

.bank-logo-item:hover {
  opacity: 1;
  transform: translateY(-2px);
}

/* The actual PNG logo — forced white on dark green background */
.bank-logo-img {
  height: 34px;
  width: auto;
  max-width: 100px;
  object-fit: contain;
  /* filter: brightness(0) invert(1); */
  display: block;
}

/* Colour-coded pill fallback (if image fails) */
.bank-logo-fallback {
  align-items: center;
  gap: 0.55rem;
}

.bank-logo-abbr {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 6px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

.bank-logo-name {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.3;
}

/* Vertical pipe dividers between banks */
.bank-logo-divider {
  display: block;
  width: 1px;
  height: 28px;
  background: rgba(255, 255, 255, 0.18);
  flex-shrink: 0;
}

.bank-logos-note {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.38);
  font-style: italic;
  margin-left: 0.5rem;
}


/* ─────────────────────────────────────────────
   8b. DEVELOPER PARTNER TICKER + GRID
───────────────────────────────────────────── */
.partners-section {
  background: var(--off-white);
  padding: var(--sp-2xl) 0 0;
  overflow: hidden;
}

.partners-header {
  margin-bottom: 3rem;
}

.partners-heading {
  /* Slightly smaller to not compete with main headings */
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

/* ── Infinite scrolling ticker ── */
.ticker-wrap {
  width: 100%;
  overflow: hidden;
  background: var(--dark);
  padding: 1rem 0;
  margin-bottom: 3.5rem;
  position: relative;
  /* Edge fade masks */
}

.ticker-wrap::before,
.ticker-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.ticker-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--dark), transparent);
}

.ticker-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--dark), transparent);
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  /* JS drives the animation; CSS provides the keyframe */
  animation: tickerScroll 40s linear infinite;
}

.ticker-track:hover {
  animation-play-state: paused;
}

@keyframes tickerScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.ticker-item {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  white-space: nowrap;
  padding: 0 2rem;
  letter-spacing: 0.04em;
  transition: color 0.2s ease;
}

.ticker-item:hover {
  color: var(--gold);
}

.ticker-dot {
  color: var(--gold);
  font-size: 0.5rem;
  flex-shrink: 0;
  opacity: 0.6;
}

/* ── Partner cards grid ── */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1px;
  background: rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 0;
}

.partner-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1.6rem 1rem;
  background: var(--white);
  text-align: center;
  transition: background var(--transition), transform var(--transition);
  cursor: default;
}

.partner-card:hover {
  background: var(--brand);
  z-index: 1;
  transform: scale(1.02);
}

.partner-initial {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--off-white);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--brand);
  border: 1.5px solid rgba(27, 94, 53, 0.15);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.partner-card:hover .partner-initial {
  background: rgba(255, 255, 255, 0.15);
  color: var(--gold);
  border-color: var(--gold);
  filter: brightness(0) invert(1);
}

.partner-name {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--dark);
  line-height: 1.3;
  transition: color var(--transition);
}

.partner-card:hover .partner-name {
  color: rgba(255, 255, 255, 0.9);
}


/* ─────────────────────────────────────────────
   9. STATS BANNER
───────────────────────────────────────────── */
.stats-banner {
  background: var(--dark);
  padding: 3.5rem 0;
}

.stats-list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.stat-item {
  flex: 1;
  min-width: 160px;
  text-align: center;
  padding: 1rem 2rem;
}

.stat-number {
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.stat-suffix {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2.4rem);
  color: var(--gold);
  font-weight: 400;
}

.stat-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 0.4rem;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}


/* ─────────────────────────────────────────────
   10. ABOUT SECTION
───────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-text .btn {
  margin-top: 0.5rem;
}

.about-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.mosaic-primary {
  grid-column: 1 / 3;
  overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 16 / 10;
}

.mosaic-primary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.mosaic-primary:hover img {
  transform: scale(1.04);
}

.mosaic-secondary {
  
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 4 / 3;
}

.mosaic-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.mosaic-secondary:hover img {
  transform: scale(1.04);
}

.mosaic-caption {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
}

.badge-brand {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  background: var(--brand);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
}


/* ─────────────────────────────────────────────
   11. FEATURED LANDMARKS — UPDATED CARDS
───────────────────────────────────────────── */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.project-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.07);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.13);
}

/* Card image */
.card-image-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.card-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.project-card:hover .card-image-wrap img {
  transform: scale(1.06);
}

/* Tag badges */
.card-tag {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  padding: 0.3rem 0.75rem;
  background: rgba(8, 34, 22, 0.82);
  backdrop-filter: blur(8px);
  color: var(--gold-light);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
}

.card-tag--new {
  background: var(--brand);
  color: var(--white);
}

/* Card body */
.card-body {
  padding: 1.25rem 1.4rem 1.5rem;
}

.card-location {
  font-size: 0.72rem;
  color: var(--muted);
  margin-bottom: 0.4rem;
}

.card-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.3rem;
  line-height: 1.25;
}

.card-type {
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 0.85rem;
}

/* Highlights list inside card */
.card-highlights {
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.card-highlights li {
  font-size: 0.72rem;
  color: var(--brand);
  font-weight: 500;
}

.card-link {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--brand);
  text-transform: uppercase;
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), letter-spacing var(--transition);
}

.project-card:hover .card-link {
  border-color: var(--brand);
  letter-spacing: 0.1em;
}

.section-cta-wrap {
  text-align: center;
}


/* ─────────────────────────────────────────────
   12. SEGMENTS
───────────────────────────────────────────── */
.segments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.segment-card {
  padding: 2.5rem 2rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  transition: background var(--transition), border-color var(--transition),
    transform var(--transition), box-shadow var(--transition);
}

/* Green top accent on hover */
.segment-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--brand);
  transition: width 0.45s var(--ease);
}

.segment-card:hover::before {
  width: 100%;
}

.segment-card:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(13, 61, 31, 0.25);
}

.segment-icon {
  color: var(--brand);
  margin-bottom: 1.4rem;
  transition: color var(--transition);
}

.segment-card:hover .segment-icon {
  color: var(--gold);
}

.segment-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.85rem;
  line-height: 1.2;
  transition: color var(--transition);
}

.segment-card:hover .segment-title {
  color: var(--white);
}

.segment-desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 1.4rem;
  transition: color var(--transition);
}

.segment-card:hover .segment-desc {
  color: rgba(255, 255, 255, 0.6);
}

.segment-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.6rem;
}

.segment-tags li {
  padding: 0.3rem 0.7rem;
  background: var(--off-white);
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 500;
  border-radius: 2px;
  transition: background var(--transition), color var(--transition);
}

.segment-card:hover .segment-tags li {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.65);
}

.segment-link {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--brand);
  border-bottom: 1px solid var(--brand);
  transition: color var(--transition), border-color var(--transition);
}

.segment-card:hover .segment-link {
  color: var(--gold-light);
  border-color: var(--gold-light);
}


/* ─────────────────────────────────────────────
   13. SERVICES STRIP
───────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.service-block {
  padding: 2.4rem 2rem;
  border-right: 1px solid rgba(0, 0, 0, 0.07);
  position: relative;
  transition: background var(--transition);
}

.service-block:last-child {
  border-right: none;
}

.service-block:hover {
  background: var(--off-white);
}

.service-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.05);
  line-height: 1;
  margin-bottom: 1.4rem;
  transition: color var(--transition);
}

.service-block:hover .service-num {
  color: rgba(27, 94, 53, 0.12);
}

.service-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.service-desc {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.7;
}

/* Green accent line at bottom on hover */
.service-block::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--brand);
  transition: width 0.4s var(--ease);
}

.service-block:hover::after {
  width: 100%;
}


/* ─────────────────────────────────────────────
   14. AMENITIES
───────────────────────────────────────────── */
.amenities {
  background: var(--white);
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(0, 0, 0, 0.07);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.amenity-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.6rem 1.5rem;
  background: var(--white);
  transition: background var(--transition);
}

.amenity-item:hover {
  background: var(--brand);
}

.amenity-icon {
  color: var(--brand);
  flex-shrink: 0;
  transition: color var(--transition);
}

.amenity-item:hover .amenity-icon {
  color: var(--gold);
}

.amenity-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--dark);
  transition: color var(--transition);
}

.amenity-item:hover .amenity-label {
  color: rgba(255, 255, 255, 0.9);
}


/* ─────────────────────────────────────────────
   15. CONTACT SECTION
───────────────────────────────────────────── */
.contact {
  background: var(--brand-dark);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.contact-details {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.65;
}

.contact-detail a {
  color: var(--gold-light);
  transition: color var(--transition);
}

.contact-detail a:hover {
  color: var(--gold);
}

.detail-icon {
  flex-shrink: 0;
  font-size: 1rem;
  margin-top: 0.1rem;
}

/* Form card */
.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border-top: 4px solid var(--brand);
}

.form-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 1.75rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.form-group {
  margin-bottom: 1.1rem;
}

.form-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.45rem;
}

.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--dark);
  background: var(--off-white);
  border: 1px solid transparent;
  border-radius: var(--radius);
  outline: none;
  -webkit-appearance: none;
  transition: border-color var(--transition), background var(--transition),
    box-shadow var(--transition);
}

.form-input:focus {
  background: var(--white);
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(27, 94, 53, 0.12);
}

.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23777' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
}

.form-note {
  margin-top: 0.85rem;
  font-size: 0.72rem;
  color: var(--muted);
  text-align: center;
}


/* ─────────────────────────────────────────────
   16. FOOTER
───────────────────────────────────────────── */
.site-footer {
  background: var(--footer-bg);
}

.footer-main {
  padding: 5rem 0 3.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3.5rem;
}

/* Footer logo image */
.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 1.25rem;
}

.footer-logo-img {
  height: 46px;
  width: auto;
  object-fit: contain;
  /* Force white on dark footer */
  filter: brightness(0) invert(1);
}

.logo-fallback-footer {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.footer-statement {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.75;
  max-width: 32ch;
  margin-bottom: 1.5rem;
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
}

.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.45);
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.footer-social:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: var(--white);
}

.footer-heading {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1.4rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid var(--footer-border);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-links a {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.42);
  transition: color var(--transition), padding-left var(--transition);
}

.footer-links a:hover {
  color: var(--gold-light);
  padding-left: 4px;
}

.footer-address {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-address p {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.65;
}

.footer-address a {
  color: rgba(255, 255, 255, 0.42);
  transition: color var(--transition);
}

.footer-address a:hover {
  color: var(--gold-light);
}

/* Footer baseline */
.footer-baseline {
  border-top: 1px solid var(--footer-border);
  padding: 1.4rem 0;
}

.footer-baseline-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.copyright {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.28);
}

.footer-legal {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.28);
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.32);
  transition: color var(--transition);
}

.footer-legal a:hover {
  color: var(--gold-light);
}


/* ─────────────────────────────────────────────
   17. BACK TO TOP
───────────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--brand);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 900;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition),
    background var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 16px rgba(27, 94, 53, 0.4);
}

.back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover {
  background: var(--brand-hover);
  box-shadow: 0 8px 24px rgba(27, 94, 53, 0.5);
}


/* ─────────────────────────────────────────────
   17B. TESTIMONIALS
───────────────────────────────────────────── */
.testimonials {
  background: var(--off-white);
  overflow: hidden;
  position: relative;
}

.testimonials-slider-wrapper {
  position: relative;
  max-width: 1000px;
  margin: 3.5rem auto 0;
  padding: 0;
  overflow: hidden;
}

.testimonials-slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
  will-change: transform;
}

.testimonial-slide {
  min-width: 60%; /* Show neighboring cards */
  padding: 1.5rem 2rem; /* Increased gap between cards */
  box-sizing: border-box;
  opacity: 0.9; /* 90% opacity for non-active cards */
  transform: scale(0.92); /* Zoom out non-active cards */
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.testimonial-slide.is-active {
  opacity: 1; /* Center active card is 100% */
  transform: scale(1.05); /* Zoom in active card */
}

.testimonial-card {
  background: var(--white);
  padding: 3rem 2.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  text-align: center;
  position: relative;
}

/* Quote mark icon background */
.testimonial-card::before {
  content: '“';
  position: absolute;
  top: 1rem;
  left: 2rem;
  font-size: 6rem;
  color: rgba(27, 94, 53, 0.06);
  font-family: var(--font-display);
  line-height: 1;
}

.testimonial-rating {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.testimonial-quote {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--dark);
  margin-bottom: 2rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.author-name {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--brand-dark);
}

.author-role {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 500;
}

/* Controls */
.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.slider-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: var(--white);
  color: var(--brand);
  cursor: pointer;
  transition: all var(--transition);
}

.slider-arrow:hover {
  background: var(--brand);
  color: var(--white);
  border-color: var(--brand);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(27, 94, 53, 0.15);
}

.slider-dots {
  display: flex;
  gap: 0.6rem;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: all var(--transition);
}

.slider-dot.is-active {
  background: var(--brand);
  width: 20px;
  border-radius: 4px;
}


/* ─────────────────────────────────────────────
   18. RESPONSIVE — TABLET (≤ 1100px)
───────────────────────────────────────────── */
@media (max-width: 1100px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .premium-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split-feature {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .service-block:nth-child(2) {
    border-right: none;
  }

  .service-block:nth-child(3) {
    border-top: 1px solid rgba(0, 0, 0, 0.07);
  }

  .service-block:nth-child(4) {
    border-top: 1px solid rgba(0, 0, 0, 0.07);
    border-right: none;
  }

  /* Partners grid: 4 cols on tablet */
  .partners-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}


/* ─────────────────────────────────────────────
   19. RESPONSIVE — MOBILE (≤ 992px)
───────────────────────────────────────────── */
@media (max-width: 992px) {
  .section-pad {
    padding: 4rem 0;
  }

  /* Header */
  .primary-nav {
    display: none;
  }

  .btn--outline-brand {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-nav {
    display: block;
  }

  /* Hero */
  .hero-headline {
    font-size: clamp(2.4rem, 10vw, 4rem);
  }

  .hero-socials {
    display: none;
  }

  .hero-scroll-cue {
    display: none;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  /* Bank banner */
  .bank-banner-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .bank-logos-inner {
    gap: 1.2rem;
    flex-wrap: wrap;
  }

  /* Stats */
  .stat-item {
    min-width: 50%;
  }

  .stat-divider {
    display: none;
  }

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-mosaic {
    grid-template-columns: 1fr;
  }

  .mosaic-primary {
    grid-column: 1;
  }

  .mosaic-secondary {
    grid-column: 1;
  }

  /* Projects */
  .projects-grid {
    grid-template-columns: 1fr 1fr;
  }

  .premium-grid {
    grid-template-columns: 1fr;
  }

  .inner-hero {
    min-height: 64vh;
  }

  .inner-hero-content {
    padding-bottom: 4rem;
  }

  .inner-title {
    max-width: 100%;
  }

  /* Segments */
  .segments-grid {
    grid-template-columns: 1fr;
  }

  /* Services */
  .services-grid {
    grid-template-columns: 1fr;
    border: none;
    gap: 1px;
    background: transparent;
  }

  .service-block {
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    border-radius: var(--radius-lg);
  }

  .service-block::after {
    display: none;
  }

  /* Amenities */
  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  /* Partners grid */
  .partners-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .ticker-track {
    animation-duration: 28s;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-brand {
    border-bottom: 1px solid var(--footer-border);
    padding-bottom: 2rem;
  }

  .footer-baseline-inner {
    flex-direction: column;
    text-align: center;
  }

  /* Testimonials */
  .testimonial-slide {
    min-width: 80%;
    padding: 1rem 1.25rem;
  }
  .testimonial-quote {
    font-size: 1.2rem;
  }
  .testimonial-card {
    padding: 2.5rem 1.75rem;
  }
}


/* ─────────────────────────────────────────────
   20. RESPONSIVE — SMALL MOBILE (≤ 480px)
───────────────────────────────────────────── */
@media (max-width: 480px) {
  .projects-grid {
    grid-template-columns: 1fr;
  }

  .amenities-grid {
    grid-template-columns: 1fr 1fr;
  }

  .image-band,
  .image-band-content {
    min-height: 360px;
  }

  .stat-item {
    min-width: 100%;
  }

  .btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.8rem;
  }

  .contact-form-card {
    padding: 1.75rem 1.25rem;
  }

  .bank-badge {
    display: none;
  }

  .bank-logo-img {
    height: 26px;
  }

  .bank-logos-note {
    display: none;
  }

  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .partner-card {
    padding: 1.2rem 0.75rem;
  }

  .partner-initial {
    width: 38px;
    height: 38px;
    font-size: 0.8rem;
  }

  /* Testimonials */
  .testimonial-slide {
    min-width: 90%;
    padding: 0.5rem 0.75rem;
  }
  .testimonial-quote {
    font-size: 1.05rem;
  }
  .testimonial-card {
    padding: 2rem 1.25rem;
  }
}









        .inner-hero-content h1 {
            font-size: 38px !important;
        }

        @media (max-width: 1600px) {
            .inner-hero {
                min-height: 42vh !important;
            }
        }

        .about-grid1 {
            grid-template-columns: 2fr;
        }





/* ==========================
   Custom Breadcrumb
========================== */

.custom-breadcrumb {
    background: #f8f8f8;
        padding: 10px 0 0;
    border-bottom: 1px solid #ececec;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    margin: 0 0 15px;
    padding: 0;
}

.breadcrumb-list li {
    position: relative;
    font-size: 15px;
    color: #666;
    font-weight: 500;
}

.breadcrumb-list li:not(:last-child)::after {
    content: "/";
    margin-left: 10px;
    color: #999;
}

.breadcrumb-list li a {
    color: #1452F3;
    text-decoration: none;
    transition: .3s ease;
}

.breadcrumb-list li a:hover {
    color: #111;
}

.breadcrumb-title {
    font-size: 42px;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
    line-height: 1.2;
}

.breadcrumb-text {
    max-width: 700px;
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

/* Responsive */

@media (max-width: 991px) {
    .custom-breadcrumb {
        padding: 55px 0;
    }

    .breadcrumb-title {
        font-size: 34px;
    }
}

@media (max-width: 767px) {
    .custom-breadcrumb {
        padding: 45px 0;
    }

    .breadcrumb-title {
        font-size: 28px;
    }

    .breadcrumb-text {
        font-size: 15px;
    }

    .breadcrumb-list li {
        font-size: 14px;
    }
}
















.ahana-faq-section {
            padding: 80px 0;
            background: #f7f7f7;
        }

        .faq-heading {
            text-align: center;
            margin-bottom: 45px;
        }

        .faq-heading span {
            color: #b08a4f;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .faq-heading h2 {
            font-size: 42px;
            margin: 10px 0;
            color: #222;
        }

        .faq-heading p {
            color: #666;
        }

        .ahana-accordion {
            max-width: 900px;
            margin: auto;
        }

        .faq-item {
            background: #fff;
            margin-bottom: 18px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0, 0, 0, .08);
        }

        .faq-title {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 22px 25px;
            cursor: pointer;
        }

        .faq-title h3 {
            margin: 0;
            font-size: 18px;
            font-weight: 600;
            color: #222;
        }

        .faq-title span {
            width: 34px;
            height: 34px;
            border-radius: 50%;
            background: #b08a4f;
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            transition: .3s;
        }

        .faq-content {
            max-height: 0;
            overflow: hidden;
            transition: .4s ease;
            padding: 0 25px;
        }

        .faq-content p {
            padding-bottom: 22px;
            color: #666;
            line-height: 1.8;
        }

        .faq-item.active .faq-content {
            max-height: 300px;
        }

        .faq-item.active .faq-title span {
            transform: rotate(45deg);
        }

        @media(max-width:768px) {

            .faq-heading h2 {
                font-size: 30px;
            }

            .faq-title h3 {
                font-size: 16px;
            }

        }







.footer-presence {
            background: #0c251f;
            border-top: 1px solid rgba(255, 255, 255, .08);
            border-bottom: 1px solid rgba(255, 255, 255, .08);
            padding: 35px 0;
        }

        .presence-title {
            text-align: center;
            color: #fff;
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 30px;
        }

        .presence-links {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 18px 35px;
        }

        .presence-links a {
            color: #d9e9df;
            text-decoration: none;
            font-size: 14px;
            transition: .3s;
            position: relative;
            padding: 8px 0;
        }

        .presence-links a:hover {
            color: #55d18d;
            transform: translateY(-3px);
        }

        .presence-links a::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 0;
            height: 2px;
            background: #55d18d;
            transition: .3s;
        }

        .presence-links a:hover::after {
            width: 100%;
        }

        @media(max-width:768px) {

            .presence-title {
                font-size: 24px;
            }

            .presence-links {
                justify-content: flex-start;
                gap: 15px 20px;
            }

            .presence-links a {
                width: 45%;
                font-size: 15px;
            }

        }

        @media(max-width:480px) {

            .presence-links a {
                width: 100%;
            }

        }



 .section-pads .about-texts h3{
        font-size: 16px;
margin-bottom: 2px;
    margin-top: 13px;
      }
      .section-pads .about-texts h2{
        font-size: 18px;
            margin-top: 20px;
margin-bottom: 7px;
      }
      .section-pads .about-texts p{
        color: #666;
        font-size: 16px;
      }


.phone img,
.whatsapp img {
    position: fixed;
    bottom: 70px;
    z-index: 9999;
    width: 50px;
    height: 50px
}
    .whatsapp img {
    left: 10px
}
    .phone img {
    right: 10px
}

    @media screen and (max-width:500px) {
   
    .phone img,
    .whatsapp img {
        width: 50px;
        height: 50px
    }
}















.testimonial-section {
            padding: 80px 0;
            background: #fff;
        }
        .container {
            max-width: 1280px;
            width: 90%;
            margin: auto;
        }
        .section-heading {
            text-align: start;
            margin-bottom: 25px;
        }
        .section-heading h2 {
            font-size: 42px;
            margin-bottom: 15px;
        }
        .section-heading span {
            color: #0b6b45;
        }
        .section-heading p {
            color: #666;
            font-size: 18px;
        }
        .testimonial-wrapper {
            display: flex;
            gap: 40px;
            align-items: flex-start;
        }
        .instagram-card {
            width: 42%;
            position: relative;
            overflow: hidden;
            border-radius: 18px;
        }
        .instagram-card img {
            width: 100%;
            height: 520px;
            object-fit: cover;
            display: block;
        }
        .insta-overlay {
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            padding: 35px;
            background: linear-gradient(transparent, rgba(0, 0, 0, .85));
            color: #fff;
        }
        .insta-overlay h3 {
            margin: 15px 0 10px;
        }
        .insta-overlay a {
            display: inline-block;
            margin-top: 15px;
            background: #0b6b45;
            color: #fff;
            padding: 12px 25px;
            border-radius: 6px;
            text-decoration: none;
        }
        .review-area {
            width: 58%;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .review-card {
            background: #fff;
            padding: 28px;
            border-radius: 15px;
            border: 1px solid #e5e5e5;
            box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
            transition: .3s;
        }
        .review-card:hover {
            transform: translateY(-5px);
        }
        .review-card p {
            margin: 15px 0;
            line-height: 1.7;
            color: #555;
        }
        @media(max-width:992px) {
            .testimonial-wrapper {
                flex-direction: column;
            }
            .instagram-card,
            .review-area {
                width: 100%;
            }
            .instagram-card img {
                height: 400px;
            }
        }





.about-section {
            padding: 80px 0;
            background: #fff;
        }
        .about-container {
            width: 90%;
            max-width: 1280px;
            margin: auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 70px;
        }
        .about-content {
            flex: 1;
        }
        .about-subtitle {
            display: inline-block;
            color: #0c6b43;
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 2px;
            margin-bottom: 12px;
        }
        .about-content h2 {
            font-size: 42px;
            line-height: 1.3;
            margin-bottom: 20px;
            color: #222;
        }
        .about-content h2 span {
            color: #0c6b43;
        }
        .about-content p {
            color: #666;
            line-height: 1.9;
            font-size: 17px;
            margin-bottom: 30px;
        }
        .about-points {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            margin-bottom: 35px;
        }
        .about-points div {
            background: #f8f8f8;
            border-left: 4px solid #0c6b43;
            padding: 14px 18px;
            border-radius: 8px;
            font-size: 15px;
            font-weight: 600;
        }
        .about-btn {
            display: inline-block;
            background: #0c6b43;
            color: #fff;
            text-decoration: none;
            padding: 15px 34px;
            border-radius: 8px;
            font-weight: 600;
            transition: .3s;
        }
        .about-btn:hover {
            background: #08482d;
        }
        .about-image {
            flex: 1;
        }
        .about-image img {
            width: 100%;
            height: 430px;
            object-fit: cover;
            border-radius: 18px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, .18);
        }
        @media(max-width:992px) {
            .about-container {
                flex-direction: column;
                gap: 40px;
            }
            .about-content h2 {
                font-size: 32px;
            }
            .about-image img {
                height: 320px;
            }
        }
        @media(max-width:576px) {
            .about-points {
                grid-template-columns: 1fr;
            }
            .about-content h2 {
                font-size: 28px;
            }
            .about-content p {
                font-size: 16px;
            }
        }