@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Lora:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&display=swap");


/* ==========================================================================
   SECTION: variables.css
   ========================================================================== */

:root {
  /* ── Backgrounds ── */
  --bg-white: #ffffff;
  --bg-brown: #252116;
  --bg-cream: #F5F0E8;
  --bg-gold-gradient: linear-gradient(135deg, #C9993A 0%, #A87C28 50%, #8B6820 100%);

  /* ── Colours ── */
  --color-primary: #B8892A;
  --color-primary-light: #D4A94E;
  --color-white: #ffffff;
  --color-dark: #1A1A1A;
  --color-text: #444444;
  --color-text-light: #777777;
  --color-nav-inactive: #ffffff;
  --color-border: rgba(184, 137, 42, 0.2);

  /* ── Typography ── */
  --font-body: "Inter", sans-serif;
  --font-heading: "Lora", serif;

  /* ── Layout ── */
  --container-max: 1200px;
  --section-pad-y: clamp(64px, 8vw, 120px);
  --section-pad-x: clamp(20px, 4vw, 48px);

  /* ── Hero / Navbar ── */
  --hero-overlay: rgba(0, 0, 0, 0.25);
  --navbar-height: 82px;
  --navbar-logo-height: 58px;
}

/* ── Helper class ── */
.bg-brown {
  background-color: var(--bg-brown);
}

/* ── Criss-cross decorative pattern ── */
.criss-cross {
  position: relative;
}
.criss-cross::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 26px,
      rgba(184, 137, 42, 0.06) 26px,
      rgba(184, 137, 42, 0.06) 27px
    ),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 26px,
      rgba(184, 137, 42, 0.06) 26px,
      rgba(184, 137, 42, 0.06) 27px
    );
}
.criss-cross--dark::after {
  background-image:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 26px,
      rgba(184, 137, 42, 0.1) 26px,
      rgba(184, 137, 42, 0.1) 27px
    ),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 26px,
      rgba(184, 137, 42, 0.1) 26px,
      rgba(184, 137, 42, 0.1) 27px
    );
}

/* ── Image placeholder ── */
.img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #E8E0D4 0%, #D4CCC0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 4px;
}

/* ── Scroll-reveal base ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal--visible {
  opacity: 1;
  transform: translateY(0);
}


/* ==========================================================================
   SECTION: components/buttons.css
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s ease, opacity 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: 14px 28px;
}

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

.btn-hero {
  background-color: var(--color-white);
  color: var(--color-primary);
  padding: 14px 32px;
}

.btn-hero:hover {
  opacity: 0.92;
}

.btn-outline {
  border: 1.5px solid var(--color-primary);
  color: var(--color-primary);
  background: transparent;
  padding: 14px 28px;
}

.btn-outline:hover {
  background: var(--color-primary);
  color: #fff;
}


/* ==========================================================================
   SECTION: components/navbar.css
   ========================================================================== */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--color-primary);
  background-color: var(--bg-brown);
}

.navbar__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  max-width: 1440px;
  margin: 0 auto;
  padding: 12px 48px;
  min-height: var(--navbar-height);
}

.navbar__brand {
  grid-column: 1;
  display: flex;
  align-items: center;
  text-decoration: none;
  justify-self: start;
}

.navbar__logo {
  display: block;
  height: var(--navbar-logo-height);
  width: auto;
  flex-shrink: 0;
}

.navbar__nav {
  grid-column: 2;
  justify-self: center;
}

.navbar__list {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navbar__link {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--color-nav-inactive);
  transition: color 0.2s ease;
  white-space: nowrap;
}

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

.navbar__link--active {
  color: var(--color-primary);
}

.navbar__cta--desktop {
  grid-column: 3;
  justify-self: end;
}

.navbar__cta--menu {
  display: none;
}

.navbar__toggle {
  display: none;
  grid-column: 3;
  justify-self: end;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.navbar__toggle-bar {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-white);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.navbar--open .navbar__toggle-bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.navbar--open .navbar__toggle-bar:nth-child(2) {
  opacity: 0;
}

.navbar--open .navbar__toggle-bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.navbar__backdrop {
  display: none;
}

body.navbar-menu-open {
  overflow: hidden;
}

@media (max-width: 1023px) {
  :root {
    --navbar-height: 70px;
    --navbar-logo-height: 46px;
  }

  .navbar__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 12px 20px;
  }

  .navbar__brand {
    grid-column: auto;
    min-width: 0;
  }

  .navbar__cta--desktop {
    display: none;
  }

  .navbar__toggle {
    display: flex;
    flex-shrink: 0;
  }

  .navbar__nav {
    position: fixed;
    top: var(--navbar-height);
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    width: 100vw;
    max-width: 100vw;
    margin: 0;
    padding: 40px 24px 48px;
    background-color: var(--bg-brown);
    border-top: 1px solid rgba(184, 137, 42, 0.35);
    overflow-y: auto;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(100%);
    transition: transform 0.35s ease, visibility 0.35s ease;
  }

  .navbar--open .navbar__nav {
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
  }

  .navbar__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
  }

  .navbar__list li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .navbar__list li:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .navbar__link {
    display: block;
    font-size: 14px;
    padding: 18px 0;
  }

  .navbar__cta--menu {
    display: inline-flex;
    align-self: stretch;
    justify-content: center;
    margin-top: 32px;
    width: 100%;
    padding: 16px 28px;
  }

  .navbar__backdrop {
    display: block;
    position: fixed;
    top: var(--navbar-height);
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.55);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s ease, visibility 0.35s ease;
  }

  .navbar--open .navbar__backdrop {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}

@media (max-width: 480px) {
  :root {
    --navbar-height: 62px;
    --navbar-logo-height: 40px;
  }

  .navbar__inner {
    padding: 10px 16px;
  }

  .navbar__nav {
    padding: 32px 20px 40px;
  }

  .navbar__link {
    font-size: 13px;
    padding: 16px 0;
  }
}


/* ==========================================================================
   SECTION: components/hero.css
   ========================================================================== */

/* ── Hero animation keyframes ── */
@keyframes heroSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroScaleZoom {
  from {
    transform: scale(1.08);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.hero__carousel {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.4s ease-in-out;
  will-change: opacity;
}

.hero__slide--active {
  opacity: 1;
}

.hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__slide--active img {
  animation: heroScaleZoom 2.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: var(--hero-overlay);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  min-height: 100vh;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 48px 72px;
}

.hero__title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-white);
  letter-spacing: -0.01em;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
}

.hero__title-line {
  display: block;
}

.hero__title-line:nth-child(1) {
  animation: heroSlideUp 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

.hero__title-line:nth-child(2) {
  animation: heroSlideUp 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
}

.hero__accent {
  display: block;
  width: 72px;
  height: 2px;
  margin-top: 20px;
  background-color: var(--color-primary);
  animation: heroSlideUp 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.6s both;
}

.hero__cta {
  margin-top: 28px;
  animation: heroSlideUp 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.8s both;
}

@media (max-width: 768px) {
  .hero__content {
    padding-bottom: 150px;
    padding-left: 20px;
    padding-right: 20px;
  }
}


/* ==========================================================================
   SECTION: components/stats-bar.css
   ========================================================================== */

/* =============================================
   STATS BAR
   ============================================= */
.stats-bar {
  background-color: var(--bg-cream);
  padding: clamp(45px, 4vw, 60px) 0;
  border-top: 1px solid rgba(184, 137, 42, 0.15);
  border-bottom: 1px solid rgba(184, 137, 42, 0.15);
}

.stats-bar__inner {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 min(80px, 6vw);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.stats-bar__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 8px 15px;
}

.stats-bar__value {
  font-family: var(--font-heading);
  font-size: clamp(1.55rem, 2.7vw, 2.4rem);
  font-weight: 600;
  color: var(--color-primary);
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.stats-bar__label {
  font-family: var(--font-body);
  font-size: clamp(0.76rem, 1.22vw, 0.88rem);
  font-weight: 600;
  color: #7C7667;
  margin-top: 12px;
  text-transform: none;
  letter-spacing: 0.02em;
}

.stats-bar__divider {
  width: 1px;
  height: 52px;
  background-color: var(--color-primary);
  opacity: 0.2;
  flex-shrink: 0;
}


/* ── Responsive ── */
@media (max-width: 768px) {
  .stats-bar {
    padding: 35px 0;
  }
  .stats-bar__inner {
    flex-wrap: wrap;
    row-gap: 24px;
  }
  .stats-bar__item {
    flex: 0 0 50%;
    padding: 6px 10px;
  }
  .stats-bar__item:nth-child(odd) {
    border-right: 1px solid rgba(184, 137, 42, 0.1);
  }
  .stats-bar__divider {
    display: none;
  }
}



/* ==========================================================================
   SECTION: components/about.css
   ========================================================================== */

/* =============================================
   ABOUT – "A New Chapter in Urban Living"
   ============================================= */
.about {
  padding: var(--section-pad-y) 0;
  background-color: var(--bg-white);
  overflow: hidden;
}

.about__inner {
  position: relative;
  z-index: 2;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--section-pad-x);
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: start;
}

/* ── Left column ── */
.about__heading-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* "WHO WE ARE" label */
.about__label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 20px;
}

