/* =========================================================
   RESET + GLOBAL
========================================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: "headings", sans-serif;
    color: #111;
    background: #fff;
    line-height: 1.6;
    overflow-x: hidden !important;
  
}


@font-face {
  font-family: "main";
  src: url(../Assets/Generalsans-fonts/GeneralSans-Variable.woff2) format(woff2);
}




img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

a, p {
    position: relative;
    font-family: "main", sans-serif;
    text-decoration: none;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 300;
    user-select: none;
}


h1, h2, h3, h4 {

  position: relative;
  font-family: "main", sans-serif !important;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500 !important;
  user-select: none;

}




/* -------------------------------- */
/* transition page                  */
/* -------------------------------- */

.transition {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 10;
  pointer-events: none;
  overflow: hidden;
}

/* THE ONE FULL BLOCK */
.transition-block {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  transform-origin: top;
  transform: scaleY(1);
  z-index: 15;
  display: flex;
  align-items: center;
  justify-content: center;
  will-change: transform;
  overflow: hidden; /* ensures logo is masked */
}

/* LOGO INSIDE BLOCK (does NOT stretch) */
.transition-logo {
  width: 200px;
  height: auto;
  pointer-events: none;

  position: absolute;
  inset: 0;
  margin: auto;

  /* prevent inheriting parent's scaleY */
  transform: none !important;

  /* opacity-only animation */
  opacity: 0;
  will-change: opacity;
}


/* =========================
   LOGO + MASK ANIMATION FIX
   (Smooth + Cinematic)
========================= */

/* Ensure transforms never jump */
.logo {
  transform-origin: center center;
  will-change: transform, opacity;
}



/* Cinematic entrance */
@keyframes logoReveal {
  0% {
    transform: translateY(40px) scale(0.92);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  100% {
    transform: translateY(0px) scale(1);
    opacity: 1;
  }
}

.logo.animate-in {
  animation: logoReveal 1.6s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
  animation-delay: 0.8s; /* more cinematic */
}

/* Mask blocks — extended timing for smooth reveal */
.mask-block {
  animation: blockReveal 1.4s cubic-bezier(0.33, 0.00, 0.18, 1) forwards;
  animation-delay: var(--delay);
}

/* No glitch: exit animation begins EXACTLY where reveal ended */
@keyframes logoExit {
  0% {
    transform: translateY(0px) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateY(-40px) scale(0.92);
    opacity: 0;
  }
}

.logo.animate-out {
  animation: logoExit 1.6s cubic-bezier(0.65, 0.05, 0.36, 1) forwards;
  animation-delay: 0.1s; /* slight pause so exit feels cinematic */
}

/* Mask fade-out also slowed + aligned */
@keyframes maskFadeOut {
  0% { opacity: 1; }
  100% { opacity: 0; }
}

.mask-block.fade-out {
  animation: maskFadeOut 1.2s ease forwards;
  animation-delay: var(--delay);
}

.impact-bento-section {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto 140px;
}

.impact-bento-intro {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 48px;
    margin-bottom: 36px;
}

.impact-bento-intro h2 {
    max-width: 560px;
    color: #151515;
    font-size: clamp(38px, 6vw, 78px);
    line-height: 0.95;
    font-weight: 600 !important;
}

.impact-bento-intro p {
    max-width: 440px;
    color: #454545;
    font-size: 16px;
    line-height: 1.55;
}

.impact-bento-grid {
    display: grid;
    grid-template-columns: 1.08fr 1fr 1fr;
    grid-template-rows: 280px 280px;
    gap: 16px;
}

.impact-bento-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background: #eeeeee;
}

.impact-bento-card h3,
.impact-bento-card p,
.impact-bento-card a {
    color: #111;
    font-family: "main", sans-serif;
}

.impact-bento-feature {
    grid-row: span 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 28px;
}

.impact-bento-image {
    height: 56%;
    margin-bottom: clamp(28px, 3vw, 36px);
    overflow: hidden;
    border-radius: 8px;
    background: #fff;
}

.impact-bento-feature h3 {
    max-width: 360px;
    margin: 0 0 12px;
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.05;
    font-weight: 600 !important;
}

.impact-bento-feature p {
    max-width: 360px;
    margin: 0 0 28px;
    color: #555;
    font-size: 15px;
    line-height: 1.4;
}

.impact-bento-feature .impact-bento-button {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    min-height: 42px;
    padding: 11px 20px;
    border: 1px solid #000;
    border-radius: 999px;
    background: #000;
    color: #fff !important;
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.impact-bento-feature .impact-bento-button:hover {
    border-color: #d5b034;
    background: #d5b034;
    color: #fff !important;
    transform: translateY(-1px);
}

.impact-bento-trust {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
}

.impact-bento-trust img {
    position: absolute;
    inset: 0;
}

.impact-bento-trust::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(238, 238, 238, 0) 26%, rgba(238, 238, 238, 0.92) 100%);
}

.impact-bento-trust h3 {
    position: relative;
    z-index: 1;
    max-width: 340px;
    font-size: clamp(20px, 2.5vw, 28px);
    line-height: 1.05;
    font-weight: 600 !important;
}

.impact-bento-trust p {
    position: relative;
    z-index: 1;
    max-width: 320px;
    margin-top: 12px;
    color: #555;
    font-size: 14px;
    line-height: 1.4;
}

@media (min-width: 901px) {
    .impact-bento-trust p {
        min-height: 9.4em;
    }
}

.impact-bento-stat {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
}

.impact-stat-number {
    color: #111;
    font-family: "main", sans-serif;
    font-size: clamp(64px, 8vw, 112px);
    line-height: 0.8;
    font-weight: 600;
}

.impact-bento-stat p {
    max-width: 260px;
    margin-top: 18px;
    color: #555;
    font-size: 14px;
    line-height: 1.35;
}

.impact-bento-wide {
    grid-column: span 2;
    display: grid;
    grid-template-columns: minmax(0, 1.fr) minmax(220px, 0.72fr);
    align-items: end;
    gap: 20px;
    padding: 28px 0 0 28px;
}

.impact-bento-wide h3 {
    max-width: 520px;
    font-size: clamp(26px, 3.4vw, 42px);
    line-height: 1;
    font-weight: 600 !important;
}

.impact-bento-wide p {
    max-width: 520px;
    margin-top: 16px;
    padding-bottom: 28px;
    color: #555;
    font-size: 15px;
    line-height: 1.45;
}

.impact-bento-wide img {
    align-self: stretch;
    min-height: 100%;
    object-position: center top;
}




/* Default container for sections */
.section-beneficiaries .container {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    width: 90%;
    border-top: #000 solid 1px;
    padding-top: 40px;
    padding-bottom: 120px;
}

.section-beneficiaries .container h2{
    position: relative;
    text-decoration: none;
    color: #1d1d1d;
    font-size: 55px;
    line-height: 55px;
    font-weight: 600;
    user-select: none;
    flex: 1;
    width: auto;

}

.section-beneficiaries .container p{
    position: relative;
    text-decoration: none;
    color: #1a1a1a;
    font-size: 1rem;
    font-weight: 300;
    user-select: none;
    flex: 0.65;
    width: auto;

}

.section-beneficiaries .container a{
    position: relative;
    text-decoration: underline;
    color: #000;
    font-size: 1rem;
    font-weight: 300;
    user-select: none;
    flex: 0.5;
    width: auto;
    transform: 0.3s ease;

}

.section-beneficiaries .container a:hover{

    text-decoration: underline;
    color: #d5b034;
    

}

.beneficiary-container {
    width: 90%;
    max-width: 1200px;
    margin: -72px auto 120px;
    border-top: 1px solid rgba(0, 0, 0, 0.18);
}

.beneficiary-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.18);
}