/* Main heading */
.about__title {
  font-family: var(--font-heading);
  font-size: clamp(1.85rem, 3.5vw, 2.8rem);
  font-weight: 400;         /* normal base weight */
  color: var(--color-dark);
  line-height: 1.25;
  margin: 0 0 24px;
}

.about__title strong,
.about-story__title strong {
  font-weight: 700;
}

/* Gold accent bar — sits below the heading in left col */
.about__accent {
  display: block;
  width: 52px;
  height: 2px;
  background-color: var(--color-primary);
  margin-top: 4px;
}

/* ── Right column ── */
.about__content-col {
  padding-top: 48px; /* align roughly with where text starts */
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about__text {
  font-family: var(--font-body);
  font-size: 0.94rem;
  line-height: 1.8;
  color: #444444;
  margin: 0;
}

/* READ MORE ABOUT US link */
.about__readmore {
  display: inline-flex;
  align-items: center;
  margin-top: 8px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-primary);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.about__readmore:hover {
  opacity: 0.78;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .about__inner {
    gap: 56px;
  }
}

@media (max-width: 820px) {
  .about__inner {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .about__content-col {
    padding-top: 32px;
  }
}

@media (max-width: 480px) {
  .about {
    padding: 56px 0;
  }
  .about__title {
    font-size: clamp(1.75rem, 6vw, 2.4rem);
  }
}


/* ==========================================================================
   SECTION: components/about-us-page.css
   ========================================================================== */

/* =============================================
   ABOUT US PAGE COMPONENT STYLES
   ============================================= */

/* ── Inner Page Hero Section ── */
.inner-page-hero {
  padding: clamp(32px, 4vw, 56px) 0;
  background-color: var(--bg-brown);
  position: relative;
  overflow: hidden;
}

.inner-page-hero--first {
  padding-top: calc(clamp(32px, 4vw, 56px) + var(--navbar-height));
}

.inner-page-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--section-pad-x);
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}

/* ── Left Column: Content ── */
.inner-page-hero__content-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Label above heading */
.inner-page-hero__label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-primary-light);
  margin-bottom: 24px;
}

/* Heading: Built on Legacy. Driven by Vision. */
.inner-page-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 400;
  color: var(--color-white);
  line-height: 1.25;
  margin: 0;
}

/* Gold highlighted text in heading */
.inner-page-hero__title .text-gold {
  color: var(--color-primary-light);
}

/* Horizontal line under heading */
.inner-page-hero__accent-line {
  display: block;
  width: 90px;
  height: 2px;
  background-color: var(--color-primary);
  margin: 20px 0 28px;
}

/* Paragraph text */
.inner-page-hero__text {
  font-family: var(--font-body);
  font-size: 0.96rem;
  line-height: 1.8;
  color: #DED9D0;
  margin: 0;
  max-width: 560px;
}

/* ── Right Column: Image with frame ── */
.inner-page-hero__image-col {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Golden frame enclosing the image */
.inner-page-hero__image-frame {
  border: 1px solid var(--color-primary);
  padding: 16px;
  position: relative;
  width: 100%;
  max-width: 680px;
  transition: transform 0.4s ease;
}

.inner-page-hero__image-frame:hover {
  transform: scale(1.01);
}

/* Image inside the frame */
.inner-page-hero__img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}

/* ── Responsive Layout ── */
@media (max-width: 1024px) {
  .inner-page-hero__inner {
    gap: 48px;
  }
}

@media (max-width: 820px) {
  .inner-page-hero {
    padding: 80px 0;
  }
  .inner-page-hero--first {
    padding-top: calc(80px + var(--navbar-height));
  }
  .inner-page-hero__inner {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  
  .inner-page-hero__content-col {
    align-items: flex-start;
  }

  .inner-page-hero__text {
    max-width: 100%;
  }

  .inner-page-hero__image-frame {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .inner-page-hero__title {
    font-size: clamp(2rem, 8vw, 2.6rem);
  }

  .inner-page-hero__image-frame {
    padding: 10px;
  }
}

/* ── 1. Stats Bar Customizations ── */
.stats-bar {
  border-bottom: 1px solid rgba(184, 137, 42, 0.15);
}

/* ── 2. Our Story Section ── */
.about-story {
  padding: var(--section-pad-y) 0;
  background-color: var(--bg-white);
  overflow: hidden;
}

.about-story__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--section-pad-x);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-story__image-col {
  display: flex;
  justify-content: center;
}

.about-story__image-wrapper {
  position: relative;
  width: 100%;
}

/* Gold L-shaped frame overlay */
.about-story__corner-bracket {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 48px;
  height: 48px;
  z-index: 3;
  pointer-events: none;
  border-top: 2px solid var(--color-primary);
  border-right: 2px solid var(--color-primary);
}

.about-story__img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
}

.about-story__content-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.about-story__label {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 20px;
}

.about-story__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 400;
  color: var(--color-dark);
  line-height: 1.25;
  margin: 0 0 16px;
}

.about-story__accent {
  display: block;
  width: 90px;
  height: 2px;
  background-color: var(--color-primary);
  margin: 0 0 28px;
}

.about-story__text {
  font-family: var(--font-body);
  font-size: 0.94rem;
  line-height: 1.8;
  color: var(--color-text);
  margin: 0 0 20px;
}

/* Gold Quote Card */
.about-story__quote {
  margin-top: 16px;
  background-color: var(--bg-cream);
  border-left: 3px solid var(--color-primary);
  padding: 24px 32px;
}

.about-story__quote-text {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--color-primary);
  margin: 0;
}

/* ── 3. Our Purpose Section ── */
.about-purpose {
  padding: var(--section-pad-y) 0;
  background-color: var(--bg-brown);
  color: var(--color-white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-purpose__inner {
  position: relative;
  z-index: 2;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--section-pad-x);
}

.about-purpose__header {
  margin-bottom: 56px;
}

.about-purpose__label {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-primary-light);
  display: block;
  margin-bottom: 16px;
}

.about-purpose__title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 400;
  margin: 0;
}

.about-purpose__accent {
  display: block;
  width: 64px;
  height: 2px;
  background-color: var(--color-primary-light);
  margin: 16px auto 0;
}

.about-purpose__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: var(--container-max);
  margin: 0 auto;
}

.about-purpose__card {
  background-color: #2b271d;
  border: 1px solid rgba(184, 137, 42, 0.25);
  border-top: 3px solid var(--color-primary-light);
  border-radius: 4px;
  padding: 48px 40px;
  text-align: left;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.about-purpose__card:hover {
  border-color: rgba(184, 137, 42, 0.6);
  border-top-color: var(--color-primary-light);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.about-purpose__card-title {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--color-primary-light);
  margin: 0 0 20px;
}

.about-purpose__card-text {
  font-family: var(--font-body);
  font-size: 0.94rem;
  line-height: 1.8;
  color: #DED9D0;
  margin: 0;
}

/* ── 4. Leadership Section ── */
.about-leadership {
  padding: var(--section-pad-y) 0;
  background-color: #F9F7F3; /* light cream backdrop */
}

.about-leadership__inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 var(--section-pad-x);
}