.beneficiary-toggle {
    width: 100%;
    min-height: 86px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto 28px;
    align-items: center;
    gap: 24px;
    padding: 22px 0;
    border: 0;
    background: transparent;
    color: #151515;
    font-family: "main", sans-serif;
    text-align: left;
}

.funding-qualifies-section {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto 150px;
    padding-top: 76px;
    color: #11131f;
    font-family: "main", sans-serif;
}

.funding-qualifies-top {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(480px, 0.95fr);
    gap: clamp(56px, 6vw, 96px);
    align-items: start;
}

.funding-qualifies-copy {
    min-height: clamp(520px, 44vw, 540px);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: clamp(32px, 4vw, 64px);
}

.funding-qualifies-copy h2 {
    max-width: 560px;
    margin: 0;
    color: #10121d;
    font-size: clamp(56px, 4.8vw, 88px) !important;
    line-height: 0.98 !important;
    font-weight: 650 !important;
    letter-spacing: 0 !important;
}

.funding-qualifies-copy p {
    max-width: 690px;
    margin: 0;
    color: #474747;
    font-size: clamp(20px, 1.35vw, 25px) !important;
    line-height: 1.45 !important;
    font-weight: 400 !important;
}

.funding-qualifies-image {
    width: min(100%, 620px);
    min-height: clamp(420px, 34vw, 540px);
    justify-self: end;
    overflow: hidden;
    border-radius: 12px;
    background: transparent;
}

.funding-qualifies-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.funding-qualifies-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(38px, 4vw, 76px);
    margin-top: 60px;
}

.funding-qualifies-item {
    padding-top: 44px;
    border-top: 1px solid rgba(0, 0, 0, 0.2);
}

.funding-qualifies-item span {
    display: block;
    margin-bottom: 28px;
    color: #3b4051;
    font-family: "main", sans-serif;
    font-size: clamp(27px, 2vw, 36px);
    line-height: 1;
    font-weight: 700;
}

.funding-qualifies-item h3 {
    max-width: 310px;
    margin: 0 0 28px;
    color: #10121d;
    font-size: clamp(23px, 1.6vw, 31px) !important;
    line-height: 1.08 !important;
    font-weight: 650 !important;
    letter-spacing: 0 !important;
}

.funding-qualifies-item p {
    max-width: 370px;
    margin: 0;
    color: #4a4a4a;
    font-size: clamp(18px, 1.2vw, 23px) !important;
    line-height: 1.45 !important;
    font-weight: 400 !important;
}

@media (max-width: 1180px) {
    .funding-qualifies-section {
        width: 90%;
        max-width: 1200px;
        margin-bottom: 120px;
    }

    .funding-qualifies-top {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .funding-qualifies-copy {
        min-height: auto;
        gap: 36px;
    }

    .funding-qualifies-image {
        width: 100%;
        min-height: clamp(360px, 54vw, 560px);
        justify-self: stretch;
    }

    .funding-qualifies-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin-top: 80px;
    }
}

@media (max-width: 620px) {
    .funding-qualifies-section {
        width: var(--section-container-mobile);
        padding-top: 42px;
        margin-bottom: 90px;
    }

    .funding-qualifies-copy {
        align-items: center;
        text-align: center;
    }

    .funding-qualifies-copy h2 {
        font-size: clamp(38px, 12vw, 50px) !important;
    }

    .funding-qualifies-copy p {
        font-size: 16px !important;
    }

    .funding-qualifies-image {
        min-height: 340px;
        border-radius: 8px;
    }

    .funding-qualifies-list {
        grid-template-columns: 1fr;
        gap: 34px;
        margin-top: 58px;
    }

    .funding-qualifies-item {
        padding-top: 28px;
        text-align: center;
    }

    .funding-qualifies-item span,
    .funding-qualifies-item h3,
    .funding-qualifies-item p {
        margin-left: auto;
        margin-right: auto;
    }

    .funding-qualifies-item span {
        margin-bottom: 20px;
    }

    .funding-qualifies-item h3 {
        margin-bottom: 18px;
        font-size: 23px !important;
    }

    .funding-qualifies-item p {
        font-size: 16px !important;
    }
}

.beneficiary-toggle span {
    font-size: clamp(12px, 2vw, 32px);
    line-height: 1;
    font-weight: 300;
}

.beneficiary-toggle small {
    color: #666;
    font-size: 13px;
    font-weight: 400;
    text-transform: uppercase;
}

.beneficiary-toggle::after {
    content: "+";
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(0, 0, 0, 0.32);
    border-radius: 50%;
    font-size: 18px;
    line-height: 1;
    transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.beneficiary-item.active .beneficiary-toggle::after {
    content: "-";
    background-color: #d5b034;
    border-color: #d5b034;
    color: #fff;
}

.beneficiary-details {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.32s ease;
}

.beneficiary-details p {
    overflow: hidden;
    max-width: 680px;
    margin: 0;
    color: #444;
    font-family: "main", sans-serif;
    font-size: 16px;
    line-height: 1.55;
    font-weight: 300;
}

.beneficiary-item.active .beneficiary-details {
    grid-template-rows: 1fr;
}

.beneficiary-item.active .beneficiary-details p {
    padding: 0 0 28px;
}





.rentals-text p {
    position: relative;
    width: 85%;
    text-decoration: none;
    color: #1a1a1a;
    font-size: 1rem;
    font-weight: 300;
    user-select: none;
    padding-bottom: 5px ;
}




/* -------------------------------- */
/*                  */
/* -------------------------------- */
/* ---- Layout container ---- */

.wrap {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
  padding-bottom: 120px;
}

/* Row with 4 columns */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
  align-items: start;
}

.stat {
  padding: 0 6px;
  min-width: 0;
}

/* ================================
   UPDATED: Number above the line
================================ */
.stat-top {
  display: flex;
  flex-direction: column; /* stack number and line */
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}

.stat-number {
  font-size: 48px;
  line-height: 1;
  font-weight: 300;
  letter-spacing: 2px;
  color: #111;
  min-width: 1ch;
}

.stat-rule {
  width: 100%;        /* full width under number */
  height: 1px;
  background: #000;
}

/* Title + Description */
.stat-title {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 8px;
  color: #111;
  letter-spacing: 0.2px;
}

.stat-desc {
  font-size: 13px;
  line-height: 1.45;
  color: #666;
  max-width: 420px;
}

/* Large screen enhancement */
@media (min-width: 1400px) {
  .stat-number { font-size: 52px; }
  .stat-title { font-size: 20px; }
  .stat-desc { font-size: 14px; }
}

/* Responsiveness */
@media (max-width: 900px) {
  .stats-row { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .stat-number { font-size: 44px; }

  .impact-bento-section {
    margin-bottom: 110px;
  }

  .impact-bento-intro {
    display: block;
    margin-bottom: 28px;
  }

  .impact-bento-intro p {
    max-width: 620px;
    margin-top: 18px;
  }

  .impact-bento-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .impact-bento-feature {
    grid-row: auto;
    min-height: 520px;
  }

  .impact-bento-trust,
  .impact-bento-stat {
    min-height: 252px;
  }

  .impact-bento-wide {
    grid-column: 1 / -1;
    min-height: 300px;
  }

  /* Default container for sections */
  .section-beneficiaries .container {
    display: block;
    align-items: flex-start;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    width: 90%;
    border-top: #000 solid 1px;
    padding-top: 40px;
    padding-bottom: 120px;
  }

  .section-beneficiaries .container h2{
    position: relative;
    text-decoration: none;
    color: #1d1d1d;
    font-size: 55px;
    line-height: 55px;
    font-weight: 600;
    user-select: none;
    flex: 1;
    width: auto;

  }

  .section-beneficiaries .container p{
    position: relative;
    text-decoration: none;
    color: #1a1a1a;
    font-size: 1rem;
    font-weight: 300;
    user-select: none;
    flex: 0.65;
    width: auto;

  }

  .section-beneficiaries .container a{
    position: relative;
    text-decoration: underline;
    color: #000;
    font-size: 1rem;
    font-weight: 300;
    user-select: none;
    flex: 0.5;
    width: auto;
    transform: 0.3s ease;

  }

  .section-beneficiaries .container a:hover{

    text-decoration: underline;
    color: #d5b034;
    

  }

  .beneficiary-container {
    margin-top: -72px;
  }

  .beneficiary-toggle {
    grid-template-columns: minmax(0, 1fr) 28px;
    gap: 14px;
    min-height: 76px;
  }

  .beneficiary-toggle small {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .beneficiary-toggle::after {
    grid-column: 2;
    grid-row: 1;
  }
}



@media (max-width: 520px) {
  .stats-row { grid-template-columns: 1fr; gap: 20px; }
  .stat-number { font-size: 40px; }

  .impact-bento-section {
    margin-bottom: 90px;
  }

  .impact-bento-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .impact-bento-card {
    border-radius: 8px;
  }

  .impact-bento-feature {
    min-height: auto;
    padding: 18px;
  }

  .impact-bento-image {
    height: 260px;
  }

  .impact-bento-trust,
  .impact-bento-stat {
    min-height: 260px;
    padding: 20px;
  }

  .impact-bento-trust h3 {
    left: 20px;
    right: 20px;
  }

  .impact-bento-wide {
    grid-column: auto;
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 20px;
  }

  .impact-bento-wide p {
    padding-bottom: 0;
  }

  .impact-bento-wide img {
    height: 260px;
    border-radius: 8px;
  }

  .beneficiary-container {
    margin-bottom: 90px;
  }

  .beneficiary-toggle {
    padding: 18px 0;
  }

  .beneficiary-details p {
    font-size: 14px;
  }
}






  
  /* =========================================================
   NAV + MENU OVERLAY
========================================================= */

.nav {
  position: fixed;
  width: 100%;
  padding: 0px 0px;
  display: flex;
  background-color: #fff;
  justify-content: space-between;
  align-items: center;
  z-index: 30;
}

.logo a {
    font-weight: 600;
}

.logo-img {
    height: 70px; /* adjust as needed */
    width: auto;   /* keeps aspect ratio */
}

.main-menu{
  display: block;
}

.menu-toggle {
    position: relative;
    display: none;
    width: 3rem;
    height: 1.5rem;
    color: #000;
}

.navbar ul {
    
    color: #000 !important;
}



.menu-toggle p {
    position: absolute;
    transform-origin: top left;
    color: #000;
    will-change: transform, opacity;
}

.menu-toggle p#menu-close {
    opacity: 0;
    transform: translateX(-5px) translateY(10px) rotate(5deg);
}

.menu-overlay {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background-color: #fff;
  z-index: 2;
  clip-path: polygon(0% 0%, 100% 0%, 100% 0%, 0% 0%);
}

/* Menu content */
.menu-content {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
  justify-content: center;
  align-items: center;
  transform-origin: left bottom;
  transform: none;
  opacity: 1;
  will-change: transform, opacity;
}


/* Layout */
.menu-items,
.menu-footer {
  width: 100%;
  padding: 2.5em;
  display: flex;
  gap: 2.5em;
}

.col-lg { flex: 3; }
.col-sm { flex: 2; }

/* Preview Image */
.menu-items .col-lg {
  display: flex;
  justify-content: center;
  align-items: center;
}

.menu-preview-img {
  position: relative;
  width: 45%;
  height: 100%;
  overflow: hidden;
}

.menu-preview-img img {
  position: absolute;
  will-change: transform, opacity;
}

/* Links */
.menu-links,
.menu-social {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}

.link,
.social {
  padding-bottom: 6px;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

/* MAIN LINKS */
.link a {
  font-size: 3.5rem;
  letter-spacing: -0.02rem;
  transform: translateY(120%);
  opacity: 1;
  color: #767676 !important;
}

/* Pure white hover fix */
.link a:hover {
  opacity: 1;
  color: #d5b034 !important;
}

.link a:hover::after {
  transform: scaleX(1);
  background: #d5b034!important;
}

/* SOCIAL LINKS — FIXED TO MATCH MAIN LINKS BEHAVIOR */
.social a {
  color: #000000;
  opacity: 1;
  transform: translateY(120%); /* SAME AS .link a */
}

.social a:hover {
  opacity: 1;
  color: #d5b034;
}

/* underline animation */
.link a::after,
.social a::after,
.menu-footer a::after {
  position: absolute;
  content: "";
  top: 102.5%;
  left: 0;
  width: 100%;
  height: 2px;
  background: #fff;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s cubic-bezier(0.6, 0, 0.4, 1);
}

.menu-footer {
  position: absolute;
  bottom: 0;
}

.menu-footer .col-sm {
  display: flex;
  justify-content: space-between;
}




/* =========================================================
   HERO SECTION
========================================================= */

.hero {
    position: relative;
    width: 100vw;
    height: 100svh;
    background-color: linear-gradient(180deg, #d5b034 0%,#d5b034 50%, #d5b034 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    clip-path: none;
    will-change: clip-path;
    overflow: hidden;
}

.spacer {
    display: none;
    margin: 0;
}

.case-studies-section {
  width: 100%;
  padding: 0 0 140px;
  background: #fff;
}

.case-studies-shell {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}

.case-studies-kicker {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  margin-bottom: 34px;
  padding: 7px 14px;
  border-radius: 999px;
  background: #eef4ea;
  color: #151515;
  font-family: "main", sans-serif;
  font-size: 13px;
  font-weight: 600;
}

.case-studies-kicker i {
  width: 18px;
  height: 18px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: #d5b034;
  font-size: 10px;
}

.case-studies-heading {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 42px;
}

.case-studies-heading h2 {
  max-width: 760px;
  color: #151515;
  font-size: clamp(42px, 6.8vw, 86px);
  line-height: 0.95;
  font-weight: 500 !important;
  letter-spacing: 0;
  text-align: left;
}

.case-studies-layout {
  position: relative;
  min-height: var(--case-active-height, 390px);
}

.case-studies-gallery {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  min-height: var(--case-active-height, 390px);
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: none;
  scroll-behavior: auto;
  scrollbar-width: none;
  overscroll-behavior-x: contain;
}

.case-studies-gallery::-webkit-scrollbar {
  display: none;
}

.case-studies-gallery::after {
  content: "";
  flex: 0 0 var(--case-end-space, 0px);
}

.case-study-card {
  position: relative;
  flex: 0 0 auto;
  width: var(--case-compact-width, 180px);
  min-width: 0;
  height: var(--case-compact-height, 180px);
  padding: 24px;
  border: 0;
  border-radius: 8px;
  background: #e9f0e5;
  overflow: hidden;
  scroll-snap-align: none;
  transform: translateZ(0);
  will-change: width, height, transform;
  contain: layout paint;
}

.case-study-card.active {
  width: var(--case-active-width, 540px);
  height: var(--case-active-height, 390px);
  background: #eef4ea;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
}

.case-study-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
  transform: scale(1.04);
  will-change: opacity, transform;
}

.case-study-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.82) 0%, rgba(255,255,255,0.48) 34%, rgba(19,19,19,0.18) 100%);
  z-index: 1;
  pointer-events: none;
}

.case-study-card.active::after {
  background: linear-gradient(90deg, rgba(238,244,234,0.94) 0%, rgba(238,244,234,0.72) 38%, rgba(238,244,234,0.08) 100%);
}

.case-card-content {
  position: relative;
  z-index: 2;
  max-width: 300px;
}

.case-card-content h3 {
  color: #151515;
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1.05;
  font-weight: 600 !important;
}

.case-card-content p {
  max-width: 280px;
  margin-top: 14px;
  color: #232323;
  font-size: 14px;
  line-height: 1.35;
  opacity: 0;
  transform: translateY(8px);
  will-change: opacity, transform;
}