.about-leadership__header {
  text-align: center;
  margin-bottom: 64px;
}

.about-leadership__label {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-primary);
  display: block;
  margin-bottom: 16px;
}

.about-leadership__title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--color-dark);
  line-height: 1.25;
  margin: 0;
}

.about-leadership__list {
  display: flex;
  flex-direction: column;
  gap: 56px;
  max-width: 1360px;
  margin: 0 auto;
}

.about-leadership__item {
  display: grid;
  grid-template-columns: 4fr 8fr;
  background-color: var(--bg-white);
  border: 1px solid rgba(184, 137, 42, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  border-radius: 4px;
  overflow: hidden;
}

.about-leadership__item--reverse {
  grid-template-columns: 8fr 4fr;
}

.about-leadership__item--reverse .about-leadership__photo-wrapper {
  grid-column: 2;
  grid-row: 1;
}

.about-leadership__item--reverse .about-leadership__info {
  grid-column: 1;
  grid-row: 1;
}

.about-leadership__photo-wrapper {
  overflow: hidden;
  position: relative;
  background-color: #252116;
}

.about-leadership__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.about-leadership__item:hover .about-leadership__photo {
  transform: scale(1.03);
}

.about-leadership__info {
  padding: 48px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-leadership__name {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--color-dark);
  margin: 0 0 6px;
}

.about-leadership__role {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  text-transform: uppercase;
}

.about-leadership__divider {
  width: 100%;
  height: 1px;
  border: none;
  background-color: rgba(184, 137, 42, 0.18);
  margin: 20px 0;
}

.about-leadership__bio {
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--color-text);
  margin: 0 0 24px;
}

.about-leadership__bio p {
  margin: 0 0 16px;
  line-height: 1.8;
}

.about-leadership__bio p:last-child {
  margin-bottom: 0;
}

.about-leadership__tags {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  color: var(--color-primary);
  text-transform: uppercase;
  font-weight: 600;
  display: block;
  margin-top: auto;
  padding-top: 16px;
}

.about-leadership__links {
  display: flex;
  gap: 16px;
}

.about-leadership__link {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.about-leadership__link:hover {
  color: var(--color-primary-light);
}

/* ── 5. Nav Durga Connection Section ── */
.about-connection {
  padding: var(--section-pad-y) 0;
  background-color: var(--bg-brown);
  color: var(--color-white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-connection__inner {
  position: relative;
  z-index: 2;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--section-pad-x);
}

.about-connection__header {
  margin-bottom: 56px;
}

.about-connection__label {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-primary-light);
  display: block;
  margin-bottom: 16px;
}

.about-connection__title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 400;
  margin: 0;
  line-height: 1.25;
}

.about-connection__accent {
  display: block;
  width: 64px;
  height: 2px;
  background-color: var(--color-primary-light);
  margin: 16px auto 0;
}

.about-connection__box {
  background-color: #2b271d;
  border: 1px solid rgba(184, 137, 42, 0.25);
  border-top: 3px solid var(--color-primary-light);
  padding: 64px 48px;
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 4px;
  text-align: left;
}

.about-connection__text {
  font-family: var(--font-body);
  font-size: 0.96rem;
  line-height: 1.8;
  color: #DED9D0;
  max-width: 720px;
  margin: 0 auto 20px;
}

.about-connection__text:last-of-type {
  margin-bottom: 0;
}

/* ── 6. Looking Ahead Section ── */
.about-looking-ahead {
  padding: var(--section-pad-y) 0;
  background-color: var(--bg-white);
  text-align: center;
}

.about-looking-ahead__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--section-pad-x);
}

.about-looking-ahead__label {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-primary);
  display: block;
  margin-bottom: 20px;
}

.about-looking-ahead__title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--color-dark);
  margin: 0;
}

.about-looking-ahead__accent {
  display: block;
  width: 64px;
  height: 2px;
  background-color: var(--color-primary);
  margin: 16px auto 32px;
}

.about-looking-ahead__content {
  max-width: 1000px;
  margin: 0 auto;
}

.about-looking-ahead__text {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--color-text);
  margin: 0 0 20px;
}

.about-looking-ahead__text:last-child {
  margin-bottom: 0;
}

/* ── Responsive adjustments ── */
@media (max-width: 900px) {
  .about-story__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about-story__image-wrapper {
    max-width: 100%;
  }
  .about-purpose__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .about-leadership__item {
    display: flex;
    flex-direction: column;
  }
  .about-leadership__item--reverse .about-leadership__photo-wrapper,
  .about-leadership__item--reverse .about-leadership__info {
    grid-column: unset;
    grid-row: unset;
  }
  .about-leadership__photo-wrapper {
    flex-shrink: 0;
    aspect-ratio: unset;
    max-height: none;
  }
  .about-leadership__photo {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: top center;
  }
  .about-leadership__item:hover .about-leadership__photo {
    transform: none;
  }
  .about-leadership__info {
    padding: 32px 24px;
  }
}

@media (max-width: 480px) {
  .about-connection__box {
    padding: 40px 20px;
  }
  .about-purpose__card {
    padding: 32px 24px;
  }
}


/* ==========================================================================
   SECTION: components/promise.css
   ========================================================================== */

/* =============================================
   OUR PROMISE
   ============================================= */
.promise {
  background-color: var(--bg-cream);
  padding: clamp(40px, 5vw, 70px) 0;
}

.promise__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--section-pad-x);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* "OUR PROMISE" eyebrow label */
.promise__label {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 18px;
}

/* Main heading — uses italic for the second part */
.promise__title {
  font-family: var(--font-heading);
  font-size: clamp(1.85rem, 3.5vw, 2.8rem);
  font-weight: 400;
  color: var(--color-dark);
  line-height: 1.3;
  margin: 0 0 24px;
}

.promise__title em {
  font-style: italic;
}

/* Gold accent bar */
.promise__accent {
  display: block;
  width: 48px;
  height: 2px;
  background-color: var(--color-primary);
  margin-bottom: 36px;
}

/* ── Pillars row ── */
.promise__pillars {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  gap: 24px;
}

.promise__pillar {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

/* Icon */
.promise__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  color: var(--color-primary);
  font-size: 4.2rem;
  flex-shrink: 0;
}

.promise__icon i {
  display: inline-block;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), color 0.4s ease, filter 0.4s ease;
  filter: drop-shadow(0 3px 6px rgba(184, 137, 42, 0.12)); /* Very slight, soft gold drop shadow */
}

.promise__pillar {
  cursor: pointer;
  transition: transform 0.3s ease;
}

.promise__pillar:hover {
  transform: translateY(-4px);
}

.promise__pillar:hover .promise__icon i {
  color: var(--color-primary-light);
  filter: drop-shadow(0 6px 12px rgba(184, 137, 42, 0.22)); /* Shadow softens as the icon floats up */
}

/* 1. Star slow spin */
@keyframes star-slow-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.promise__pillar:hover .fa-star {
  animation: star-slow-spin 8s linear infinite;
}

/* 2. Gem pulse bounce */
@keyframes gem-pulse {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-8px) scale(1.06); }
}
.promise__pillar:hover .fa-gem {
  animation: gem-pulse 2s ease-in-out infinite;
}

/* 3. Pen ruler wiggle */
@keyframes ruler-wiggle {
  0%, 100% { transform: rotate(0) scale(1); }
  25% { transform: rotate(-8deg) scale(1.04); }
  75% { transform: rotate(8deg) scale(1.04); }
}
.promise__pillar:hover .fa-pen-ruler {
  animation: ruler-wiggle 1.5s ease-in-out infinite;
}

/* 4. Handshake shake */
@keyframes hand-shake {
  0%, 100% { transform: scale(1) rotate(0); }
  20%, 60% { transform: scale(1.04) rotate(-3deg); }
  40%, 80% { transform: scale(1.04) rotate(3deg); }
}
.promise__pillar:hover .fa-handshake {
  animation: hand-shake 1.5s ease-in-out infinite;
}

/* 5. Chart line rise */
@keyframes chart-rise {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-6px) scale(1.06); }
}
.promise__pillar:hover .fa-chart-line {
  animation: chart-rise 1.8s ease-in-out infinite;
}

.promise__pillar-text {
  font-family: var(--font-body);
  font-size: 0.82rem;
  line-height: 1.65;
  color: #5A5347;
  text-align: center;
  margin: 0;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .promise__pillars {
    gap: 16px;
  }
  .promise__icon {
    width: 80px;
    height: 80px;
    font-size: 3rem;
  }
  .promise__pillar-text {
    font-size: 0.75rem;
  }
}

@media (max-width: 640px) {
  .promise__pillars {
    flex-wrap: wrap;
    justify-content: center;
    gap: 36px 20px;
  }
  .promise__pillar {
    flex: 0 0 calc(33.33% - 20px);
    min-width: 100px;
  }
  .promise__accent {
    margin-bottom: 44px;
  }
}

@media (max-width: 400px) {
  .promise__pillar {
    flex: 0 0 calc(50% - 20px);
  }
}


/* ==========================================================================
   SECTION: components/featured-project.css
   ========================================================================== */

/* =============================================
   FEATURED PROJECT – Flagship Project
   ============================================= */

.featured-project {
  background-color: var(--bg-white);
  overflow: hidden;
}

/* Full-bleed 50/50 grid — no inner container */
.featured-project__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 85vh; /* Slightly reduced height (85% of display height) for better balance */
}

/* ── Left: Image column ── */
.featured-project__image-col {
  position: relative;
  overflow: hidden;
  background: #0e0c08;
}

.featured-project__img {
  width: 100%;
  height: 100%;
  border-radius: 0;
  min-height: 480px;
  object-fit: cover;
}

/* Gold corner bracket decoration */
.featured-project__corner-bracket {
  position: absolute;
  top: 24px;
  left: 24px;
  width: 52px;
  height: 52px;
  z-index: 3;
  pointer-events: none;
  /* Top and Left borders only → forms corner bracket */
  border-top: 2.5px solid var(--color-primary);
  border-left: 2.5px solid var(--color-primary);
}

/* ── Right: Info column ── */
.featured-project__info-col {
  padding: clamp(48px, 6vw, 80px) clamp(32px, 5vw, 72px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
}

/* Eyebrow label */
.featured-project__label {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 20px;
  display: block;
}

/* Large project name heading */
.featured-project__name {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 5vw, 4.4rem);
  font-weight: 400;
  color: var(--color-dark);
  line-height: 1.1;
  margin: 0 0 18px;
}

/* Italic gold subtitle */
.featured-project__subtitle {
  font-family: var(--font-heading);
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  font-style: italic;
  color: var(--color-primary);
  margin: 0 0 20px;
}

/* Horizontal gold rule */
.featured-project__rule {
  display: block;
  width: 100%;
  height: 1px;
  background: rgba(184, 137, 42, 0.3);
  margin-bottom: 22px;
}

/* Description text */
.featured-project__desc {
  font-family: var(--font-body);
  font-size: 0.92rem;
  line-height: 1.8;
  color: var(--color-text);
  margin: 0 0 28px;
  max-width: 480px;
}

/* ── Meta info boxes (Location / Type) ── */
.featured-project__meta {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
}

.featured-project__meta-item {
  flex: 1;
  background: rgba(245, 240, 232, 0.7);
  border: 1px solid rgba(184, 137, 42, 0.2);
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.featured-project__meta-label {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.featured-project__meta-value {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--color-dark);
  line-height: 1.4;
}

/* ── CTA Buttons ── */
.featured-project__ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.featured-project__btn {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  padding: 14px 28px;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .featured-project__layout {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .featured-project__img {
    min-height: 460px; /* Increased height for mobile and tablet devices */
    aspect-ratio: 4 / 3; /* Taller visual scale */
    height: auto;
  }

  .featured-project__meta {
    flex-direction: column;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .featured-project__info-col {
    padding: 40px 24px;
  }

  .featured-project__ctas {
    flex-direction: column;
  }

  .featured-project__btn,
  .btn-outline {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}


/* ==========================================================================
   SECTION: components/developments.css
   ========================================================================== */

/* =============================================
   OUR DEVELOPMENTS
   ============================================= */
.developments {
  padding: var(--section-pad-y) 0;
  background-color: var(--bg-cream);
}

.developments__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--section-pad-x);
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Eyebrow Label */
.developments__label {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 18px;
  display: block;
}

/* Main Heading */
.developments__title {
  font-family: var(--font-heading);
  font-size: clamp(1.85rem, 3.5vw, 2.8rem);
  font-weight: 400;
  color: var(--color-dark);
  text-align: center;
  margin: 0 0 24px;
}

/* Accent gold line below heading */
.developments__accent {
  display: block;
  width: 48px;
  height: 2px;
  background-color: var(--color-primary);
  margin-bottom: 60px;
}

/* ── Grid: 2-column layout ── */
.developments__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  width: 100%;
  max-width: 840px;
  margin: 0 auto;
}

/* ── Developments Card ── */
.developments__card {
  background: var(--bg-white);
  border-top: 3px solid var(--color-primary);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.35s ease;
}

.developments__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(37, 33, 22, 0.12);
}

/* Image wrapper */
.developments__image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.developments__img {
  width: 100%;
  height: 100%;
  border-radius: 0;
  object-fit: cover;
  object-position: top;
  transition: transform 0.5s ease;
}

.developments__card:hover .developments__img {
  transform: scale(1.04);
}

/* Absolute badges on image (bottom-right) */
.developments__badge {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background-color: var(--color-primary);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 2px;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* ── Info Container below image ── */
.developments__info {
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
}

/* Card Name */
.developments__card-name {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  font-weight: 400;
  color: var(--color-dark);
  margin: 0 0 10px;
  line-height: 1.25;
}

/* Card Location */
.developments__card-location {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--color-primary);
  margin: 0 0 20px;
}

/* Horizontal grey line */
.developments__card-divider {
  border: 0;
  height: 1px;
  background: rgba(0, 0, 0, 0.08);
  margin: 0 0 22px;
  width: 100%;
}

/* Card directional link */
.developments__card-link {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.25s ease, gap 0.25s ease;
  align-self: flex-start;
}

.developments__card-link:hover {
  color: var(--color-primary-light);
  gap: 12px;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .developments__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .developments {
    padding: clamp(50px, 8vw, 80px) 0;
  }

  .developments__accent {
    margin-bottom: 40px;
  }
}


/* ==========================================================================
   SECTION: components/strength.css
   ========================================================================== */

/* =============================================
   STRENGTH – "The Strength Behind the Vision"
   ============================================= */
.strength {
  position: relative;
  background-color: var(--bg-brown);
  padding: clamp(30px, 4vw, 60px) var(--section-pad-x);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}

.strength__content {
  position: relative;
  z-index: 3;
  max-width: 850px;
  width: 100%;
  margin: 0 auto;
}

.strength__header {
  margin-bottom: 1rem;
}

.strength__ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 0.25rem;
}

.strength__line {
  height: 1px;
  width: clamp(60px, 8vw, 120px);
  background-color: rgba(184, 137, 42, 0.4);
}

.strength__diamond {
  color: var(--color-primary);
  font-size: 0.65rem;
  line-height: 1;
}

.strength__subtitle {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  color: var(--color-primary);
  text-transform: uppercase;
  font-weight: 600;
  display: inline-block;
}

.strength__title {
  font-family: var(--font-heading);
  font-size: clamp(1.85rem, 3.5vw, 2.8rem);
  font-weight: 400;
  color: var(--color-white);
  line-height: 1.25;
  margin: 0 auto 1.25rem auto;
}

.strength__gold {
  color: var(--color-primary);
}

.strength__text {
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  max-width: 720px;
  margin: 0 auto 0.75rem auto;
  font-weight: 300;
}

.strength__text strong {
  color: var(--color-white);
  font-weight: 600;
}

.strength__text:last-of-type {
  margin-bottom: 1.5rem;
}