.case-card-arrow {
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 3;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  color: #d5b034;
  transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.case-card-arrow:hover {
  transform: translateX(3px);
  background: #d5b034;
  color: #fff;
}

.case-studies-copy {
  position: absolute;
  top: calc(var(--case-compact-height, 180px) + 32px);
  left: calc(var(--case-active-width, 576px) + var(--case-gap, 16px) + 112px);
  right: 0;
  max-width: none;
  margin: 0;
  padding-bottom: 0;
}

.case-count {
  display: inline-flex;
  margin-bottom: 18px;
  color: #d5b034;
  font-family: "main", sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.case-studies-copy h3 {
  max-width: none;
  margin: 0 0 12px;
  color: #151515;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.05;
  font-weight: 600 !important;
  will-change: opacity, transform;
}

.case-studies-copy p {
  max-width: none;
  min-height: 108px;
  color: #151515;
  font-size: 17px;
  line-height: 1.5;
  font-weight: 400;
  will-change: opacity, transform;
}

.case-studies-copy a {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  color: #151515;
  font-size: 15px;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.case-studies-copy a:hover {
  color: #d5b034;
}

.case-studies-controls {
  display: grid;
  grid-template-columns: 42px 42px minmax(120px, 1fr);
  align-items: center;
  gap: 12px;
  max-width: 520px;
  margin-top: 34px;
}

.case-nav {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: #eef4ea;
  color: #d5b034;
  transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.case-nav:hover {
  transform: translateY(-2px);
  background: #d5b034;
  color: #fff;
}

.case-progress {
  height: 3px;
  border-radius: 999px;
  background: #e1e1e1;
  overflow: hidden;
}

.case-progress span {
  display: block;
  width: 25%;
  height: 100%;
  border-radius: inherit;
  background: #151515;
  transform-origin: left;
  will-change: width;
}

@media (max-width: 980px) {
  .case-studies-section {
    padding-bottom: 110px;
  }

  .case-studies-kicker {
    margin-bottom: 24px;
  }

  .case-studies-heading {
    justify-content: flex-start;
    margin-bottom: 28px;
  }

  .case-studies-layout {
    min-height: auto;
  }

  .case-studies-gallery {
    min-height: var(--case-active-height, 360px);
  }

  .case-study-card {
    flex-basis: min(48vw, 260px);
    height: var(--case-compact-height, 168px);
    padding: 20px;
  }

  .case-study-card.active {
    height: var(--case-active-height, 360px);
    background: #eef4ea;
  }

  .case-studies-copy {
    position: static;
    margin-top: 24px;
  }

  .case-studies-copy p {
    min-height: auto;
    max-width: 620px;
  }

  .case-studies-controls {
    margin-top: 26px;
    max-width: none;
  }
}

@media (max-width: 620px) {
  .case-studies-section {
    padding-bottom: 90px;
  }

  .case-studies-heading h2 {
    font-size: clamp(36px, 12vw, 58px);
  }

  .case-studies-gallery {
    gap: 12px;
    min-height: var(--case-active-height, 330px);
  }

  .case-study-card {
    flex-basis: 52vw;
    height: var(--case-compact-height, 156px);
    padding: 18px;
  }

  .case-study-card.active {
    height: var(--case-active-height, 330px);
    background: #eef4ea;
  }

  .case-card-content h3 {
    font-size: 20px;
  }

  .case-card-content p {
    font-size: 13px;
  }

  .case-card-arrow {
    right: 16px;
    bottom: 16px;
    width: 42px;
    height: 42px;
  }

  .case-studies-copy p {
    font-size: 15px;
  }

  .case-studies-controls {
    grid-template-columns: 40px 40px minmax(90px, 1fr);
  }
}

.video-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background-color: #111;
  margin-bottom: 120px !important;
  clip-path: polygon(20% 20%, 80% 20%, 80% 80%, 20% 80%);
  will-change: transform, clip-path;
  overflow: hidden;
}

.video-container video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-height: 100%;
  min-width: 100%;
  object-fit: cover;
  opacity: 0.85;
}

.header {
  position: absolute;
  top: 70%;
  left: 26%;
  width: 78%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: left;
}

.header h1 {
  width: 100%;
  text-align: left;
  z-index: 1;
  font-size: 6vw !important;
  line-height: 0.85;
  letter-spacing: -0.075em;
  color: #fff;
}

.header p {
  margin-top: 1em;
  font-size: 24px;
  color: #ffffff;
  width: 100%;
}

.header span {
  display: block;
  transform: translateY(0);
  will-change: transform;
}

.coordinates {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100vw;
  padding: 1.5em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #d5b034;
}

.char.anim-out h1 { 
  position: relative;
  will-change: transform;
}

.header h1,
.header p,
.coordinates p,
.char.anim-out {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.header span,
.coordinates p span {
  position: relative;
  display: block;
  transform: translateY(0);
  will-change: tranform;
}



 /* SECTION WRAPPER */
 .car-section {
    background: #d5b034;
    margin: 0 auto;
    border-radius: 5px;
    height: 90vh;
    width: 90%;
    max-width: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }
  
  /* TOP CONTENT ROW */
  .top-row {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 50px;
  }
  
  /* LEFT SIDE STACK (h2 + BIG TITLE) */
  .left-stack {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .left-stack h2 {
    font-size: 24px;
    font-weight: 300;
    margin: 0;
    color: #fff;
  }
  
  /* BIG TITLE */
  .title {
    font-size: 150px;
    font-weight: 700;
    line-height: 0.9;
    color: #ffffff;
    margin-top: -10px;
  }
  
  /* RIGHT SIDE CONTENT */
  .right-content {
    max-width: 420px;
    text-align: left;
  }
  
  .right-content p {
    font-size: 16px;
    line-height: 1.5;
    color: #ffffff;
    margin-bottom: 16px;
  }
  
  .right-content a {
    display: inline-block;       /* Ensures padding works nicely */
    color: #d5b034;;
    font-size: 16px;
    font-weight: normal;
    background-color: #ffffff;
    padding: 10px 15px;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;   /* Smooth hover transition */
}

.right-content a:hover {
    background-color: black;
    transform: scale(1.15);      /* Slight increase in size */
    color: #ffffff;
}


  
  /* HORIZONTAL CAR SLIDER */
  .scroll-x-container {
    margin-top: 40px;
    width: 100%;
    height: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    scroll-snap-type: x mandatory;
    scroll-behavior: auto;
  }
  
  .scroll-x-container::-webkit-scrollbar {
    height: 0px;
  }
  
  .scroll-x-track {
    display: flex;
    align-items: center;
    height: 100%;
    width: max-content;
   
  }
  

    
 /* CAR SLIDES */
.car-slide {
    width: 100%;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    scroll-snap-align: start;
    transform-origin: center center;
  

  }
  
  /* CONTROL IMAGE POSITION + SIZE WITH NO CROPPING */
  .car-slide img {
    width: 100%;
    max-width: 1400px;
    height: 100%;            /* prevents limiting natural scale */
    object-fit: contain;
    overflow: visible !important;
    transform-origin: center center;
  
    /* YOU CONTROL POSITION + SIZE HERE */
    transform: translate(-30px, -160px) scale(2.25);
  }
  
  
  
  /* PAGINATION */
  .pagination {
    position: absolute;
    bottom: 60px;
    width: 100%;
    margin: 0% auto;
    left: 0;
    display: flex;
    justify-content: center;
    gap: 12px;
  }
  
  .dot {
    width: 240px;
    height: 6px;
    border-radius: 5px;
    background: #ccc;
    transition: 0.3s;
  }
  
  .dot.active {
    background: #000;
  }
  

  /* MEDIA QUERIES FOR CAR SLIDER */
@media (max-width: 769px) {
  .car-section {
    height: auto;
    min-height: 50vh;
    padding: 15px 20px;
    margin: 0 15px;
    border-radius: 8px;
    width: calc(100% - 30px);
    overflow: hidden;
  }
  
  .top-row {
    flex-direction: column;
    text-align: center;
    padding: 20px 0;
    gap: 15px;
    width: 100%;
  }

  .left-stack,
  .right-content {
    width: 100%;
    max-width: none;
    padding: 0 10px;
    text-align: center;
  }

  .title {
    font-size: 60px;
    line-height: 0.8;
    margin-top: 0;
  }

  .left-stack h2 {
    font-size: 20px;
  }

  .right-content p {
    font-size: 14px;
    line-height: 1.4;
    text-align: center;
    margin: 0% auto;
    padding-bottom: 20px;
    width: 60%;
  }

  .scroll-x-container {
    margin-top: 20px;
    height: 250px;
    padding: 0 10px;
    width: 100%;
    overflow-x: auto;
  }

  .car-slide {
    min-width: 100vw;
    padding: 0 0px;
    height: 100%;
    overflow: hidden;
  }

  .car-slide img {
    max-width: 100%;
    max-height: auto;
    transform: translate(0px, -80px) scale(1.05) !important;
  }

  .pagination {
    bottom: 15px;
    padding: 0 20px;
    width: 100%;
  }

  .dot {
    width: 60px;
    max-width: 15vw;
    height: 4px;
  }
}

@media (max-width: 1024px) {
  .car-section {
    height: auto;
    min-height: 80vh;
    padding: 20px 30px;
    margin: 0 20px;
    width: calc(100% - 40px);
    overflow: hidden;
  }
  
  .scroll-x-container {
    height: 380px;

    width: 100%;
  }

  .car-slide {
    min-width: calc(100vw) !;
  }

  .car-slide img {
    max-width: 85%;
    max-height: 350px;
    transform: translate(0, 0) scale(1);
  }

  .pagination {
    bottom: 25px;
    padding: 0 30px;
    width: 100%;
  }

  .dot {
    width: 150px;
  }



  
}


  
  
  

/* =========================================================
   Rental Duration (clean version)
========================================================= */

.sticky {
    position: relative;
    max-width: 1200px;
    height: 100vh;
    margin: 0 auto;
    display: flex;
}

.col {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: em;
}

.services {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.indicator {
    display:none !important;
}

.service {
    width: max-content;
    height: 50px;
}

.service h2 {
    font-size: 36px;
    font-weight: 600;
    color: #bcbcbc;
    transition: color 0.3s;
    margin: 0;
}

.service.active h2 {
    color: #000000;
}

/* ====== IMAGE VISIBILITY FIX (required so animations can run) ======
   NOTE: these override any prior "display:none !important" so the
   images exist in the layout and can be animated by JS.
   This is the only change to visibility rules.
==================================================================== */
.service-img-wrapper,
.service-img,
.simg {
    display: block !important;
}

/* sensible defaults for image sizing so scaling looks correct */
.simg {
    width: 350px;
    height: auto;
    transform-origin: center center;
    will-change: transform, opacity;
}

/* ================================================================= */

.service-copy {
    width: 60%;
}

.service-copy p {
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    color: #000;
    margin-bottom: 20px;
}

/* 🔥 ICON ABOVE THE DESCRIPTION */
.service-desc-icon {
    width: 70px;
    height: 70px;
    object-fit: contain;
    margin-bottom: 20px;
    display: block;
    opacity: 1;
}

/* PROGRESS LINE */
.progress-line {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 2.5px;
    height: 60%;
    background-color: #d5d5d5;
    overflow: hidden;
}

.progessl, .progress-fill {
    position: absolute;
    top: 0;
    left:0;
    width: 100%;
    height: 100%;
    transform-origin: top;
    transform: scaleY(0);
    will-change: transform;
    background-color: #000;
}

.index {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    padding: 4px 2px 2px 2px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #d5b034;
    color: #fff;
    border-radius: 4px;
}

.index span {
    font-size: 20px;
    font-weight: 600;
    width: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.index span.separator {
    width: 20px;
    height:2px;
    background-color: #fff;
}



.service-button {
    display: inline-block;
    font-size: 16px;
    font-weight: normal;
    background-color: #d5b034;
    padding: 10px 15px;
    text-decoration: none;
    transition: all 0.3s ease;   /* Smooth hover transition */
  }
  
  .service-button:hover {
    background-color: #d5b034;
    transform: scale(1.05);     
  }


/* MOBILE */
@media (max-width: 900px) {



  .navbar .desktop {
    display: none !important;
}


.logo-img {
  height: 40px; /* adjust as needed */
  width: auto;   /* keeps aspect ratio */
}


.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Turn top nav into 2-column grid */
.logo,
.menu-toggle {
  display: block;
}

.navbar {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  align-items: center;
  padding: 10px 20px;
}

.logo {
  justify-self: start;
}

.menu-toggle {
  justify-self: end;
  display: flex !important;
  justify-content: flex-end;
  align-items: center;
}

/* Overlay */
.menu-overlay {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background-color: #fff;
  padding-left: 6cqw;
  z-index: 2;
  clip-path: polygon(0% 0%, 100% 0%, 100% 0%, 0% 0%);
}

/* Menu content */
.menu-content {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
  justify-content: center;
  align-items: center;
  transform-origin: left bottom;
  transform: none;
  opacity: 1;
  will-change: transform, opacity;
}

/* Layout */
.menu-items,
.menu-footer {
  width: 100%;
  padding: 2.5em;
  display: flex;
  gap: 2.5em;
}

.col-lg { flex: 3; }
.col-sm { flex: 2; }

/* Preview Image */
.menu-items .col-lg {
  display: flex;
  justify-content: center;
  align-items: center;
}

.menu-preview-img {
  position: relative;
  width: 45%;
  height: 100%;
  overflow: hidden;
}

.menu-preview-img img {
  position: absolute;
  will-change: transform, opacity;
}

/* Links */
.menu-links,
.menu-social {
  display: flex;
  flex-direction: column;
  gap: 0.5em;

}

.link,
.social {
  padding-bottom: 6px;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  
}

/* MAIN LINKS */
.link a {
  font-size: 3.5rem;
  letter-spacing: -0.02rem;
  transform: translateY(120%);
  opacity: 1;
  color: #767676 !important;
}

/* Pure white hover fix */
.link a:hover {
  opacity: 1;
  color: #d5b034 !important;
}

.link a:hover::after {
  transform: scaleX(1);
  background: #d5b034!important;
}

/* SOCIAL LINKS — FIXED TO MATCH MAIN LINKS BEHAVIOR */
.social a {
  color: #000000;
  opacity: 1;
  transform: translateY(120%); /* SAME AS .link a */
}

.social a:hover {
  opacity: 1;
  color: #d5b034;
}

/* underline animation */
.link a::after,
.social a::after,
.menu-footer a::after {
  position: absolute;
  content: "";
  top: 102.5%;
  left: 0;
  width: 100%;
  height: 2px;
  background: #fff;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s cubic-bezier(0.6, 0, 0.4, 1);
}

.menu-footer {
  position: absolute;
  bottom: 0;
}

.menu-footer .col-sm {
  display: flex;
  justify-content: space-between;
}


  


    .sticky {
        flex-direction: column;
        justify-content: flex-start;
        height: 80%;
        padding-top: 120px;
        padding-bottom: 120px;
    }

    .col:nth-child(1) {
        flex-direction: row;
        gap: 1.0em;
    }

    .col:nth-child(2) {
        padding-top: 25%;
        justify-content: flex-start;
        align-items: center;
        text-align: center;
    }

    .service h2 {
        font-size: 24px;
        padding-top: 120px;
        line-height: 1.1;
    }

    .service-copy {
        margin-top: -60px;
        width: 80%;
    }

    .service-copy p {
        font-size: 16px;
        line-height: 20px;
    }

   /* .service-desc-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 12px;

       
        margin-left: auto;
        margin-right: auto;
    } */

    .progress-line {
        top: 10%;
        left: 2.5%;
        height: 80%;
        transform: rotate(0);
    }

    .index {
        top: 22%;
        bottom: unset;
    }
}








/* =========================================================
   Fuel section
========================================================= */

.dark {
    background: #000000;
    color: #fff;
  

}

.fuel-grid {
    display: grid;
    max-width: 100%;
    width: 90%;
    margin: 0 auto;
    padding: 60px 0px;


    gap: 2rem;
    align-items: center;
}

.fuel-grid img {
    width: 100%;
    border-radius: 8px;
}

.fuel-text {
  display: grid;
  grid-template-columns: 0.8fr 1fr 0.5fr; /* h2 wider, p widest, link minimal */
  align-items: start;
  gap: 20px;
}

.fuel-text h2 {
  font-size: 55px;
  width: 70%;
  line-height: 55px;
}

.fuel-text a {
  justify-self: end; /* push link to the right */
  text-align: right;
  background-color: #fff;
  padding: 10px;
  color: #000;
  transition: color 0.3s ;
}

.fuel-text a:hover {
  background-color: #d5b034;
  color: #ffffff;
}







/* --------------------------------------------
   Footer
--------------------------------------------- */

.contact-section {
    width: 100%;
    padding: 80px 0px;
    padding-bottom: 0 !important;
    background: #f8f8f8; /* match reference light grey */
    font-family: sans-serif;
  }
  

  .contact-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 100%;
    width: 90%;
    margin: 0 auto;
    padding-bottom: 100px;
  }
  
  .contact-desc p {
    font-size: 24px;
    line-height: 1.5;
    max-width: 800px;
    color: black;
  }

  .contact-info {
    display: flex;
    flex-direction: column;
    
    gap: 80px;
  }
  
  .info-block h4 {
    font-size: 18px;
    margin-bottom: 6px;
    font-weight: 600;
  }
  
  .info-block p,
  .info-block a {
    font-size: 16px;
    line-height: 1.4;
    text-decoration: none;
    color: black;
  }
  
  .info-block a:hover {
    opacity: 0.7;
  }
  

  .contact-bottom{
    max-width: 100%;
    width: 90%;
    margin: 0 auto;
  }
  
  .vehicle-label {
    font-size: 20px;
    margin-bottom: -40px;   /* REDUCED SPACE HERE */
    font-weight: 300;
    color: black;
  }
  
  /* Arrow now sits NEXT TO the title */
  .connect-row {
    display: flex;
    align-items: center;
    gap: 180px;        /* space between title and arrow */
  }
  
  .connect-title {
    font-size: 120px;
    font-weight: 600;
    margin: 0;
    letter-spacing: 2px;
    display: inline-block;
    color: #000;
    transition: color 0.3s ease;
  }
  
  .connect-arrow {
    width: 120px;
    height: auto;
    margin-left: 200px;
    display: inline-block;
    transition: transform 0.3s ease, fill 0.3s ease; /* added transform transition */
    fill: #000; /* initial color of SVG */
  }
  
  /* Hover effect on title also affects the arrow */
  .connect-title:hover {
    color: #d5b034;
  }
  
  /* Scale arrow when title is hovered */
  .connect-title:hover + .connect-arrow {
    transform: scale(1.2); /* arrow expands */
    fill: #d5b034; /* optional: change arrow color */
  }



  


  
  




/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:900px) {


    p { font-size: 13px; }

    .logo-img {
      height: 40px; /* adjust as needed */
      width: auto;   /* keeps aspect ratio */
    }

    

    .coordinates {
        top: 65%;
        justify-content: center;
        gap: 1em;
        color: #fff;
        opacity: 0.5;
    }

    .rentals-grid {
        grid-template-columns: 1fr;
    }

    .rental-card.sedan {
        grid-row: auto;
    }

    .header {
        position: absolute;
        top: 80%;
        left: 46%;
        width: 85%;
        transform: translate(-50%, -50%);
        display: flex;
        flex-direction: column;
        align-items: left;
    }
    
    .header h1 {
        width: 100%;
        text-align: left;
    
        font-size: 10vw;
        line-height: 0.85;
        letter-spacing: -0.075em;
        color: #fff;
    }
    
    .header p {
        margin-top: 1em;
        font-size: 16px;
        color: #ffffff;
        width: 70%;
    }

  
    .connect-title {
      font-size: 90px;
    }
  
    .connect-arrow {
      width: 120px;
    }
  
    .contact-top {
      flex-direction: column;
      gap: 80px;
    }
    

    .section-beneficiaries .container h2{
      font-size: 24px;
      line-height: 24px;
      flex: 0.5;
    }
    .section-beneficiaries .container a{
      position: relative;
      text-decoration: underline;
      color: #000;
      font-size: 10px;
      font-weight: 300;
      
  }
  
    .section-beneficiaries .container p{
      font-size: 10px;
      font-weight: 300;
     
    }
    .wrap { grid-template-columns: 1fr; gap:20px; padding: 0px 0px 120px 0px; }
    .left { order:1; }
    .map-container { order:2; min-height:500px; }
    .info { order:3; }
    .info { padding: 18px; }


    .fuel-text {
      display: grid;
      grid-template-columns: 1fr; /* h2 wider, p widest, link minimal */
      align-items: start;
      gap: 20px;
    }
    
    .fuel-text h2 {
      font-size: 55px;
      width: 70%;
      line-height: 55px;
    }
    
    .fuel-text a {
      justify-self: left; /* push link to the right */
      text-align: left;
      background-color: #fff;
      padding: 10px;
      color: #000;
      transition: color 0.3s ;
    }
    
    
    .fuel-text a {
      justify-self: left; /* push link to the right */
      text-align: left;
      background-color: #fff;
      padding: 10px;
      color: #000;
      transition: color 0.3s ;
    }
    
    
    .fuel-text p {
      font-size: 10px;
    }
    
    .fuel-text a:hover {
      background-color: #d5b034;
      color: #ffffff;
    }
  
  
}








/* Default container for sections */
.section-map .container {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  max-width: 100%;
  margin: 0 auto;
  width: 90%;
  padding-top: 160px;
  padding-bottom: 60px;
}

.section-map .container h2{
  position: relative;
  text-decoration: none;
  color: #1d1d1d;
  font-size: 55px;
  line-height: 55px;
  font-weight: 600;
  user-select: none;
  flex: 1;
  width: auto;

}

.section-map .container p{
  position: relative;
  text-decoration: none;
  color: #1a1a1a;
  font-size: 1rem;
  font-weight: 300;
  user-select: none;
  flex: 0.65;
  width: auto;

}

.section-map .container a{
  position: relative;
  text-decoration: underline;
  color: #000;
  font-size: 1rem;
  font-weight: 300;
  user-select: none;
  flex: 0.5;
  width: auto;
  transform: 0.3s ease;

}

.section-map .container a:hover{

  text-decoration: underline;
  color: #d5b034;
  

}



.desktop ul {
  color: #000;
}




:root{
  --accent: #d5b034; 
  --stroke: #222;
  --muted: #888;
  --bg: #fff;
  --card-bg: #fff;
  --max-width: 1400px;
  --gap: 40px;
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
}
html,body { height:100%; margin:0; background:var(--bg); color:#111; }
.mapwrap {
  max-width: 100%;
  width: 90%;
  margin: 0px auto;
  padding-top: 40px;
  display: grid;
  border-top: 1px solid #000 ;
  grid-template-columns: 240px 1fr 300px;
  gap: var(--gap);
  align-items: start;
  box-sizing: border-box;
  padding-bottom: 160px;
}

/* LEFT: province chooser */
.left {
  position: relative;
}
.choose-title {
  font-size: 14px;
  margin: 8px 0 20px 0px;
  color:#111;
}
.province-list {
  list-style: none;
  padding: 0;
  margin: 0 0 0 0px;
  counter-reset: tick;
}

.province-item {
  display:flex;
  align-items:center;
  gap:6px;
  padding: 0px;
  color: var(--muted);
  font-size: 30px;
  font-weight:400;
  user-select: none;
  transition: color .18s;
}

/* **** WORD-LENGTH UNDERLINE ANIMATION **** */
.province-item span {
  position: relative;
  display: inline-block;
}

.province-item span::after {
  content: "";
  position: absolute;
  left: 0;
  top: 102%;
  width: 100%;
  height: 2px;
  background: #d5b034;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s cubic-bezier(0.6, 0, 0.4, 1);
}

.province-item:hover span::after {
  transform: scaleX(1);
}

.province-item.active span::after {
  transform: scaleX(1);
}

.province-item:hover { color: #d5b034; }
.province-item.active { color: var(--accent); }

/* CENTRAL map area */
.map-container {
  position: relative;
  min-height: 55px;
  border-radius: 8px;
  background: transparent;
  display:flex;
  align-items:center;
  transform: translate(0%,0);
  justify-content:center;
  overflow:hidden;
}


#svgWrapper{
  width:100%;
  display:flex; 
  align-items:center; 
  justify-content:center;
}


.map-bg {
  position:absolute;
  inset:0;
  object-fit: cover;
  opacity:0.12;
  pointer-events:none;
  transform: translateX(-6%);
}

/* UPDATED — enlarge SVG */
svg#sa-map {
  width: 2500px;
  height: 500px;
  z-index: 2;
}

/* UPDATED — 0.5px province stroke */
svg .province {
  fill: transparent;
  stroke: #222;
  stroke-width:0.5px;
  transition: fill .18s, transform .12s, stroke .12s;
}

svg .province:hover { transform: translateY(-2px); }
svg .province.selected {
  fill: var(--accent);
  stroke: #d5b034;
}

/* RIGHT info card */
.info {
  padding: 26px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:12px;
}
.info h2 {
  margin:0;
  font-size:28px;
}
.info p {
  margin:0;
  color:#333;
  line-height:1.5;
}
.info .body-muted { color: var(--muted); margin-top:10px; }

/* small screens */
@media (max-width: 980px) {
  .wrap { grid-template-columns: 1fr; gap:20px; padding-bottom: 120px; }
  .left { order:1; }
  .map-container { order:2; min-height:400px; }
  .info { order:3; }
  .info { padding: 18px; }
}



/* ============================================
   DESKTOP NAV MENU FIX (Targets <ul class="desktop">)
=============================================== */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Turn top nav into 2-column grid */
.logo,
.desktop,
.nav-action {
  display: block;
}



.navbar {
  display: grid !important;
  grid-template-columns: 1fr auto 1fr !important;
  align-items: center;
  padding: 10px 20px;
}

.logo {
  justify-self: start;
}

.desktop {
  display: flex !important;
  justify-content: center;
  align-items: center;
  gap: 30px; /* <-- change this value */
  justify-self: center;
}

.nav-action {
  justify-self: end;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 999px;
  background: #111;
  color: #fff !important;
  font-family: "main", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.nav-action:hover {
  background: #d5b034;
  color: #fff !important;
  transform: translateY(-1px);
}



.navbar .desktop li {
  list-style: none;
}

/* override your global anchor color */
.navbar .desktop li a {
  color: #000 !important;   /* desktop links must be black */
  font-size: 1rem;
  text-decoration: none;
  position: relative;
  padding-bottom: 3px;
  transition: 0.3s ease;
}

/* hover underline */
.navbar .desktop li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 2px;
  background: #000;
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.3s ease;
}

.navbar .desktop li a:hover {
  color: #d5b034 !important;
}

.navbar .desktop li a:hover::after {
  transform: scaleX(1);
  background: #d5b034;
}

/* Contact button styling */
.navbar .desktop li a.btn {
  padding: 8px 18px;
  border: 2px solid #d5b034;
  border-radius: 6px;
  font-weight: 600;
}

.navbar .desktop li a.btn:hover {
  background: #d5b034;
  color: #fff !important;
}

/* ============================================
 HIDE DESKTOP MENU ON TABLET + MOBILE
=============================================== */
@media (max-width: 1024px) {
  .navbar .desktop {
      display: none !important;
  }

  .nav-action {
      display: none !important;
  }


  /* -------------------------------
   MOBILE STYLE FOR PROVINCE LIST
----------------------------------*/

  /* Force mapwrap into single column layout */
  .mapwrap {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 40px !important;
    text-align: center !important;
    padding: 0 20px 40px 20px !important;
    border-bottom: none !important;
  }

  /* Left list goes full width */
  .left {
    width: 100% !important;
    text-align: center !important;
    order: 1;
  }

  .choose-title {
    text-align: center !important;
  }

  /* Map container becomes full width, stacked center */
  .map-container {
    position: relative;
    width: 100%;
    border-radius: 8px;
    background: transparent;
    display:flex;
    align-items:center;
    transform: translate(0%,0%);
    justify-content:center;
    overflow:hidden;
  }

  
  svg#sa-map {
    width: 80%;
    transform: translate(35%, 0%);
    height: auto;
  }


  #svgWrapper{
    width: 100%;
    height: 500px;
    display:flex; 
    align-items:center; 
    justify-content:center;
  }

  /* Info card moves below map */
  .info {
    width: 100% !important;
    order: 3;
    text-align: center !important;
    padding: 20px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }



  .mapwrap {
    width: 100%;
    text-align: center;
    margin: 0 auto;
    padding-bottom: 30px;
    border-bottom: 1px solid #000;
  }

  .choose-title {
    width: 100%;
    text-align: center;
    font-weight: bold;
    font-size: 32px;
    padding: 20px 0;
  }

  .left {
    width: 100%;
    align-items: center;
  }

  .province-list {
    width: 100%;
    display: flex;
    overflow-x: scroll;
    overflow-y: hidden;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: none;
    align-items: center;
    padding-bottom: 10px;
    margin: 0;
    padding-top: 10px;
  }

  .province-list::-webkit-scrollbar {
    display: none;
  }

  .province-item {
    flex: 0 0 33.333%;
    text-align: center;
    padding: 20px 0;
    background: none;
    border-radius: 10px;
    font-size: 14px;
    transition: all .25s ease;
    transform: scale(.85);
    opacity: .6;
    list-style: none;
    position: relative;
  }

  .province-item span {
    pointer-events: none;
  }

  /* ACTIVE PROVINCE */
  .province-item.active {
    background: none;
    color: #d5b034;
    transform: scale(1.6);
    opacity: 1;
  }

  /* UNDERLINE EFFECT */
  .province-item::after {
    position: absolute;
    content: "";
    bottom: 10px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #d5b034;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.28s cubic-bezier(0.6, 0, 0.4, 1);
  }

  .province-item.active::after {
    transform: scaleX(1);
  }




  .navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Turn top nav into 2-column grid */
.logo,
.menu-toggle {
    display: block;
}

.navbar {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    align-items: center;
    padding: 10px 20px;
}

.logo {
    justify-self: start;
}

.menu-toggle {
    justify-self: end;
    display: flex !important;
    justify-content: flex-end;
    align-items: center;
}

/* Overlay */
.menu-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #fff;
    padding-left: 6cqw;
    z-index: 2;
    clip-path: polygon(0% 0%, 100% 0%, 100% 0%, 0% 0%);
}

/* Menu content */
.menu-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: block;
    justify-content: center;
    align-items: center;
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
    will-change: transform, opacity;
}

/* Layout */
.menu-items,
.menu-footer {
    width: 100%;
    padding: 2.5em;
    display: flex;
    gap: 2.5em;
}

.col-lg { flex: 3; }
.col-sm { flex: 2; }

/* Preview Image */
.menu-items .col-lg {
    display: flex;
    justify-content: center;
    align-items: center;
}

.menu-preview-img {
    position: relative;
    width: 45%;
    height: 100%;
    overflow: hidden;
}

.menu-preview-img img {
    position: absolute;
    will-change: transform, opacity;
}

/* Links */
.menu-links,
.menu-social {
    display: flex;
    flex-direction: column;
    gap: 0.5em;
  
}

.link,
.social {
    padding-bottom: 6px;
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
    
}

/* MAIN LINKS */
.link a {
    font-size: 3.5rem;
    letter-spacing: -0.02rem;
    transform: translateY(120%);
    opacity: 1;
    color: #767676 !important;
}

/* Pure white hover fix */
.link a:hover {
    opacity: 1;
    color: #d5b034 !important;
}

.link a:hover::after {
    transform: scaleX(1);
    background: #d5b034!important;
}

/* SOCIAL LINKS — FIXED TO MATCH MAIN LINKS BEHAVIOR */
.social a {
    color: #000000;
    opacity: 1;
    transform: translateY(120%); /* SAME AS .link a */
}

.social a:hover {
    opacity: 1;
    color: #d5b034;
}

/* underline animation */
.link a::after,
.social a::after,
.menu-footer a::after {
    position: absolute;
    content: "";
    top: 102.5%;
    left: 0;
    width: 100%;
    height: 2px;
    background: #fff;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s cubic-bezier(0.6, 0, 0.4, 1);
}

.menu-footer {
    position: absolute;
    bottom: 0;
}

.menu-footer .col-sm {
    display: flex;
    justify-content: space-between;
}

#svgWrapper{
  width: 100%;
  height: 500px;
  display:flex; 
  transform: translate(-30%, 0%);
  align-items:center; 
  justify-content:center;
}




}