.strength__bottom-line {
  display: block;
  width: 60px;
  height: 2px;
  background-color: var(--color-primary);
  margin: 0 auto;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .strength {
    padding: clamp(60px, 8vw, 85px) var(--section-pad-x);
  }
  .strength__text:last-of-type {
    margin-bottom: 2rem;
  }
}


/* ==========================================================================
   SECTION: components/leadership.css
   ========================================================================== */

/* =============================================
   LEADERSHIP
   ============================================= */
.leadership {
  padding: var(--section-pad-y) 0;
  background-color: var(--bg-cream);
  overflow: hidden;
}

.leadership__inner {
  max-width: 1360px; /* Expanded container width to give card more breathing room */
  margin: 0 auto;
  padding: 0 var(--section-pad-x);
  display: grid;
  grid-template-columns: 280px 1fr; /* Compacted left column to maximize card width */
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

/* ── Left Column: Title ── */
.leadership__header-col {
  display: flex;
  flex-direction: column;
}

.leadership__label {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 1.25rem;
  font-weight: 600;
  display: inline-block;
}

.leadership__title {
  font-family: var(--font-heading);
  font-size: clamp(1.85rem, 3.5vw, 2.8rem);
  font-weight: 500;
  color: var(--color-dark);
  line-height: 1.2;
  margin: 0 0 1.5rem;
}

.leadership__accent {
  display: block;
  width: 60px;
  height: 2px;
  background-color: var(--color-primary);
}

/* ── Right Column: Card with Shri Nimish Gadodia ── */
.leadership__card {
  display: flex;
  background-color: var(--color-white);
  border: 1px solid rgba(184, 137, 42, 0.15);
  border-top: 4px solid var(--color-primary);
  border-radius: 4px;
  position: relative;
  box-shadow: 0 12px 40px rgba(37, 33, 22, 0.05);
  overflow: hidden;
  align-items: stretch;
}

.leadership__card-content {
  flex: 1;
  padding: clamp(2rem, 4vw, 3.5rem);
}

.leadership__card-name {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.5vw, 2.15rem);
  font-weight: 500;
  color: var(--color-dark);
  margin: 0 0 0.5rem 0;
}

.leadership__card-tags {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  color: var(--color-primary);
  text-transform: uppercase;
  font-weight: 600;
  display: block;
  margin-bottom: 1.25rem;
}

.leadership__card-divider {
  border: 0;
  height: 1px;
  background-color: rgba(184, 137, 42, 0.15);
  margin: 0 0 1.5rem 0;
}

.leadership__card-desc {
  font-family: var(--font-body);
  font-size: clamp(0.85rem, 1.8vw, 0.95rem);
  color: var(--color-text);
  line-height: 1.7;
  margin: 0 0 2rem 0;
  font-weight: 400;
}

.leadership__card-cta {
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s ease, transform 0.3s ease;
}

.leadership__card-cta:hover {
  color: var(--color-primary-light);
  transform: translateX(4px);
}

.leadership__card-image-col {
  width: 250px;
  flex-shrink: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  border-radius: 0 4px 4px 0;
  background-color: #252116;
}

.leadership__card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.5s ease;
}

.leadership__card:hover .leadership__card-img {
  transform: scale(1.03);
}

/* ── Responsive ── */
@media (max-width: 992px) {
  .leadership__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .leadership__header-col {
    text-align: center;
    align-items: center;
  }
  
  .leadership__card {
    flex-direction: column-reverse;
  }
  
  .leadership__card-image-col {
    width: 100%;
    height: 320px;
    border-radius: 4px 4px 0 0;
  }
  
  .leadership__card-img {
    object-fit: contain;
    object-position: bottom center;
  }
}

@media (max-width: 480px) {
  .leadership {
    padding: 48px 0;
  }
  
  .leadership__card-content {
    padding: 2rem 1.5rem;
  }
}


/* ==========================================================================
   SECTION: components/news.css
   ========================================================================== */

/* =============================================
   IN THE NEWS
   ============================================= */
.news {
  padding: var(--section-pad-y) 0;
  background-color: var(--bg-white);
  position: relative;
}

.news__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--section-pad-x);
  position: relative;
  z-index: 2; /* Elevate card content above background criss-cross lines */
}

.news__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.news__label {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 1.25rem;
  font-weight: 600;
  display: inline-block;
}

.news__title {
  font-family: var(--font-heading);
  font-size: clamp(1.85rem, 3.5vw, 2.8rem);
  font-weight: 500;
  color: var(--color-dark);
  text-align: center;
  margin: 0 0 1.25rem 0;
}

.news__accent {
  display: block;
  width: 60px;
  height: 2px;
  background-color: var(--color-primary);
  margin: 0 auto 3.5rem auto;
}

/* ── Grid ── */
.news__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  width: 100%;
}

/* ── Card ── */
.news__card {
  background-color: var(--bg-cream);
  border-radius: 4px;
  border: 1px solid rgba(184, 137, 42, 0.1);
  padding: clamp(2rem, 3vw, 2.5rem) clamp(1.5rem, 2.5vw, 2rem);
  box-shadow: 0 4px 12px rgba(37, 33, 22, 0.02);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
}

.news__card:hover {
  transform: translateY(-5px);
  border-color: rgba(184, 137, 42, 0.3);
  box-shadow: 0 12px 32px rgba(37, 33, 22, 0.06);
}

.news__card-date-wrapper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.news__card-date-rule {
  display: block;
  width: 2px;
  height: 14px;
  background-color: var(--color-primary);
}

.news__card-date {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--color-primary);
  font-weight: 600;
  letter-spacing: 0.08em;
}

.news__card-title {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  font-weight: 500;
  color: var(--color-dark);
  line-height: 1.45;
  margin: 0 0 1.25rem 0;
}

.news__card-excerpt {
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--color-text);
  margin: 0 0 2.25rem 0;
  flex: 1;
}

.news__card-cta {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  color: var(--color-primary);
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s ease, transform 0.3s ease;
  align-self: flex-start;
}

.news__card-cta:hover {
  color: var(--color-primary-light);
  transform: translateX(4px);
}

/* ── Responsive ── */
@media (max-width: 992px) {
  .news__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .news__accent {
    margin-bottom: 2.5rem;
  }
}

@media (max-width: 768px) {
  .news__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .news {
    padding: clamp(50px, 8vw, 80px) 0;
  }
}


/* ==========================================================================
   SECTION: components/cta-banner.css
   ========================================================================== */

/* =============================================
   CTA BANNER – "Build the Future with Us"
   ============================================= */
.cta-banner {
  padding: 40px 0;
  background-color: var(--color-dark); /* Solid dark outer background to match the screen */
  position: relative;
}

.cta-banner__inner {
  max-width: 1360px; /* Expanded container width to make the card wider and more prominent */
  margin: 0 auto;
  padding: 0 var(--section-pad-x);
}

.cta-banner__card {
  background-color: var(--bg-brown); /* Boxed container card background (#252116) */
  border: 1px solid rgba(184, 137, 42, 0.35); /* Elegant gold single line frame */
  border-radius: 4px;
  padding: clamp(1.25rem, 2.5vw, 2rem) clamp(2rem, 4vw, 4.5rem);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-banner__header {
  margin-bottom: 1.5rem;
}

.cta-banner__label {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
  font-weight: 600;
  display: block;
}

.cta-banner__title {
  font-family: var(--font-heading);
  font-size: clamp(1.85rem, 3.5vw, 2.8rem);
  font-weight: 400;
  color: var(--color-white);
  line-height: 1.25;
  margin: 0 0 1rem;
}

.cta-banner__divider {
  display: block;
  width: 50px;
  height: 2px;
  background-color: var(--color-primary);
  margin: 1rem auto 0;
}

/* ── Content Grid ── */
.cta-banner__content {
  display: grid;
  grid-template-columns: 1.1fr 1.3fr;
  gap: clamp(24px, 4vw, 40px);
  align-items: center;
  text-align: left;
  width: 100%;
  position: relative;
  z-index: 2; /* Elevate grid elements above the card's background criss-cross pattern */
}

/* ── Left Image Frame ── */
.cta-banner__image-wrapper {
  border: 1px solid rgba(184, 137, 42, 0.35);
  padding: 6px;
  background-color: rgba(255, 255, 255, 0.02);
  border-radius: 2px;
  overflow: hidden;
  width: 100%;
}

.cta-banner__img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.cta-banner__card:hover .cta-banner__img {
  transform: scale(1.02);
}

/* ── Right Info ── */
.cta-banner__info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.cta-banner__desc {
  font-family: var(--font-body);
  font-size: clamp(0.88rem, 1.8vw, 0.96rem);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 1.5rem 0;
  font-weight: 300;
}

/* ── View Careers Button (Solid White) ── */
.cta-banner__btn {
  background-color: var(--color-white);
  color: var(--color-primary);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 15px 36px;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-banner__btn:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184, 137, 42, 0.25);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .cta-banner {
    padding: 32px 0;
  }
  
  .cta-banner__card {
    padding: 2rem 1.5rem;
  }
  
  .cta-banner__header {
    margin-bottom: 1.75rem;
  }
  
  .cta-banner__content {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  
  .cta-banner__info {
    align-items: center;
  }
  
  .cta-banner__desc {
    margin-bottom: 1.5rem;
  }
}

.btn-cta:hover {
  opacity: 0.92;
}

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


/* ==========================================================================
   SECTION: components/contact.css
   ========================================================================== */

/* =============================================
   CONTACT – "Let's Start the Conversation"
   ============================================= */
.contact {
  padding: clamp(60px, 8vw, 100px) 0;
  background-color: var(--bg-cream); /* Warm, premium cream color to match the screen exactly */
  text-align: center;
}

.contact__inner {
  max-width: 850px;
  margin: 0 auto;
  padding: 0 var(--section-pad-x);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact__title {
  font-family: var(--font-heading);
  font-size: clamp(1.85rem, 3.5vw, 2.8rem);
  font-weight: 500;
  color: var(--color-dark);
  margin: 0;
}

.contact__accent {
  display: block;
  width: 60px;
  height: 2px;
  background-color: var(--color-primary);
  margin: 1.25rem auto 1.5rem auto;
}

.contact__desc {
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  line-height: 1.75;
  color: #5A5347;
  margin: 0 0 3rem 0;
  font-weight: 400;
}

/* ── Button Portal Row ── */
.contact__portal {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
}

.contact__portal-btn {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 4px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  min-width: 180px;
}

/* Primary Button (Solid Gold) */
.contact__portal-btn--primary {
  background-color: var(--color-primary);
  border: 1px solid var(--color-primary);
  color: var(--color-white);
}

.contact__portal-btn--primary:hover {
  background-color: var(--color-primary-light);
  border-color: var(--color-primary-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184, 137, 42, 0.25);
}

/* Outline Button (Solid White with Gold Border) */
.contact__portal-btn--outline {
  background-color: var(--color-white);
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
}

.contact__portal-btn--outline:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184, 137, 42, 0.25);
}

/* ── Responsive ── */
@media (max-width: 680px) {
  .contact__portal {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
  
  .contact__portal-btn {
    width: 100%;
  }
  
  .contact__desc br {
    display: none;
  }
  
  .contact {
    padding: 56px 0;
  }
}


/* ==========================================================================
   SECTION: components/enquire-modal.css
   ========================================================================== */

/* =============================================
   ENQUIRE MODAL
   ============================================= */
.enquire-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.enquire-modal--open {
  opacity: 1;
  pointer-events: auto;
}

/* Backdrop */
.enquire-modal__backdrop {
  position: absolute;
  inset: 0;
  background-color: rgba(20, 16, 8, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* Card */
.enquire-modal__card {
  position: relative;
  z-index: 2;
  background-color: var(--color-white);
  border-top: 4px solid var(--color-primary);
  border-radius: 4px;
  width: 90%;
  max-width: 500px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.25);
  transform: translateY(20px);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  padding: clamp(2rem, 4vw, 3rem);
  max-height: 90vh;
  overflow-y: auto;
}

.enquire-modal--open .enquire-modal__card {
  transform: translateY(0);
}

/* Close Button */
.enquire-modal__close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: transparent;
  border: none;
  font-size: 1.75rem;
  color: var(--color-primary);
  cursor: pointer;
  line-height: 1;
  padding: 4px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.enquire-modal__close:hover {
  color: var(--color-primary-light);
  transform: rotate(90deg);
}

/* Header */
.enquire-modal__header {
  text-align: center;
  margin-bottom: 2rem;
}

.enquire-modal__label {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: block;
}

.enquire-modal__title {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  color: var(--color-dark);
  margin: 0 0 0.75rem 0;
  font-weight: 500;
}

.enquire-modal__divider {
  display: block;
  width: 50px;
  height: 2px;
  background-color: var(--color-primary);
  margin: 0.75rem auto 0;
}

/* Form Styles */
.enquire-modal__form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.enquire-modal__field {
  display: flex;
  flex-direction: column;
  position: relative;
}

.enquire-modal__field input,
.enquire-modal__field select,
.enquire-modal__field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-dark);
  background: transparent;
  border: none;
  border-bottom: 1.5px solid rgba(184, 137, 42, 0.2);
  padding: 10px 0;
  outline: none;
  transition: border-bottom-color 0.3s ease;
}

.enquire-modal__field select {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23B8892A'%3E%3Cpath d='M7 10l5 5 5-5H7z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 20px;
  padding-right: 24px;
}

.enquire-modal__field textarea {
  resize: vertical;
  min-height: 80px;
  border: 1px solid rgba(184, 137, 42, 0.2);
  border-radius: 4px;
  padding: 10px 12px;
}

.enquire-modal__field input:focus,
.enquire-modal__field select:focus {
  border-bottom-color: var(--color-primary);
}

.enquire-modal__field textarea:focus {
  border-color: var(--color-primary);
}

.enquire-modal__field label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
  font-weight: 500;
}

/* Submit Button */
.enquire-modal__submit {
  background-color: var(--color-primary);
  color: var(--color-white);
  border: 1px solid var(--color-primary);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 15px 0;
  width: 100%;
  border-radius: 4px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(184, 137, 42, 0.15);
  transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  margin-top: 1rem;
}

.enquire-modal__submit:hover {
  background-color: var(--color-primary-light);
  border-color: var(--color-primary-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(184, 137, 42, 0.25);
}

/* Success State Container */
.enquire-modal__success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 0;
}

.enquire-modal__success-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: rgba(184, 137, 42, 0.1);
  color: var(--color-primary);
  font-size: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.enquire-modal__success-title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--color-dark);
  margin: 0 0 1rem;
}

.enquire-modal__success-text {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text);
  line-height: 1.6;
  margin: 0;
}


/* ==========================================================================
   SECTION: components/footer.css
   ========================================================================== */

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background-color: var(--bg-brown);
  border-top: 4px solid var(--color-primary); /* Thick gold top border rule */
  padding: 60px 0 30px;
  position: relative;
}

.footer__inner {
  max-width: 1360px; /* Wider layout container aligned with leadership and careers cards */
  margin: 0 auto;
  padding: 0 var(--section-pad-x);
}

/* ── Main content split: Brand / Info Blocks ── */
.footer__main {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(32px, 5vw, 64px);
  padding-bottom: 40px;
}

.footer__brand-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
}

.footer__logo {
  width: 200px;
  height: auto;
  display: block;
}

.footer__tagline {
  font-family: var(--font-body);
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  max-width: 360px;
}

/* ── Right Content Block: Links + Contact details ── */
.footer__info-block {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: flex-start;
}

/* Horizontal Nav List */
.footer__nav {
  width: 100%;
}

.footer__nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(16px, 3vw, 40px);
}

.footer__nav-link {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  display: inline-block;
}

.footer__nav-link:hover {
  color: var(--color-primary-light);
}

/* Contact Details */
.footer__contact-details {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  text-align: left;
}

.footer__address {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  line-height: 1.6;
}