/* =========================================================
   FULLSCREEN HERO IMAGE + RIGHT NOTIFICATION CARD
   Add this at the VERY BOTTOM of home.css
========================================================= */

.hero {
  position: relative;
  width: 100vw;
  height: 100svh;
  overflow: hidden;
}

/* The video-container becomes the full hero background */
.video-container {
  position: absolute;
  inset: 0;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100svh;
  transform: none;
  background-color: #111;
  margin-bottom: 0 !important;
  clip-path: none !important;
  overflow: hidden;
  z-index: 1;
}

/* The hero image fills the whole screen */
.video-container > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 115%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: translateY(-12.5%);
  display: block;
  z-index: 1;
}

/* Optional dark overlay for readability */
.video-container::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.58) 0%,
    rgba(0, 0, 0, 0.36) 42%,
    rgba(0, 0, 0, 0.18) 100%
  );
  z-index: 2;
  pointer-events: none;
}

/* Hero text stays above the background image */
.header {
  position: absolute;
  top: 63%;
  left: clamp(24px, 7vw, 96px);
  width: min(44vw, 620px);
  z-index: 4;
  transform: translateY(-50%);
}

.header h1 span {
  font-size: 92px !important;
  line-height: 0.9 !important;
  letter-spacing: 0 !important;
  font-weight: 700 !important;
}