.footer__comms {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.footer__contact-link {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer__contact-link:hover {
  color: var(--color-primary);
}

.footer__contact-separator {
  color: rgba(184, 137, 42, 0.35);
  font-weight: 300;
}

/* ── Bottom bar: Copyright & Social ── */
.footer__bottom {
  border-top: 1px solid rgba(184, 137, 42, 0.15);
  padding-top: 24px;
  margin-top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.footer__copyright {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
  margin: 0;
  text-align: center;
}

/* Square social icon boxes */
.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 4px;
  background-color: #2E291C; /* Dark brown rounded square matching mockup exactly */
  color: var(--color-primary);
  text-decoration: none;
  font-size: 0.95rem;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.footer__social-box:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-2px);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .footer__main {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer__brand-block {
    align-items: center;
    text-align: center;
  }
  
  .footer__tagline {
    max-width: 100%;
  }
  
  .footer__info-block {
    align-items: center;
    text-align: center;
    gap: 2rem;
  }
  
  .footer__nav-list {
    justify-content: center;
  }
  
  .footer__contact-details {
    text-align: center;
    align-items: center;
  }
  
  .footer__bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .footer {
    padding: 48px 0 24px;
  }
  
  .footer__nav-list {
    gap: 16px 24px;
  }
  
  .footer__comms {
    flex-direction: column;
    gap: 6px;
  }
  
  .footer__contact-separator {
    display: none;
  }
}


/* ==========================================================================
   SECTION: components/share-button.css
   ========================================================================== */

/* ── Floating Social Media Widget ── */

.floating-share {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.floating-share__menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  pointer-events: none;
}

/* Active State for Menu */
.floating-share.is-active .floating-share__menu {
  pointer-events: auto;
}

/* Individual Social Items */
.floating-share__item {
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 20px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  opacity: 0;
  transform: translateY(20px) scale(0.8);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
              opacity 0.4s ease, 
              box-shadow 0.3s ease;
}

/* Brand Colors */
.floating-share__item--whatsapp {
  background-color: #25D366;
}

.floating-share__item--instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.floating-share__item--facebook {
  background-color: #1877F2;
}

.floating-share__item--x {
  background-color: #000000;
}

.floating-share__item--linkedin {
  background-color: #0077B5;
}

/* Hover States for Social Links */
.floating-share__item:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
  color: #ffffff; /* keep icon white */
}

/* Tooltips */
.floating-share__item::before {
  content: attr(aria-label);
  position: absolute;
  right: calc(100% + 15px);
  top: 50%;
  transform: translateY(-50%) translateX(10px);
  background-color: rgba(37, 33, 22, 0.95); /* UBL Dark Brown */
  color: #ffffff;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(184, 137, 42, 0.3); /* Gold tint border */
}

/* Tooltip arrow */
.floating-share__item::after {
  content: "";
  position: absolute;
  right: calc(100% + 9px);
  top: 50%;
  transform: translateY(-50%) translateX(10px);
  border-width: 6px 0 6px 6px;
  border-style: solid;
  border-color: transparent transparent transparent rgba(37, 33, 22, 0.95);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.floating-share__item:hover::before,
.floating-share__item:hover::after {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* Menu Toggle Button */
.floating-share__toggle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-gold-gradient, linear-gradient(135deg, #C9993A 0%, #A87C28 50%, #8B6820 100%));
  color: #ffffff;
  border: 1.5px solid #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  outline: none;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-share__toggle:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.floating-share__toggle:active {
  transform: scale(0.95);
}

/* Staggered Animations when Active */
.floating-share.is-active .floating-share__item {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Stagger transition delay for opening from top to bottom (bottom-most opens first) */
.floating-share.is-active .floating-share__item:nth-child(1) { transition-delay: 0.2s; }
.floating-share.is-active .floating-share__item:nth-child(2) { transition-delay: 0.15s; }
.floating-share.is-active .floating-share__item:nth-child(3) { transition-delay: 0.1s; }
.floating-share.is-active .floating-share__item:nth-child(4) { transition-delay: 0.05s; }
.floating-share.is-active .floating-share__item:nth-child(5) { transition-delay: 0s; }

.floating-share:not(.is-active) .floating-share__item {
  transition-delay: 0s !important;
}

/* Toggle Icon Transitions */
.floating-share__icon-share,
.floating-share__icon-close {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0deg);
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.floating-share__icon-close {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(-180deg);
}

/* Rotate and toggle visibility when active */
.floating-share.is-active .floating-share__icon-share {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(180deg);
}

.floating-share.is-active .floating-share__icon-close {
  opacity: 1;
  transform: translate(-50%, -50%) rotate(0deg);
}

/* Responsive adjustment for smaller mobile screens */
@media (max-width: 480px) {
  .floating-share {
    bottom: 20px;
    right: 20px;
  }
  .floating-share__item,
  .floating-share__toggle {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }
  .floating-share__item::before {
    display: none; /* Hide tooltips on mobile since there is no hover */
  }
  .floating-share__item::after {
    display: none;
  }
}


/* ==========================================================================
   GLOBAL & BASE STYLES
   ========================================================================== */

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

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
  font-family: var(--font-body);
  background-color: var(--bg-white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 600;
}

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

/* ==========================================================================
   SECTION: components/chatbot.css
   ========================================================================== */

/* ── Floating Chatbot Widget ── */
.floating-chatbot {
  position: fixed;
  bottom: 30px;
  right: 90px; /* Positioned beside the share button (which is at right: 30px, width: 48px, so its left edge is at ~78px + 12px gap = 90px) */
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: right 0.4s ease;
}

.floating-chatbot__toggle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-gold-gradient, linear-gradient(135deg, #C9993A 0%, #A87C28 50%, #8B6820 100%));
  color: #ffffff;
  border: 1.5px solid #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  outline: none;
  position: relative;
  padding: 0;
  overflow: hidden;
  white-space: nowrap;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding-left 0.4s cubic-bezier(0.4, 0, 0.2, 1), border-radius 0.4s ease, padding-right 0.4s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-chatbot__toggle:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.floating-chatbot__toggle:active {
  transform: scale(0.97);
}

/* Tooltips matching floating share tooltips - only show in circle mode */
.floating-chatbot__toggle::before {
  content: attr(aria-label);
  position: absolute;
  right: calc(100% + 15px);
  top: 50%;
  transform: translateY(-50%) translateX(10px);
  background-color: rgba(37, 33, 22, 0.95); /* UBL Dark Brown */
  color: #ffffff;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(184, 137, 42, 0.3); /* Gold tint border */
}

.floating-chatbot__toggle::after {
  content: "";
  position: absolute;
  right: calc(100% + 9px);
  top: 50%;
  transform: translateY(-50%) translateX(10px);
  border-width: 6px 0 6px 6px;
  border-style: solid;
  border-color: transparent transparent transparent rgba(37, 33, 22, 0.95);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.floating-chatbot__toggle:hover::before,
.floating-chatbot__toggle:hover::after {
  /* Only display hover tooltips when NOT in expanded pill mode */
  opacity: 0;
}

.floating-chatbot:not(.floating-chatbot--expanded) .floating-chatbot__toggle:hover::before,
.floating-chatbot:not(.floating-chatbot--expanded) .floating-chatbot__toggle:hover::after {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* Icon positioning */
.floating-chatbot__icon-msg,
.floating-chatbot__icon-close {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0deg);
  transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.4s ease, opacity 0.4s ease;
}

.floating-chatbot__icon-close {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(-180deg);
}

.floating-chatbot.is-active .floating-chatbot__icon-msg {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(180deg);
}

.floating-chatbot.is-active .floating-chatbot__icon-close {
  opacity: 1;
  transform: translate(-50%, -50%) rotate(0deg);
}

/* Expanded pill label */
.floating-chatbot__label {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  color: #ffffff;
  white-space: nowrap;
  opacity: 0;
  max-width: 0;
  overflow: hidden;
  transition: opacity 0.25s ease, max-width 0.4s cubic-bezier(0.4, 0, 0.2, 1), margin-left 0.4s ease;
  margin-left: 0;
  pointer-events: none;
}

/* Expanded pill state styles */
.floating-chatbot--expanded .floating-chatbot__toggle {
  width: 124px;
  border-radius: 24px;
  padding-left: 48px;
  padding-right: 16px;
  justify-content: flex-start;
}

.floating-chatbot--expanded .floating-chatbot__icon-msg {
  left: 24px;
}

.floating-chatbot--expanded .floating-chatbot__label {
  opacity: 1;
  max-width: 70px;
}

/* Active open override - always keep circular closed button when chat window is open */
.floating-chatbot.is-active .floating-chatbot__toggle {
  width: 48px !important;
  border-radius: 50% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  justify-content: center !important;
}

.floating-chatbot.is-active .floating-chatbot__icon-msg {
  left: 50% !important;
}

.floating-chatbot.is-active .floating-chatbot__icon-close {
  left: 50% !important;
}

.floating-chatbot.is-active .floating-chatbot__label {
  opacity: 0 !important;
  max-width: 0 !important;
  margin-left: 0 !important;
}

/* ── Chatbot Window ── */
.chatbot-window {
  position: fixed;
  bottom: 95px;
  right: 30px;
  width: 380px;
  height: 550px;
  max-height: 75vh;
  background-color: var(--color-white);
  border-top: 4px solid var(--color-primary);
  border-radius: 4px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid var(--color-primary);
  overflow: hidden;
}

.chatbot-window.is-open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

/* Header */
.chatbot-window__header {
  background-color: var(--bg-brown);
  color: #ffffff;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1.5px solid var(--color-primary);
}

.chatbot-window__profile {
  display: flex;
  align-items: center;
  gap: 12px;
}

.chatbot-window__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--color-primary);
  overflow: hidden;
  flex-shrink: 0;
}

.chatbot-window__avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background-color: #2E291C;
  padding: 4px;
}

.chatbot-window__details {
  display: flex;
  flex-direction: column;
}

.chatbot-window__title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 500;
  margin: 0;
  color: #ffffff;
  letter-spacing: 0.02em;
}

.chatbot-window__status {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  gap: 6px;
}

.chatbot-window__status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #25D366;
  display: inline-block;
  box-shadow: 0 0 8px #25D366;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0% { transform: scale(0.9); opacity: 0.6; }
  50% { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.6; }
}

.chatbot-window__close {
  background: transparent;
  border: none;
  font-size: 1.5rem;
  color: var(--color-primary);
  cursor: pointer;
  padding: 4px;
  line-height: 1;
  transition: color 0.3s ease, transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chatbot-window__close:hover {
  color: var(--color-primary-light);
  transform: rotate(90deg);
}

/* Message Area with Criss-Cross Pattern */
.chatbot-window__body {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  background-color: var(--bg-cream);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  scrollbar-width: thin;
  scrollbar-color: rgba(184, 137, 42, 0.3) transparent;
}

.chatbot-window__body::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
  background-image:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 26px,
      rgba(184, 137, 42, 0.04) 26px,
      rgba(184, 137, 42, 0.04) 27px
    ),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 26px,
      rgba(184, 137, 42, 0.04) 26px,
      rgba(184, 137, 42, 0.04) 27px
    );
}

/* Scrollbar customization for Webkit */
.chatbot-window__body::-webkit-scrollbar {
  width: 5px;
}
.chatbot-window__body::-webkit-scrollbar-track {
  background: transparent;
}
.chatbot-window__body::-webkit-scrollbar-thumb {
  background: rgba(184, 137, 42, 0.3);
  border-radius: 4px;
}

/* Messages styling */
.chatbot-msg {
  position: relative;
  z-index: 1;
  max-width: 85%;
  padding: 12px 16px;
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  line-height: 1.45;
  animation: fadeInSlideUp 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

@keyframes fadeInSlideUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.chatbot-msg--bot {
  background-color: var(--color-white);
  color: var(--color-dark);
  align-self: flex-start;
  border-top-left-radius: 2px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border-left: 3px solid var(--color-primary);
}

.chatbot-msg--user {
  background-color: var(--color-primary);
  color: var(--color-white);
  align-self: flex-end;
  border-top-right-radius: 2px;
  box-shadow: 0 2px 8px rgba(184, 137, 42, 0.15);
}

.chatbot-msg strong {
  font-weight: 600;
  color: inherit;
}

.chatbot-msg a {
  color: inherit;
  text-decoration: underline;
  font-weight: 500;
}

.chatbot-msg a:hover {
  opacity: 0.8;
}

.chatbot-msg ul, .chatbot-msg ol {
  margin: 8px 0 0 0;
  padding-left: 20px;
}

.chatbot-msg li {
  margin-bottom: 4px;
}

/* Typing Indicator */
.chatbot-typing {
  display: flex;
  gap: 4px;
  padding: 12px 18px;
  background-color: var(--color-white);
  border-radius: 12px;
  border-top-left-radius: 2px;
  border-left: 3px solid var(--color-primary);
  align-self: flex-start;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  z-index: 1;
}

.chatbot-typing__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--color-primary);
  animation: bounce-dot 1.4s infinite ease-in-out both;
}

.chatbot-typing__dot:nth-child(1) { animation-delay: -0.32s; }
.chatbot-typing__dot:nth-child(2) { animation-delay: -0.16s; }
.chatbot-typing__dot:nth-child(3) { animation-delay: 0s; }

@keyframes bounce-dot {
  0%, 80%, 100% { transform: scale(0); }
  40% { transform: scale(1); }
}

/* Suggestion Chips / Question Menu Section */
.chatbot-menu-title {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-primary);
  margin-top: 8px;
  margin-bottom: 4px;
  z-index: 1;
  animation: fadeInSlideUp 0.35s ease both;
}

.chatbot-question-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  margin-bottom: 8px;
  z-index: 1;
  animation: fadeInSlideUp 0.35s ease both;
}

.chatbot-question-btn {
  background-color: var(--color-white);
  border: 1px solid var(--color-primary);
  color: var(--color-dark);
  text-align: left;
  padding: 10px 14px;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
  display: block;
  width: 100%;
}

.chatbot-question-btn:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(184, 137, 42, 0.2);
}

/* Footer / Attribution */
.chatbot-window__footer {
  background-color: var(--bg-brown);
  padding: 10px 16px;
  border-top: 1.5px solid var(--color-primary);
  text-align: center;
}

.chatbot-window__attribution {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.4);
  margin: 0;
  letter-spacing: 0.02em;
}

/* ── Responsive adjustments ── */
@media (max-width: 480px) {
  .floating-chatbot {
    bottom: 20px;
    right: 76px; /* beside share button (right: 20px, width: 44px, gap: 12px) */
  }
  
  .floating-chatbot__toggle {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }
  
  /* Enable expanded pill on mobile with appropriate sizing */
  .floating-chatbot--expanded .floating-chatbot__toggle {
    width: 120px !important;
    border-radius: 22px !important;
    padding-left: 42px !important;
    padding-right: 14px !important;
    justify-content: flex-start !important;
  }
  
  .floating-chatbot--expanded .floating-chatbot__icon-msg {
    left: 20px !important;
  }
  
  .floating-chatbot--expanded .floating-chatbot__label {
    display: block !important;
    opacity: 1 !important;
    max-width: 70px !important;
  }
  
  .floating-chatbot.is-active .floating-chatbot__toggle {
    width: 44px !important;
    border-radius: 50% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    justify-content: center !important;
  }
  
  .floating-chatbot.is-active .floating-chatbot__icon-msg,
  .floating-chatbot.is-active .floating-chatbot__icon-close {
    left: 50% !important;
  }
  
  .floating-chatbot.is-active .floating-chatbot__label {
    opacity: 0 !important;
    max-width: 0 !important;
  }
  
  .floating-chatbot__toggle::before,
  .floating-chatbot__toggle::after {
    display: none; /* Hide tooltips on mobile */
  }
  
  .chatbot-window {
    bottom: 80px;
    right: 15px;
    left: 15px;
    width: auto;
    height: clamp(450px, 85vh, 650px);
    max-height: calc(100vh - 110px);
  }
}