.header p span {
  font-size: 23px !important;
  line-height: 1.18 !important;
  letter-spacing: 0 !important;
  font-weight: 500 !important;
}

@media (max-width: 1024px) {
  .header h1 span {
    font-size: 72px !important;
  }

  .header p span {
    font-size: 20px !important;
  }
}

@media (max-width: 768px) {
  .header h1 span {
    font-size: 50px !important;
  }

  .header p span {
    font-size: 17px !important;
  }
}

@media (max-width: 480px) {
  .header h1 span {
    font-size: 42px !important;
  }

  .header p span {
    font-size: 15px !important;
  }
}

/* Notification card sits on the right over the hero image */
.event-panel {
  position: absolute;
  top: 70%;
  right: clamp(24px, 6vw, 92px);
  transform: translateY(-50%);
  width: min(48vw, 680px);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

/* Filter tabs */
.event-tabs {
  display: flex;
  align-items: center;
  gap: 6px;
  width: 100%;
  max-width: 100%;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.58);
  backdrop-filter: blur(16px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
}

.event-tab {
  border: none;
  outline: none;
  flex: 1;
  min-height: 38px;
  padding: 10px 12px;
  border-radius: 6px;
  background: transparent;
  color: rgba(255, 255, 255, 0.86);
  font-family: "main", sans-serif;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.25s ease;
}

.event-tab.active,
.event-tab:hover {
  background: #d5b034;
  color: #fff;
}

/* Notification card */
.event-card {
  display: flex;
  align-items: stretch;
  width: 100%;
  gap: 22px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(18px);
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.32);
}

/* Image inside notification */
.event-card-img {
  flex: 0 0 220px;
  min-height: 220px;
  overflow: hidden;
  border-radius: 6px;
}

.event-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Notification text */
.event-card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 10px 10px 10px 0;
}

.event-date {
  width: fit-content;
  margin-bottom: 10px;
  padding: 6px 10px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.9);
  font-family: "main", sans-serif;
  font-size: 12px;
  font-weight: 700;
}

.event-card-content h3 {
  margin: 0 0 10px;
  color: #fff;
  font-family: "main", sans-serif;
  font-size: 26px;
  line-height: 1.15;
  font-weight: 600 !important;
}

.event-card-content p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.78);
  font-family: "main", sans-serif;
  font-size: 15px;
  line-height: 1.4;
  font-weight: 300;
}

.event-btn {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 10px 18px;
  border-radius: 6px;
  background: #000000;
  color: #fff;
  font-family: "main", sans-serif;
  font-size: 13px;
  font-weight: 400;
  text-decoration: none;
  transition: all 0.25s ease;
}

.event-btn:hover {
  background: #d5b034;
  transform: translateY(-2px);
}

@media (max-width: 980px) {
  .header {
    top: 42%;
    left: 24px;
    width: calc(100vw - 48px);
  }

  .event-panel {
    top: auto;
    right: 24px;
    bottom: 28px;
    left: 24px;
    width: auto;
    transform: none;
  }
}

@media (max-width: 620px) {
  .event-tabs {
    overflow-x: auto;
    scrollbar-width: none;
  }

  .event-tabs::-webkit-scrollbar {
    display: none;
  }

  .event-tab {
    flex: 0 0 auto;
    min-width: 82px;
  }

  .event-card {
    gap: 12px;
    padding: 12px;
  }

  .event-card-img {
    flex-basis: 128px;
    min-height: 154px;
  }

  .event-card-content {
    padding: 4px 4px 4px 0;
  }

  .event-card-content p {
    display: none;
  }

  .event-card-content h3 {
    font-size: 20px;
  }

  .event-btn {
    margin-top: 2px;
  }
}

/* =========================================================
   BUTTON + ACCENT OVERRIDES
========================================================= */
:root {
  --site-accent: #d5b034;
}

.nav-action,
.navbar .desktop li a.btn,
.event-tab,
.event-btn,
.case-card-arrow,
.case-nav,
.service-button,
.right-content a,
.fuel-text a {
  background: #000 !important;
  background-color: #000 !important;
  border-color: #000 !important;
  color: #fff !important;
}

.nav-action:hover,
.navbar .desktop li a.btn:hover,
.event-tab:hover,
.event-btn:hover,
.case-card-arrow:hover,
.case-nav:hover,
.service-button:hover,
.right-content a:hover,
.fuel-text a:hover {
  background: var(--site-accent) !important;
  background-color: var(--site-accent) !important;
  border-color: var(--site-accent) !important;
  color: #fff !important;
}

.beneficiary-toggle::after {
  background: #000;
  border-color: #000;
  color: #fff;
}

.beneficiary-toggle:hover::after,
.beneficiary-item.active .beneficiary-toggle::after {
  background: var(--site-accent);
  border-color: var(--site-accent);
  color: #fff;
}
