/* =============================================================
   JADEED GROUP OF COMPANIES — WEBSITE STYLESHEET
   Normal, hand-written CSS (no framework / no build step).
   Organized top-to-bottom exactly like the page: every section
   is wrapped in a START / END comment so you can find it fast.
   ============================================================= */

/* -------------------------------------------------------------
   1. RESET
   ------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; background: none; border: 0; cursor: pointer; }

/* -------------------------------------------------------------
   2. DESIGN TOKENS  (colors, spacing scale, shadows, gradients)
   Change a value here and it updates the whole site.
   ------------------------------------------------------------- */
:root {
  /* Base palette */
  --background: #ffffff;
  --foreground: #14151c;
  --card: #ffffff;
  --muted: #f3f3f6;
  --muted-foreground: #6c6f7c;
  --border: #e2e2e8;

  /* Brand palette */
  --brand-red: #d1263f;
  --brand-navy: #2c2f52;
  --brand-navy-deep: #14152a;

  /* Derived effects */
  --gradient-brand: linear-gradient(135deg, var(--brand-red) 0%, var(--brand-navy) 100%);
  --gradient-hero: linear-gradient(180deg, rgba(20, 21, 42, 0.55) 0%, rgba(10, 11, 22, 0.9) 100%);
  --shadow-card: 0 4px 24px rgba(20, 21, 42, 0.08);
  --shadow-elegant: 0 16px 48px rgba(20, 21, 42, 0.18);

  /* Fonts */
  --font-body: "Inter", sans-serif;
  --font-heading: "Poppins", sans-serif;

  /* Layout */
  --container-max: 80rem;      /* max-w-7xl */
  --gutter: 1.5rem;            /* px-6 */
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
}
/* ==========================================================================
   Header / Navigation — Jadeed Group
   ========================================================================== */

:root {
  --brand-red: #c1272d;
  --brand-navy: #1a2b4c;
  --border-color: #e7e7ea;
  --text-color: #1c1c1e;
  --nav-transition: 200ms ease;
}

/* ---------- Header shell ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
}

.site-header__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0.65rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

/* ---------- Logo ---------- */
.site-header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.site-header__logo-img {
  height: 3.25rem;
  width: auto;
  display: block;
}

/* ---------- Nav list (desktop defaults) ---------- */
.site-nav__list {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav__item { position: relative; }

.site-nav__link {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.65rem 1rem;
  font-family: inherit;
  font-size: 0.925rem;
  font-weight: 500;
  color: var(--text-color);
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 0.5rem;
  transition: color var(--nav-transition), background-color var(--nav-transition);
  white-space: nowrap;
}

.site-nav__link:hover,
.site-nav__link:focus-visible,
.site-nav__link.is-active {
  color: var(--brand-red);
  background-color: rgba(193, 39, 45, 0.06);
}

.site-nav__link:focus-visible {
  outline: 2px solid var(--brand-red);
  outline-offset: 2px;
}

/* Chevron */
.site-nav__chevron {
  transition: transform var(--nav-transition);
  flex-shrink: 0;
}
.site-nav__item--dropdown[data-open="true"] .site-nav__chevron,
.site-nav__item--dropdown:hover .site-nav__chevron {
  transform: rotate(180deg);
}

/* ---------- Dropdown panel (desktop defaults) ---------- */
.site-nav__dropdown {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  min-width: 220px;
  list-style: none;
  margin: 0;
  padding: 0.5rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 12px 32px -8px rgba(0, 0, 0, 0.16), 0 4px 12px -4px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.06);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  z-index: 50;
}
.site-nav__item--dropdown:hover .site-nav__dropdown,
.site-nav__item--dropdown[data-open="true"] .site-nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.site-nav__dropdown-link {
  display: block;
  padding: 0.6rem 0.85rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-color);
  text-decoration: none;
  border-radius: 8px;
  transition: color 0.2s ease, background-color 0.2s ease, padding-left 0.2s ease;
}
.site-nav__dropdown-link:hover,
.site-nav__dropdown-link:focus-visible {
  color: var(--brand-red);
  background-color: rgba(193, 39, 45, 0.06);
  padding-left: 1.1rem;
}
.site-nav__dropdown-link:focus-visible {
  outline: 2px solid var(--brand-red);
  outline-offset: -2px;
}

/* Bridge gap so hover doesn't flicker between link and dropdown */
.site-nav__item--dropdown::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 0.5rem;
}

/* ---------- "Let's Chat" CTA button ---------- */
.site-header__cta {
  display: none;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.4rem;
  border-radius: 999px;
  background: var(--brand-red);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  flex-shrink: 0;
  transition: background-color var(--nav-transition), transform var(--nav-transition);
}
.site-header__cta:hover {
  background: var(--brand-navy);
  transform: translateY(-1px);
}
.site-header__cta-icon {
  width: 1rem;
  height: 1rem;
  transition: transform var(--nav-transition);
}
.site-header__cta:hover .site-header__cta-icon {
  transform: translateX(3px);
}

/* ---------- Mobile hamburger toggle ---------- */
.site-header__toggle {
  display: flex; /* mobile-default: visible. Desktop media query hides it below */
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  color: var(--text-color);
  flex-shrink: 0;
  transition: background-color var(--nav-transition);
}
.site-header__toggle:hover { background-color: rgba(0, 0, 0, 0.05); }

/* animate the 3 lines into an "X" when menu is open */
.icon-line { transition: transform 0.3s ease, opacity 0.3s ease; transform-origin: center; }
.site-header__toggle[aria-expanded="true"] .icon-line--top {
  transform: translateY(6px) rotate(45deg);
}
.site-header__toggle[aria-expanded="true"] .icon-line--mid {
  opacity: 0;
}
.site-header__toggle[aria-expanded="true"] .icon-line--bottom {
  transform: translateY(-6px) rotate(-45deg);
}

/* ==========================================================================
   Mobile layout (< 992px) — EVERYTHING mobile-only lives inside this ONE block
   ========================================================================== */
@media (max-width: 991px) {
  .site-nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(340px, 100%);
    height: 100vh;
    background: #fff;
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.12);
    transform: translateX(100%);
    transition: transform 0.35s ease;
    overflow-y: auto;
    padding: 5.5rem 1.5rem 2rem;
    z-index: 60;
  }

  .site-nav.is-open {
    transform: translateX(0);
  }

  .site-nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0.2rem;
  }

  .site-nav__link {
    width: 100%;
    justify-content: space-between;
    padding: 0.85rem 0.75rem;
    font-size: 1.02rem;
  }

  .site-nav__dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: rgba(193, 39, 45, 0.03);
    max-height: 0;
    overflow: hidden;
    padding: 0 0.5rem;
    transition: max-height 0.3s ease, padding 0.3s ease;
  }

  .site-nav__item--dropdown[data-open="true"] .site-nav__dropdown {
    max-height: 400px;
    padding: 0.5rem;
  }
}

/* ==========================================================================
   Desktop layout (>= 992px)
   ========================================================================== */
@media (min-width: 992px) {
  .site-nav {
    position: static;
    transform: none;
    height: auto;
    width: auto;
    background: transparent;
    box-shadow: none;
    padding: 0;
    overflow: visible;
  }

  .site-header__cta { display: inline-flex; }
  .site-header__toggle { display: none; }
}



/* =========================
   HERO SECTION
========================= */
.hero{
    position: relative;
    height: 90vh;
    min-height: 560px;
    background: #101f3a; /* fallback color while video loads */
}
.hero-video{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}

/* darker, more layered overlay = better text contrast + more "premium" feel */
.hero-overlay{
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(10,14,30,.35) 0%, rgba(10,14,30,.55) 55%, rgba(10,14,30,.85) 100%),
        linear-gradient(135deg, rgba(229,30,37,.45), rgba(16,38,87,.75));
    z-index: 2;
}

.hero-content{
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1200px;
    height: 100%;
    margin: 0 auto;
    padding: clamp(120px, 20vh, 190px) 20px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-badge {
    display: inline-block;
    width: fit-content;
    background: #fff;
    color: #d22139;
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    border-radius: 5px;
    opacity: 0;
    animation: heroUp .7s ease forwards;
}

.hero-title {
    margin-top: 25px;
    font-size: clamp(2.4rem, 6vw, 6.25rem); /* smooth scaling, no jump between breakpoints */
    font-weight: 600;
    line-height: 1.05;
    color: #fff;
    max-width: 850px;
    text-shadow: 0 4px 24px rgba(0,0,0,.25);
    opacity: 0;
    animation: heroUp .7s ease .1s forwards;
}
.hero-title span {
    color: #ff4d5e; /* slightly brighter red so it pops on video */
}

.hero-text {
    margin-top: 25px;
    max-width: 650px;
    color: rgba(255,255,255,.9);
    font-size: clamp(15px, 1.6vw, 18px);
    line-height: 1.8;
    opacity: 0;
    animation: heroUp .7s ease .2s forwards;
}

.hero-buttons {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    opacity: 0;
    animation: heroUp .7s ease .3s forwards;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: .3s;
    white-space: nowrap;
}
.btn-icon{ width: 16px; height: 16px; transition: transform .3s; }
.btn-primary:hover .btn-icon{ transform: translateX(4px); }

.btn-primary {
    background: #d22139;
    color: #fff;
    box-shadow: 0 8px 24px rgba(210,33,57,.35);
}
.btn-primary:hover {
    background: #fff;
    color: #1b2744;
    box-shadow: 0 8px 24px rgba(0,0,0,.2);
}
.btn-outline {
    border: 1px solid rgba(255,255,255,.5);
    color: #fff;
    backdrop-filter: blur(8px);
}
.btn-outline:hover {
    background: rgba(255,255,255,.15);
    border-color: #fff;
}

/* small bouncing scroll-cue at the bottom of the hero */
.hero-scroll{
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255,255,255,.6);
    border-radius: 50px;
}
.hero-scroll span{
    position: absolute;
    top: 6px;
    left: 50%;
    width: 4px;
    height: 8px;
    margin-left: -2px;
    background: #fff;
    border-radius: 2px;
    animation: scrollDot 1.6s ease infinite;
}

@keyframes heroUp{
    from{ opacity:0; transform: translateY(18px); }
    to{ opacity:1; transform: translateY(0); }
}
@keyframes scrollDot{
    0%{ opacity:1; top:6px; }
    70%{ opacity:0; top:20px; }
    100%{ opacity:0; top:6px; }
}

/* Respect users who prefer less motion */
@media (prefers-reduced-motion: reduce){
    .hero-badge, .hero-title, .hero-text, .hero-buttons{
        animation: none;
        opacity: 1;
    }
    .hero-scroll span{ animation: none; }
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 992px){
    .hero{ height: 80vh; }
    .hero-content{
        padding: 120px 20px 80px;
    }
}

@media (max-width: 768px){
    .hero{ height: 75vh; min-height: 500px; }
    .hero-text{ line-height: 1.7; }
    .hero-buttons{
        flex-direction: column;
        align-items: stretch;
    }
    .btn{ width: 100%; }
    .hero-scroll{ display: none; } /* saves space on small screens */
}

@media (max-width: 480px){
    .hero-badge{ font-size: 11px; padding: 7px 14px; letter-spacing: 2px; }
    .hero-content{ padding-top: 100px; }
}


/* =========================
   ABOUT SECTION — PREMIUM
========================= */
.jd-about{
    position: relative;
    padding: clamp(70px, 10vw, 130px) 20px;
    overflow: hidden;
    background: #fbfbfd;
}

/* faint decorative background texture behind the copy */
.jd-about__field{
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 8% 15%, rgba(210,33,57,.05), transparent 45%),
        radial-gradient(circle at 95% 85%, rgba(27,39,68,.06), transparent 45%);
    pointer-events: none;
}

.jd-about__container{
    max-width: 1200px;
    grid-template-columns: 0.85fr 1.15fr;
    gap: clamp(40px, 6vw, 90px);
    align-items: center;
    justify-items: stretch; 
}

/* ---------- copy column ---------- */
.jd-about__eyebrow-row{
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0;
    animation: aboutUp .7s ease forwards;
}
.jd-about__line{
    width: 0;
    height: 2px;
    background: #d22139;
    animation: lineGrow .8s ease .3s forwards;
}
.jd-about__eyebrow{
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #d22139;
}

.jd-about__title{
    margin-top: 18px;
    font-size: clamp(2rem, 3.6vw, 2.9rem);
    font-weight: 700;
    line-height: 1.2;
    color: #1b2744;
    opacity: 0;
    animation: aboutUp .7s ease .1s forwards;
}
.jd-about__title em{
    font-style: normal;
    position: relative;
    color: #d22139;
}
.jd-about__title em::after{
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: 2px;
    height: 8px;
    background: rgba(210,33,57,.15);
    z-index: -1;
    border-radius: 4px;
}

.jd-about__lead{
    margin-top: 22px;
    max-width: 100%;
    color: #5b6172;
    font-size: 16px;
    line-height: 1.8;
    opacity: 0;
    animation: aboutUp .7s ease .2s forwards;
}

.jd-about__quote{
    margin-top: 26px;
    position: relative;
    padding: 20px 24px 20px 30px;
    background: #fff;
    border-left: 3px solid #d22139;
    border-radius: 0 14px 14px 0;
    box-shadow: 0 10px 30px rgba(27,39,68,.06);
    font-style: italic;
    color: #1b2744;
    opacity: 0;
    animation: aboutUp .7s ease .3s forwards;
}
.jd-about__quote::before{
    content: "\201C";
    position: absolute;
    top: -14px;
    left: 16px;
    font-size: 60px;
    font-family: Georgia, serif;
    color: rgba(210,33,57,.18);
    line-height: 1;
}
.jd-about__quote p{ position: relative; z-index: 1; margin: 0; }

.jd-about__pillars{
    margin-top: 30px;
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    opacity: 0;
    animation: aboutUp .7s ease .4s forwards;
}
.jd-about__pillar{
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: #fff;
    border: 1px solid #eceef3;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 600;
    color: #1b2744;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease, background .3s ease;
}
.jd-about__pillar:hover{
    transform: translateY(-4px);
    border-color: transparent;
    background: #1b2744;
    color: #fff;
    box-shadow: 0 14px 30px rgba(27,39,68,.25);
}
.jd-about__pillar-icon{
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    border-radius: 10px;
    background: rgba(210,33,57,.08);
    color: #d22139;
    transition: background .3s ease, transform .3s ease;
}
.jd-about__pillar-icon svg{ width: 18px; height: 18px; }
.jd-about__pillar:hover .jd-about__pillar-icon{
    background: #d22139;
    color: #fff;
    transform: rotate(-8deg) scale(1.05);
}

.jd-about__actions{
    margin-top: 34px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 28px;
    opacity: 0;
    animation: aboutUp .7s ease .5s forwards;
}
.jd-about__cta{
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 30px;
    border-radius: 50px;
    background: #1b2744;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    overflow: hidden;
    z-index: 1;
    transition: color .35s ease, box-shadow .35s ease;
}
.jd-about__cta::before{
    content: "";
    position: absolute;
    inset: 0;
    background: #d22139;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s ease;
    z-index: -1;
}
.jd-about__cta:hover::before{ transform: scaleX(1); }
.jd-about__cta:hover{ box-shadow: 0 10px 26px rgba(210,33,57,.35); }
.jd-about__cta-icon{ width: 16px; height: 16px; transition: transform .3s ease; }
.jd-about__cta:hover .jd-about__cta-icon{ transform: translateX(4px); }

.jd-about__call-label{ display: block; font-size: 13px; color: #8a8f9c; }
.jd-about__call-number{
    font-weight: 700;
    color: #d22139;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color .3s ease;
}
.jd-about__call-number:hover{ border-color: #d22139; }

/* ---------- gallery column: single premium image + floating stat ---------- */
.jd-about__gallery{
    position: relative;
    width: 100%;          /* ye line add karein */
    max-width: 100%;      /* ye bhi add karein */
    opacity: 0;
    animation: aboutFade .9s ease .2s forwards;
}

.jd-about__frame{
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(27,39,68,.22);
}
.jd-about__image{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform .8s ease;
}
.jd-about__frame:hover .jd-about__image{ transform: scale(1.08); }

/* subtle bottom-to-top shade so any caption/edge stays readable & premium */
.jd-about__image-shade{
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11,14,24,0) 55%, rgba(11,14,24,.45) 100%);
    pointer-events: none;
}

/* thin corner accents — gives a "framed photograph" premium touch */
.jd-about__corner{
    position: absolute;
    width: 54px;
    height: 54px;
    pointer-events: none;
}
.jd-about__corner--tl{
    top: 18px; left: 18px;
    border-top: 2px solid rgba(255,255,255,.8);
    border-left: 2px solid rgba(255,255,255,.8);
    border-radius: 10px 0 0 0;
}
.jd-about__corner--br{
    bottom: 18px; right: 18px;
    border-bottom: 2px solid rgba(255,255,255,.8);
    border-right: 2px solid rgba(255,255,255,.8);
    border-radius: 0 0 10px 0;
}

/* floating stat card, overlapping the bottom-left of the photo */
.jd-about__badge{
    position: absolute;
    left: -28px;
    bottom: -28px;
    width: 148px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    background: linear-gradient(135deg, #d22139, #1b2744);
    box-shadow: 0 16px 40px rgba(210,33,57,.35), 0 0 0 8px #fbfbfd;
    transition: transform .4s ease, box-shadow .4s ease;
}
.jd-about__badge:hover{
    transform: translateY(-6px) rotate(-3deg);
    box-shadow: 0 22px 50px rgba(210,33,57,.45), 0 0 0 8px #fbfbfd;
}
.jd-about__badge-ring{
    position: absolute;
    inset: 10px;
    color: rgba(255,255,255,.5);
    animation: ringSpin 18s linear infinite;
}
.jd-about__badge-number{
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}
.jd-about__badge-label{
    margin-top: 6px;
    font-size: 10.5px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    line-height: 1.4;
    opacity: .9;
}

/* ---------- animations ---------- */
@keyframes aboutUp{
    from{ opacity: 0; transform: translateY(18px); }
    to{ opacity: 1; transform: translateY(0); }
}
@keyframes aboutFade{
    from{ opacity: 0; transform: scale(.97); }
    to{ opacity: 1; transform: scale(1); }
}
@keyframes lineGrow{
    to{ width: 40px; }
}
@keyframes ringSpin{
    to{ transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce){
    .jd-about__eyebrow-row, .jd-about__title, .jd-about__lead,
    .jd-about__quote, .jd-about__pillars, .jd-about__actions,
    .jd-about__gallery, .jd-about__badge-ring{
        animation: none !important;
        opacity: 1 !important;
    }
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 992px){
    .jd-about__container{
        grid-template-columns: 1fr;
    }
    .jd-about__gallery{
        order: -1;
    }
    .jd-about__frame{ aspect-ratio: 16 / 10; }
    .jd-about__badge{
        width: 120px;
        left: 20px;
        bottom: -24px;
    }
}

@media (max-width: 560px){
    .jd-about__pillars{ grid-template-columns: 1fr; }
    .jd-about__title{ font-size: 1.7rem; }
    .jd-about__actions{ flex-direction: column; align-items: flex-start; gap: 16px; }
    .jd-about__badge{
        width: 100px;
        left: 16px;
        bottom: -20px;
    }
    .jd-about__badge-number{ font-size: 1.9rem; }
    .jd-about__badge-label{ font-size: 9px; }
}

/* -------------------------------------------------------------
   3. BASE TYPOGRAPHY
   ------------------------------------------------------------- */
body {
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-body);
  line-height: 1.5;
  min-height: 100vh;
}
h1, h2, h3 { font-family: var(--font-heading); line-height: 1.2; }

/* -------------------------------------------------------------
   4. SHARED / REUSABLE COMPONENTS
   Used across many sections so they live in one place instead
   of being repeated.
   ------------------------------------------------------------- */

/* page-width wrapper, used inside every section */
.container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* small red uppercase label above a heading, e.g. "Our Services" */
.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--brand-red);
}

/* big section heading under an eyebrow */
.section-title {
  margin-top: 0.75rem;
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--brand-navy);
}
@media (min-width: 48rem) {
  .section-title { font-size: 3rem; }
}

/* rounded pill buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 999px;
  padding: 0.875rem 1.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.btn-red { background: var(--brand-red); color: #fff; }
.btn-red:hover { background: #fff; color: var(--brand-navy); }
.btn-navy { background: var(--brand-navy); color: #fff; }
.btn-navy:hover { background: var(--brand-red); }
.btn-outline { border: 1px solid rgba(255, 255, 255, 0.4); color: #fff; backdrop-filter: blur(4px); }
.btn-outline:hover { background: rgba(255, 255, 255, 0.1); }

/* numbers rendered with the brand gradient (1975, 25+, 2500+ ...) */
.gradient-text {
  background: var(--gradient-brand);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* small red dot used in front of list items */
.dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--brand-red);
  flex-shrink: 0;
}

/* white card with soft shadow, used by several grids */
.card {
  background: var(--card);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

/* =============================================================
   5. TOP UTILITY BAR  (email / phone / social icons)
   ============================================================= */
.topbar {
  background: var(--brand-navy-deep);
  color: #fff;
  font-size: 0.75rem;
}
.topbar .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding-block: 0.5rem;
}
.topbar__contacts { display: flex; align-items: center; gap: 1rem; }
.topbar__item { display: flex; align-items: center; gap: 0.375rem; }
.topbar__phone { display: none; }
.topbar__social { display: flex; align-items: center; gap: 0.75rem; }
.topbar__social-label { opacity: 0.7; }
.topbar__social a:hover { color: var(--brand-red); }
.topbar svg { width: 0.875rem; height: 0.875rem; }

@media (min-width: 40rem) {
  .topbar__phone { display: flex; }
}
/* ===================== END TOP UTILITY BAR ===================== */


/* =============================================================
   6. HEADER / NAVIGATION
   ============================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.75rem;
}
.site-header__logo img { height: 3.5rem; width: auto; }

.site-nav {
  align-items: center;
  gap: 2rem;
  font-size: 0.875rem;
  font-weight: 500;
}
.site-nav a:hover { color: var(--brand-red); }

.site-header__cta { display: none; }
.site-header__menu-btn { padding: 0.5rem; }
.site-header__menu-btn svg { width: 1.5rem; height: 1.5rem; }

@media (min-width: 64rem) {
  .site-nav { display: flex; }
  .site-header__cta { display: inline-flex; }
  .site-header__menu-btn { display: none; }
}
/* ===================== END HEADER / NAVIGATION ===================== */


/* =============================================================
   7. HERO
   ============================================================= */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
}
.hero__content {
  position: relative;
  padding-block: 8rem;
}
@media (min-width: 48rem) {
  .hero__content { padding-block: 11rem; }
}
.hero__badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--brand-red);
  background: rgba(255, 255, 255, 0.95);
  padding: 0.375rem 0.75rem;
  border-radius: 0.25rem;
}
.hero__title {
  margin-top: 1.5rem;
  max-width: 56rem;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.05;
  color: #fff;
}
.hero__title span { color: var(--brand-red); }
@media (min-width: 48rem) {
  .hero__title { font-size: 4.5rem; }
}
.hero__text {
  margin-top: 1.5rem;
  max-width: 42rem;
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.85);
}
.hero__actions {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
/* ===================== END HERO ===================== */


/* =============================================================
   2. ABOUT
   ============================================================= */
.jd-about {
  position: relative;
  padding-block: 6rem;
  overflow: hidden;
}
.jd-about__field { position: absolute; inset: 0; pointer-events: none; }
.jd-about__container {
  position: relative;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: grid;
  gap: 4rem;
  align-items: center;
}
@media (min-width: 64rem) {
  .jd-about__container { grid-template-columns: 2fr 1fr; }
}
.jd-about__eyebrow-row { display: flex; align-items: center; gap: 0.75rem; }
.jd-about__line { width: 2.5rem; height: 2px; background: var(--brand-red); }
.jd-about__eyebrow {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--brand-red);
}
.jd-about__title {
  margin-top: 0.75rem;
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--brand-navy);
}
.jd-about__title em { color: var(--brand-red); font-style: normal; }
@media (min-width: 48rem) {
  .jd-about__title { font-size: 3rem; }
}
.jd-about__lead {
  margin-top: 1.5rem;
  color: var(--muted-foreground);
  line-height: 1.625;
}
.jd-about__quote {
  margin-top: 1.5rem;
  padding: 1.25rem 1.5rem;
  border-left: 3px solid var(--brand-red);
  background: var(--muted);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  font-style: italic;
  color: var(--brand-navy);
}
.jd-about__pillars {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
.jd-about__pillar {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  background: var(--muted);
  border-radius: var(--radius-lg);
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--brand-navy);
}
.jd-about__pillar-icon { width: 1.25rem; height: 1.25rem; color: var(--brand-red); }
.jd-about__pillar-icon svg { width: 100%; height: 100%; }
.jd-about__actions { margin-top: 2.5rem; display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.jd-about__cta {
  display: inline-flex; align-items: center; gap: 0.5rem;
  border-radius: 999px; background: var(--brand-navy); color: #fff;
  padding: 0.75rem 1.5rem; font-size: 0.875rem; font-weight: 600;
  transition: background-color 0.2s ease;
}
.jd-about__cta:hover { background: var(--brand-red); }
.jd-about__cta-icon { width: 1rem; height: 1rem; }
.jd-about__call-label { display: block; font-size: 0.875rem; color: var(--muted-foreground); }
.jd-about__call-number { font-weight: 700; color: var(--brand-red); }

.jd-about__gallery { 
grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.jd-about__tile {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-card);
}
.jd-about__tile img { width: 100%; height: 100%; object-fit: cover; }
.jd-about__tile figcaption {
  position: absolute; inset: auto 0 0 0;
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: linear-gradient(to top, rgba(20,21,42,0.85), transparent);
  color: #fff; font-weight: 600; font-size: 0.875rem;
}
.jd-about__tile-tag { color: var(--brand-red); font-weight: 700; }
.jd-about__stat {
  position: relative;
  border-radius: var(--radius-xl);
  background: var(--gradient-brand);
  color: #fff;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 1.5rem;
  aspect-ratio: 4 / 3;
}
.jd-about__stat-ring { position: absolute; inset: 0.75rem; opacity: 0.5; }
.jd-about__stat-number { font-size: 2.5rem; font-weight: 700; }
.jd-about__stat-label { margin-top: 0.5rem; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; opacity: 0.85; }
/* ===================== END ABOUT ===================== */

/* =========================================================
   SERVICES — Interactive Expanding Panels
   ========================================================= */

.services {
  position: relative;
  padding: clamp(4rem, 8vw, 8rem) 0;
  background: var(--muted, #f6f5f2);
}

.services__container {
  max-width: 1360px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

/* ---------- Header ---------- */
.services__header {
  max-width: 760px;
  margin: 0 auto 3.5rem;
  text-align: center;
}

.services__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--brand-red);
}

.services__eyebrow-line {
  width: 28px;
  height: 2px;
  background: var(--brand-red);
  border-radius: 2px;
}

.services__title {
  margin-top: 1.25rem;
  width: 100%;
  font-size: clamp(2rem, 4vw, 2.85rem);
  line-height: 1.25;
  font-weight: 800;
  color: var(--brand-navy);
  letter-spacing: -0.01em;
}

.services__title-accent {
  color: var(--brand-red);
}

.services__lead {
  margin-top: 1.1rem;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--muted-foreground, #667085);
  margin-inline: auto;
  max-width: 52ch;
}

/* ---------- Panels row ---------- */
.services__panels {
  display: flex;
  align-items: stretch;
  gap: .75rem;
  height: clamp(420px, 55vw, 560px);
}

.panel {
  position: relative;
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: none;
  border-radius: 1.25rem;
  overflow: hidden;
  cursor: pointer;
  padding: 0;
  background: var(--brand-navy);
  color: #fff;
  text-align: left;
  font-family: inherit;
  transition: flex-grow .6s cubic-bezier(.22,.61,.36,1), box-shadow .4s ease;
  box-shadow: 0 10px 30px -14px rgba(20, 20, 30, .25);
}

.panel:hover,
.panel:focus-visible {
  box-shadow: 0 24px 48px -18px rgba(20, 20, 30, .35);
}

.panel.is-active {
  flex-grow: 5.5; /* expanded panel takes the lion's share of the row */
}

.panel:not(.is-active) {
  flex-grow: 1;
}

.panel:focus-visible {
  outline: 2px solid #fff;
  outline-offset: -4px;
}

/* background image */
.panel__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.panel__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  transition: transform 1s ease;
}
.panel.is-active .panel__bg img {
  transform: scale(1);
}

/* dark gradient so text is always readable */
.panel__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to top,
    rgba(10, 14, 26, .92) 0%,
    rgba(10, 14, 26, .55) 42%,
    rgba(10, 14, 26, .25) 68%,
    rgba(10, 14, 26, .35) 100%
  );
  transition: background .5s ease;
}
.panel--cta .panel__scrim--solid {
  background: linear-gradient(155deg, var(--brand-red) 0%, var(--brand-navy) 100%);
}

/* ---------- Collapsed state: icon + vertical number/title ---------- */
.panel__collapsed {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 1.75rem 0;
  height: 100%;
  justify-content: flex-end;
  opacity: 1;
  transition: opacity .35s ease;
}

.panel.is-active .panel__collapsed {
  opacity: 0;
  pointer-events: none;
}

.panel__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, .35);
  flex-shrink: 0;
}
.panel__icon svg { width: 20px; height: 20px; }

.panel__index {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .05em;
  color: rgba(255, 255, 255, .6);
}

.panel__vtitle {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: .95rem;
  font-weight: 700;
  white-space: nowrap;
  letter-spacing: .02em;
}

/* ---------- Expanded content ---------- */
.panel__content {
  position: relative;
  z-index: 2;
  padding: clamp(1.75rem, 3vw, 3rem);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .45s ease .1s, transform .45s ease .1s;
}

.panel.is-active .panel__content {
  opacity: 1;
  transform: translateY(0);
}

.panel__content-index {
  display: block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: rgba(255, 255, 255, .65);
  margin-bottom: .6rem;
}

.panel__content-title {
  font-size: clamp(1.35rem, 2.2vw, 1.9rem);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: .75rem;
}

.panel__content-text {
  font-size: .95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, .85);
  max-width: 46ch;
}

.panel__tags {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

.panel__tags li {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: .45rem .85rem;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 999px;
  color: #fff;
  backdrop-filter: blur(4px);
}

/* ---------- CTA panel variant ---------- */
.panel--cta {
  cursor: default;
}
.panel--cta.is-active { cursor: default; }

.panel__content--cta { display: flex; flex-direction: column; }

.panel__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  width: fit-content;
  margin-top: 1.5rem;
  padding: .9rem 1.6rem;
  font-size: .9rem;
  font-weight: 700;
  color: var(--brand-navy);
  background: #fff;
  border-radius: 999px;
  text-decoration: none;
  transition: transform .3s ease, box-shadow .3s ease;
}
.panel__cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px -10px rgba(0, 0, 0, .35);
}
.panel__cta-btn svg { width: 16px; height: 16px; }


/* ---------- Hover/expand affordance ---------- */
.panel__hint {
  position: absolute;
  top: 1.1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
  color: #fff;
  opacity: 0;
  transition: opacity .3s ease, background .3s ease, transform .3s ease;
  animation: hintPulse 2.4s ease-in-out infinite;
}
.panel__hint svg { width: 14px; height: 14px; }

.panel:not(.is-active) .panel__hint {
  opacity: .85;
}
.panel:not(.is-active):hover .panel__hint,
.panel:not(.is-active):focus-visible .panel__hint {
  opacity: 1;
  background: rgba(255, 255, 255, .22);
  transform: translateX(-50%) scale(1.1);
}
.panel.is-active .panel__hint {
  opacity: 0;
}

@keyframes hintPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, .25); }
  50%      { box-shadow: 0 0 0 6px rgba(255, 255, 255, 0); }
}

/* subtle lightening so collapsed strips feel "clickable" on hover too */
.panel:not(.is-active):hover .panel__scrim {
  background: linear-gradient(
    to top,
    rgba(10, 14, 26, .82) 0%,
    rgba(10, 14, 26, .45) 42%,
    rgba(10, 14, 26, .15) 68%,
    rgba(10, 14, 26, .25) 100%
  );
}



/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
  .panel__hint { animation: none; }
}

/* mobile: hint rotates to point down (since accordion expands vertically) */
@media (max-width: 760px) {
  .panel__hint {
    top: 50%;
    left: auto;
    right: 1rem;
    transform: translateY(-50%) rotate(90deg);
  }
  .panel:not(.is-active):hover .panel__hint,
  .panel:not(.is-active):focus-visible .panel__hint {
    transform: translateY(-50%) rotate(90deg) scale(1.1);
  }
  .panel.is-active .panel__hint {
    transform: translateY(-50%) rotate(-90deg);
    opacity: .85;
  }
}
/* Tablet: keep the row, just tighten sizing */
@media (max-width: 1100px) {
  .services__panels { height: clamp(380px, 60vw, 480px); }
  .panel.is-active { flex-grow: 4; }
}

/* Mobile: stack into a vertical accordion */
@media (max-width: 760px) {
  .services__panels {
    flex-direction: column;
    height: auto;
    gap: .6rem;
  }

  .panel {
    flex: none;
    height: 74px;
    transition: height .5s cubic-bezier(.22,.61,.36,1);
  }

  .panel.is-active {
    height: 420px;
  }

  .panel__collapsed {
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    height: 100%;
    padding: 0 1.25rem;
    gap: .85rem;
  }

  .panel__vtitle {
    writing-mode: horizontal-tb;
    transform: none;
    font-size: 1rem;
  }

  .panel__content {
    padding: 1.5rem 1.25rem 1.75rem;
  }
}

/* =============================================================
   JADEED GROUP — SERVICES & JOURNEY SECTIONS STYLESHEET
   Premium Corporate UI — Responsive, Accessible, Performant
   ============================================================= */

/* -------------------------------------------------------------
   0. DESIGN TOKENS (fallbacks — override globally if defined)
   ------------------------------------------------------------- */
:root {
  --jadeed-primary: var(--brand-navy, #1a2b4c);
  --jadeed-primary-dark: #101a30;
  --jadeed-primary-light: var(--brand-red, #c1272d);
  --jadeed-accent: var(--brand-red, #c1272d);
  --jadeed-ink: #14151c;
  --jadeed-muted: #6b7280;
  --jadeed-bg: #ffffff;
  --jadeed-bg-alt: #f6f5f2;
  --jadeed-border: #e7e7ea;
  --jadeed-radius-sm: 8px;
  --jadeed-radius-md: 16px;
  --jadeed-radius-lg: 24px;
  --jadeed-shadow-sm: 0 4px 16px rgba(20, 21, 28, 0.06);
  --jadeed-shadow-md: 0 12px 32px rgba(20, 21, 28, 0.10);
  --jadeed-shadow-lg: 0 24px 60px rgba(20, 21, 28, 0.14);
  --jadeed-transition: 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  --jadeed-font: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
}

/* -------------------------------------------------------------
   1. SHARED / EYEBROW LABEL
   ------------------------------------------------------------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--jadeed-primary);
  margin-bottom: 1rem;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--jadeed-accent);
  border-radius: 2px;
}

/* =============================================================
   2. SERVICES SECTION
   ============================================================= */
.services {
  position: relative;
  padding: clamp(4rem, 8vw, 7rem) 1.5rem;
  background: var(--jadeed-bg);
  overflow: hidden;
}

.services__container {
  max-width: 1280px;
  margin: 0 auto;
}

.services__header {
  max-width: 760px;
  margin: 0 auto 3.5rem;
  text-align: center;
}

.services__title {
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  line-height: 1.25;
  font-weight: 700;
  color: var(--jadeed-ink);
  letter-spacing: -0.01em;
}

/* --- Grid --- */
.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
}

/* --- Card --- */
.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--jadeed-bg);
  border: 1px solid var(--jadeed-border);
  border-radius: var(--jadeed-radius-md);
  overflow: hidden;
  transition: transform var(--jadeed-transition), box-shadow var(--jadeed-transition), border-color var(--jadeed-transition);
  will-change: transform;
}

.service-card:hover,
.service-card:focus-within {
  transform: translateY(-8px);
  box-shadow: var(--jadeed-shadow-lg);
  border-color: transparent;
}

/* --- Media --- */
.service-card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.service-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.service-card:hover .service-card__img {
  transform: scale(1.08);
}

.service-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 56, 32, 0) 40%, rgba(14, 56, 32, 0.45) 100%);
  opacity: 0;
  transition: opacity var(--jadeed-transition);
}

.service-card:hover .service-card__media::after {
  opacity: 1;
}

.service-card__badge {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 0.4rem;
  background: rgba(255, 255, 255, 0.92);
  color: var(--jadeed-primary-dark);
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 999px;
  backdrop-filter: blur(4px);
  z-index: 2;
  transition: background var(--jadeed-transition), color var(--jadeed-transition);
}

.service-card:hover .service-card__badge {
  background: var(--jadeed-accent);
  color: #fff;
}

/* --- Body --- */
.service-card__body {
  padding: 1.75rem 1.5rem 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--jadeed-ink);
  margin-bottom: 0.65rem;
  letter-spacing: -0.01em;
}

.service-card__text {
  font-size: 0.94rem;
  line-height: 1.65;
  color: var(--jadeed-muted);
  margin: 0;
}

/* --- Responsive Grid Breakpoints --- */
@media (max-width: 1100px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {
  .services__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .services__header {
    margin-bottom: 2.5rem;
  }
}

/* =============================================================
   3. JOURNEY SECTION
   ============================================================= */
.journey {
  position: relative;
  padding: clamp(4.5rem, 9vw, 8rem) 1.5rem;
  background: var(--jadeed-bg-alt);
  overflow: hidden;
  isolation: isolate;
}

/* --- Decorative Background --- */
.journey__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.journey__bg-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.35;
}

.journey__bg-shape--one {
  width: 480px;
  height: 480px;
  top: -160px;
  right: -140px;
  background: radial-gradient(circle, var(--jadeed-primary-light), transparent 70%);
}

.journey__bg-shape--two {
  width: 380px;
  height: 380px;
  bottom: -140px;
  left: -120px;
  background: radial-gradient(circle, var(--jadeed-accent), transparent 70%);
  opacity: 0.18;
}

.journey__container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

/* --- Header --- */
.journey__header {
  max-width: 780px;
  margin: 0 auto 4.5rem;
  text-align: center;
}

.journey__title {
  font-size: clamp(1.85rem, 3.4vw, 2.65rem);
  font-weight: 700;
  color: var(--jadeed-ink);
  letter-spacing: -0.01em;
  margin-bottom: 1.1rem;
  line-height: 1.25;
}

.journey__intro {
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--jadeed-muted);
  margin: 0;
}

/* =============================================================
   4. TIMELINE
   ============================================================= */
.timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

/* --- Center Track (desktop) --- */
.timeline__track {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: var(--jadeed-border);
  transform: translateX(-50%);
  border-radius: 3px;
  z-index: 0;
}

.timeline__progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, var(--jadeed-primary), var(--jadeed-accent));
  border-radius: 3px;
  transform-origin: top;
  transform: scaleY(1);
}

/* --- Milestone Item --- */
.milestone {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0 2.5rem;
}

/* Alternate layout: media left / card right on odd, reverse on even */
.milestone:nth-child(even) .milestone__media {
  order: 3;
}

.milestone:nth-child(even) .milestone__card {
  order: 1;
}

.milestone:nth-child(odd) .milestone__media {
  order: 1;
}

.milestone:nth-child(odd) .milestone__card {
  order: 3;
}

/* --- Node (center dot on track) --- */
.milestone__node {
  position: relative;
  order: 2;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.milestone__node-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--jadeed-bg);
  border: 3px solid var(--jadeed-primary);
  box-shadow: 0 0 0 6px var(--jadeed-bg-alt);
  transition: transform var(--jadeed-transition), border-color var(--jadeed-transition);
}

.milestone:hover .milestone__node-dot {
  transform: scale(1.25);
}

.milestone__node--current .milestone__node-dot {
  background: var(--jadeed-accent);
  border-color: var(--jadeed-accent);
  box-shadow: 0 0 0 6px var(--jadeed-bg-alt), 0 0 0 10px rgba(212, 160, 23, 0.18);
  animation: pulse-current 2.4s infinite;
}

@keyframes pulse-current {
  0%, 100% { box-shadow: 0 0 0 6px var(--jadeed-bg-alt), 0 0 0 10px rgba(212, 160, 23, 0.18); }
  50% { box-shadow: 0 0 0 6px var(--jadeed-bg-alt), 0 0 0 16px rgba(212, 160, 23, 0.05); }
}

/* --- Media --- */
.milestone__media {
  position: relative;
  border-radius: var(--jadeed-radius-md);
  overflow: hidden;
  box-shadow: var(--jadeed-shadow-sm);
  aspect-ratio: 4 / 3;
  transition: transform var(--jadeed-transition), box-shadow var(--jadeed-transition);
}

.milestone:hover .milestone__media {
  transform: translateY(-4px);
  box-shadow: var(--jadeed-shadow-md);
}

.milestone__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.milestone:hover .milestone__img {
  transform: scale(1.06);
}

/* --- Card --- */
.milestone__card {
  background: var(--jadeed-bg);
  border: 1px solid var(--jadeed-border);
  border-radius: var(--jadeed-radius-md);
  padding: 1.75rem 2rem;
  box-shadow: var(--jadeed-shadow-sm);
  transition: transform var(--jadeed-transition), box-shadow var(--jadeed-transition), border-color var(--jadeed-transition);
}

.milestone:hover .milestone__card {
  transform: translateY(-4px);
  box-shadow: var(--jadeed-shadow-md);
}

.milestone__card--current {
  border-color: var(--jadeed-accent);
  background: linear-gradient(180deg, #fffdf7, var(--jadeed-bg));
}

.milestone__stage {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--jadeed-primary);
}

.milestone__card--current .milestone__stage {
  color: var(--jadeed-accent);
}

.milestone__year {
  margin-top: 0.35rem;
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1;
  color: var(--jadeed-ink);
  font-variant-numeric: tabular-nums;
}

.milestone__title {
  margin-top: 0.65rem;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--jadeed-ink);
}

.milestone__text {
  margin-top: 0.6rem;
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--jadeed-muted);
}

/* --- Scroll-reveal state (JS toggles this) --- */
.milestone {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.milestone.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .milestone {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* =============================================================
   RESPONSIVE — Timeline collapses to single column + left rail
   ============================================================= */
@media (max-width: 860px) {
  .timeline__track {
    left: 20px;
    transform: none;
  }

  .milestone {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 0 1.25rem;
  }

  .milestone__node {
    order: 1 !important;
    width: 40px;
    justify-content: flex-start;
    padding-left: 11px;
  }

  .milestone__media,
  .milestone__card {
    order: 2 !important;
    grid-column: 2;
  }

  .milestone__media {
    margin-bottom: 1rem;
  }

  .milestone__card {
    padding: 1.5rem 1.5rem 1.75rem;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .journey__container,
  .milestone__card,
  .milestone__title,
  .milestone__text {
    overflow-wrap: break-word;
    word-break: break-word;
  }

  .milestone__year { font-size: 1.6rem; }

  .journey__title {
    font-size: 1.55rem;
    line-height: 1.35;
  }

  .journey__intro {
    font-size: 0.92rem;
    line-height: 1.65;
  }

  .milestone__title {
    font-size: 1rem;
    line-height: 1.4;
  }

  .milestone__text {
    font-size: 0.88rem;
    line-height: 1.6;
  }

  .milestone__card {
    padding: 1.1rem 1.1rem 1.35rem;
  }

  .journey__bg-shape--one,
  .journey__bg-shape--two { display: none; }
}

html, body {
  overflow-x: hidden;
}



.ceo-section {
    position: relative;
    overflow: hidden;
    padding: clamp(4rem, 8vw, 8rem) 0;
    background: linear-gradient(180deg, #0a1120 0%, #0d1a30 55%, #0a1120 100%);
    color: #fff;
    isolation: isolate;
  }

  /* --- Background Decoration --- */
  .ceo-bg-decor {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
  }

  .ceo-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 20%, transparent 75%);
  }

  .ceo-bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.35;
  }

  .ceo-bg-glow--one {
    width: 480px;
    height: 480px;
    top: -120px;
    left: -140px;
    background: radial-gradient(circle, rgba(200, 30, 45, 0.55), transparent 70%);
  }

  .ceo-bg-glow--two {
    width: 520px;
    height: 520px;
    bottom: -160px;
    right: -160px;
    background: radial-gradient(circle, rgba(30, 90, 170, 0.4), transparent 70%);
  }

  .ceo-container {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
  }

  /* --- Eyebrow --- */
  .ceo-eyebrow {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    justify-content: center;
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
  }

  .ceo-eyebrow-line {
    width: 44px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #c81e2d);
  }

  /* --- Grid Layout --- */
  .ceo-grid {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: clamp(2.5rem, 6vw, 5rem);
    align-items: start;
  }

  /* --- Portrait Column --- */
  .ceo-portrait-col {
    position: sticky;
    top: 6rem;
  }

  .ceo-portrait-frame {
    position: relative;
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow:
      0 30px 60px -20px rgba(0, 0, 0, 0.6),
      0 0 0 1px rgba(255, 255, 255, 0.08);
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .ceo-portrait-frame:hover {
    transform: translateY(-6px);
  }

  .ceo-portrait-img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    filter: saturate(1.02) contrast(1.03);
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .ceo-portrait-frame:hover .ceo-portrait-img {
    transform: scale(1.04);
  }

  .ceo-portrait-corner {
    position: absolute;
    width: 46px;
    height: 46px;
    border: 2px solid #c81e2d;
    z-index: 2;
    opacity: 0.9;
  }

  .ceo-portrait-corner--tl {
    top: 14px;
    left: 14px;
    border-right: none;
    border-bottom: none;
  }

  .ceo-portrait-corner--br {
    bottom: 14px;
    right: 14px;
    border-left: none;
    border-top: none;
  }

  .ceo-portrait-ribbon {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    padding: 1.1rem 1.25rem;
    background: linear-gradient(180deg, transparent, rgba(5, 8, 16, 0.92) 70%);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.88);
  }

  .ceo-identity-card {
    margin-top: 1.75rem;
    padding: 1.5rem 1.65rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.09);
    backdrop-filter: blur(6px);
  }

  .ceo-identity-name {
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin: 0;
  }

  .ceo-identity-role {
    margin: 0.3rem 0 0;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #e2465a;
  }

  .ceo-identity-divider {
    width: 100%;
    height: 1px;
    margin: 1rem 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.25), transparent);
  }

  .ceo-identity-company {
    margin: 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
  }

  /* --- Message Column --- */
  .ceo-header {
    margin-bottom: 1.75rem;
  }

  .ceo-heading {
    font-size: clamp(2.1rem, 4vw, 3.1rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin: 0;
  }

  .ceo-heading-accent {
    color: transparent;
    background: linear-gradient(100deg, #e2465a, #ff8a6b);
    -webkit-background-clip: text;
    background-clip: text;
  }
/* --- Quote Block --- */
  .ceo-quote-block {
    position: relative;
    margin: 0 0 2rem;
    padding: 0.25rem 0 0.25rem 1.75rem;
    border-left: 3px solid #c81e2d;
  }

  .ceo-quote-mark {
    position: absolute;
    top: -1.4rem;
    left: 0.75rem;
    font-size: 4.5rem;
    line-height: 1;
    font-family: Georgia, serif;
    color: rgba(200, 30, 45, 0.35);
    pointer-events: none;
  }

  .ceo-quote-lead {
    position: relative;
    margin: 0;
    font-size: clamp(1.15rem, 2vw, 1.4rem);
    line-height: 1.6;
    font-weight: 500;
    font-style: italic;
    color: rgba(255, 255, 255, 0.92);
  }

  /* --- Body --- */
  .ceo-body {
    display: flex;
    flex-direction: column;
    gap: 1.15rem;
    font-size: 1rem;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.72);
    width: 100%;
  }

  .ceo-body strong {
    color: #fff;
    font-weight: 700;
  }

  .ceo-body-salutation {
    font-size: 1.05rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
  }

  .ceo-body-thanks {
    font-style: italic;
    color: rgba(255, 255, 255, 0.85);
  }

  /* --- Signature Block --- */
  .ceo-signature {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    margin-top: 2.75rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .ceo-signature-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
  }

  .ceo-signature-warm {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
  }

  .ceo-signature-name {
    font-family: Georgia, 'Times New Roman', serif;
    font-style: italic;
    font-size: 1.65rem;
    font-weight: 600;
    color: #fff;
  }

  .ceo-signature-seal {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.85);
    background: rgba(255, 255, 255, 0.04);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.4s ease, color 0.4s ease;
  }

  .ceo-signature:hover .ceo-signature-seal {
    transform: rotate(-8deg) scale(1.08);
    border-color: #c81e2d;
    color: #fff;
  }

  /* --- Reveal-on-scroll animation --- */
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  @media (prefers-reduced-motion: reduce) {
    .reveal {
      opacity: 1;
      transform: none;
      transition: none;
    }
  }

  /* =============================================================
     RESPONSIVE
     ============================================================= */
  @media (max-width: 900px) {
    .ceo-grid {
      grid-template-columns: 1fr;
      gap: 2.5rem;
    }

    .ceo-portrait-col {
      position: static;
      max-width: 320px;
      margin: 0 auto;
    }
  }

  @media (max-width: 480px) {
    .ceo-container {
      padding: 0 1.25rem;
    }

    .ceo-eyebrow {
      font-size: 0.7rem;
      letter-spacing: 0.2em;
      gap: 0.6rem;
    }

    .ceo-heading {
      font-size: 1.9rem;
    }

    .ceo-quote-lead {
      font-size: 1.05rem;
    }

    .ceo-body {
      font-size: 0.92rem;
      line-height: 1.75;
    }

    .ceo-signature {
      flex-direction: column;
      align-items: flex-start;
      gap: 1rem;
    }

    .ceo-portrait-col {
      max-width: 100%;
    }
  }

  html, body {
    overflow-x: hidden;
  }
/* ===================== END CEO MESSAGE ===================== */


/* =============================================================
   12. STATS + WORKFLOW + GROWTH CHART
   ============================================================= */
.stats-section { padding-block: 6rem; }
.stats-grid { display: grid; gap: 1.5rem; margin-bottom: 5rem; grid-template-columns: 1fr; }
@media (min-width: 48rem) { .stats-grid { grid-template-columns: repeat(3, 1fr); } }
.stat-card { border-radius: var(--radius-2xl); padding: 2rem; text-align: center; box-shadow: var(--shadow-card); border: 1px solid var(--border); }
.stat-card__number { font-size: 3rem; font-weight: 700; }
.stat-card__label { margin-top: 0.75rem; font-size: 0.875rem; font-weight: 500; color: var(--muted-foreground); }

.workflow-grid { display: grid; gap: 3rem; grid-template-columns: 1fr; }
@media (min-width: 64rem) { .workflow-grid { grid-template-columns: 1fr 1fr; } }
.workflow-grid h3 { font-size: 1.875rem; font-weight: 700; color: var(--brand-navy); }
.workflow-grid > div > p { margin-top: 1rem; color: var(--muted-foreground); }
.workflow-list { margin-top: 1.5rem; display: grid; grid-template-columns: 1fr; gap: 0.75rem; font-size: 0.875rem; }
@media (min-width: 40rem) { .workflow-list { grid-template-columns: repeat(2, 1fr); } }
.workflow-list li { display: flex; align-items: flex-start; gap: 0.5rem; }
.workflow-list .dot { margin-top: 0.375rem; }

.growth-chart {
  margin-top: 1.5rem;
  border-radius: var(--radius-2xl);
  padding: 1.5rem;
  background: var(--muted);
  height: 12rem;
  display: flex;
  align-items: flex-end;
  gap: 0.75rem;
}
.growth-chart__bar { flex: 1; border-radius: 0.5rem 0.5rem 0 0; background: var(--gradient-brand); }
.growth-chart__bar:nth-child(1) { height: 35%; }
.growth-chart__bar:nth-child(2) { height: 48%; }
.growth-chart__bar:nth-child(3) { height: 55%; }
.growth-chart__bar:nth-child(4) { height: 68%; }
.growth-chart__bar:nth-child(5) { height: 72%; }
.growth-chart__bar:nth-child(6) { height: 85%; }
.growth-chart__bar:nth-child(7) { height: 95%; }
.growth-chart__years { margin-top: 0.5rem; display: flex; justify-content: space-between; font-size: 0.75rem; color: var(--muted-foreground); }
/* ===================== END STATS + WORKFLOW + GROWTH CHART ===================== */
/* ============================================================
   JADEED GROUP — Scale / Workflow / Growth section styles
   Uses the same design tokens as the main site's styles.css
   (--brand-red, --brand-navy, --muted, --shadow-card, etc.)
   The :root fallback block below is safe to delete if this file
   is loaded together with the main styles.css.
   ============================================================ */



/* ---------- Layout shell ---------- */
.jd-showcase {
  padding: 6rem 0;
  background: var(--background);
}

.jd-showcase__container {
  max-width: 80rem;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

/* ---------- Shared type ---------- */
.jd-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--brand-red);
}

.jd-eyebrow::before {
  content: "";
  width: 2rem;
  height: 2px;
  background: var(--brand-red);
  display: inline-block;
}

.jd-heading {
  margin-top: 0.75rem;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: clamp(1.875rem, 1.4rem + 2vw, 3rem);
  line-height: 1.15;
  color: var(--brand-navy);
}

.jd-heading--sm {
  font-size: clamp(1.5rem, 1.2rem + 1.2vw, 2.25rem);
}

.jd-heading__accent {
  color: var(--brand-red);
}

.jd-subheading {
  margin-top: 1rem;
  max-width: 42rem;
  color: var(--muted-foreground);
  line-height: 1.7;
}

/* ---------- Reveal-on-scroll base state ---------- */
.jd-stat,
.jd-flow__step,
.jd-growth {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.jd-stat.is-visible,
.jd-flow__step.is-visible,
.jd-growth.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.jd-flow__step {
  transition-delay: calc(var(--i, 0) * 80ms);
}

@media (prefers-reduced-motion: reduce) {
  .jd-stat,
  .jd-flow__step,
  .jd-growth {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ---------- Statistics ---------- */
.jd-stats__intro {
  text-align: center;
  max-width: 44rem;
  margin-inline: auto;
}

.jd-stats__intro .jd-subheading {
  margin-inline: auto;
}

.jd-stats {
  margin-top: 3.5rem;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .jd-stats {
    grid-template-columns: repeat(3, 1fr);
  }
}

.jd-stat {
  position: relative;
  padding: 2.5rem 2rem;
  text-align: center;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  overflow: hidden;
  transition: opacity 0.6s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}

.jd-stat:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-elegant);
}

.jd-stat__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 9999px;
  background: var(--gradient-brand);
  color: #fff;
  margin-bottom: 1.25rem;
}

.jd-stat__icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.jd-stat__value {
  font-family: "Poppins", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  background: var(--gradient-brand);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.jd-stat__label {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
}

.jd-stat__bar {
  margin: 1.25rem auto 0;
  height: 3px;
  width: 0;
  max-width: 5rem;
  border-radius: 999px;
  background: var(--gradient-brand);
  transition: width 1s cubic-bezier(0.22, 1, 0.36, 1) 0.2s;
}

.jd-stat.is-visible .jd-stat__bar {
  width: 100%;
}

/* ---------- Workflow ---------- */
.jd-workflow {
  margin-top: 6rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .jd-workflow {
    grid-template-columns: 0.85fr 1.15fr;
    align-items: center;
  }
}

.jd-workflow__intro {
  position: relative;
}

/* Giant faint numeral filling the intro column's empty space —
   also quietly explains why there are six cards on the right */
.jd-workflow__ghost-number {
  position: absolute;
  top: -2.5rem;
  right: -0.5rem;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: clamp(8rem, 6rem + 8vw, 13rem);
  line-height: 1;
  color: var(--brand-navy);
  opacity: 0.05;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

@media (max-width: 1023px) {
  .jd-workflow__ghost-number {
    display: none;
  }
}

.jd-workflow__intro > * {
  position: relative;
  z-index: 1;
}

.jd-workflow__highlight {
  margin: 2rem 0 0;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem 1.5rem;
  border-left: 3px solid var(--brand-red);
  background: linear-gradient(to right, var(--muted), transparent);
  border-radius: 0 1rem 1rem 0;
}

.jd-workflow__highlight-icon {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  margin-top: 0.15rem;
  color: var(--brand-red);
}

.jd-workflow__highlight p {
  margin: 0;
  font-style: italic;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--brand-navy);
}

.jd-flow {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .jd-flow {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .jd-flow {
    grid-template-columns: repeat(3, 1fr);
  }
}

.jd-flow__step {
  padding: 1.75rem 1.5rem;
  background: var(--muted);
  border: 1px solid transparent;
  border-radius: 1rem;
  transition:
    opacity 0.6s ease,
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.35s ease,
    background-color 0.35s ease,
    box-shadow 0.35s ease;
}

.jd-flow__step:hover {
  transform: translateY(-4px);
  background: var(--card);
  border-color: var(--brand-red);
  box-shadow: var(--shadow-card);
}

.jd-flow__node {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 9999px;
  border: 1.5px solid var(--brand-navy);
  color: var(--brand-navy);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), background-color 0.35s ease, color 0.35s ease, border-color 0.35s ease;
}

.jd-flow__node svg {
  width: 1.25rem;
  height: 1.25rem;
}

.jd-flow__step:hover .jd-flow__node {
  transform: scale(1.08) rotate(-6deg);
  background: var(--gradient-brand);
  border-color: transparent;
  color: #fff;
}

.jd-flow__title {
  margin-top: 1rem;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--brand-navy);
}

.jd-flow__text {
  margin-top: 0.4rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--muted-foreground);
}

/* ---------- Growth chart ---------- */
.jd-growth {
  margin-top: 6rem;
}

.jd-chart {
  margin-top: 2rem;
  padding: 1.5rem 1.5rem 1.25rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  box-shadow: var(--shadow-card);
}

/* Wrapper caps the chart's height so it can never balloon on wide
   screens — this is what keeps the chart compact and proportional. */
.jd-chart__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 2.7 / 1;
  max-height: 320px;
}

.jd-chart__svg {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
}

.jd-chart__grid line {
  stroke: var(--border);
  stroke-width: 1;
  stroke-dasharray: 4 6;
}

.jd-chart__area {
  opacity: 0;
  transition: opacity 1s ease 0.3s;
}

.jd-growth.is-visible .jd-chart__area {
  opacity: 1;
}

.jd-chart__line {
  stroke: url(#jdLineStroke);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1600;
  stroke-dashoffset: 1600;
  transition: stroke-dashoffset 1.8s cubic-bezier(0.22, 1, 0.36, 1) 0.15s;
}

.jd-growth.is-visible .jd-chart__line {
  stroke-dashoffset: 0;
}

.jd-chart__point {
  fill: var(--card);
  stroke: var(--brand-red);
  stroke-width: 3;
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
  transform: scale(0);
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition-delay: 1.6s;
  cursor: pointer;
}

.jd-growth.is-visible .jd-chart__point {
  opacity: 1;
  transform: scale(1);
}

.jd-chart__point:hover {
  fill: var(--brand-red);
}

.jd-chart__point--current {
  fill: var(--brand-red);
  stroke: var(--card);
}

.jd-chart__point-ripple {
  fill: none;
  stroke: var(--brand-red);
  stroke-width: 2;
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
}

.jd-growth.is-visible .jd-chart__point-ripple {
  animation: jd-pulse 2.2s ease-out 2s infinite;
}

@keyframes jd-pulse {
  0% {
    r: 7;
    opacity: 0.6;
  }
  100% {
    r: 20;
    opacity: 0;
  }
}

/* Start / end value tags floating on the chart itself */
.jd-chart__tag {
  position: absolute;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--muted-foreground);
  opacity: 0;
  transition: opacity 0.5s ease 1.9s, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1) 1.9s;
  white-space: nowrap;
}

.jd-growth.is-visible .jd-chart__tag {
  opacity: 1;
}

.jd-chart__tag--start {
  left: 0;
  bottom: 8%;
  transform: translate(-0.5rem, 0.5rem);
}

.jd-growth.is-visible .jd-chart__tag--start {
  transform: translate(-0.5rem, 0);
}

.jd-chart__tag--end {
  right: 0;
  top: 2%;
  color: #fff;
  background: var(--gradient-brand);
  border-color: transparent;
  box-shadow: var(--shadow-card);
  transform: translate(0.5rem, -0.5rem);
}

.jd-growth.is-visible .jd-chart__tag--end {
  transform: translate(0, -0.25rem);
}

@media (max-width: 640px) {
  .jd-chart__tag {
    display: none;
  }
}

.jd-chart__axis {
  margin-top: 1rem;
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0 0.25rem;
}

.jd-chart__axis span {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--muted-foreground);
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
}

.jd-chart__axis span:last-child {
  color: var(--brand-red);
  font-weight: 700;
  background: color-mix(in oklch, var(--brand-red) 12%, transparent);
}

@media (prefers-reduced-motion: reduce) {
  .jd-chart__line {
    transition: none;
    stroke-dashoffset: 0;
  }
  .jd-chart__point {
    transition: none;
  }
  .jd-chart__point-ripple {
    animation: none;
    display: none;
  }
  .jd-chart__area,
  .jd-chart__tag {
    transition: none;
  }
  
}






/* ============================================================
   PROJECTS — Interactive Vertical Showcase
   Drop this after your existing tokens (:root with --brand-red,
   --brand-navy, --brand-navy-deep, --muted, --border, --shadow-*)
   are already defined in style.css. This block only adds .jp*
   rules and does not touch anything else on the page.
   ============================================================ */

.jp {
  position: relative;
  overflow: hidden;
  padding-block: 7rem;
  background: #fff;
  isolation: isolate;
}

/* ---------- Ambient background ---------- */
.jp__ambient {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.jp__glow {
  position: absolute;
  width: 40rem;
  height: 40rem;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.16;
}
.jp__glow--a {
  top: -12rem;
  right: -10rem;
  background: var(--brand-red);
}
.jp__glow--b {
  bottom: -16rem;
  left: -14rem;
  background: var(--brand-navy);
  opacity: 0.12;
}
.jp__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(20, 21, 42, 0.035) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(20, 21, 42, 0.035) 1px, transparent 1px);
  background-size: 3rem 3rem;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 40%, transparent 90%);
}

.jp__inner {
  position: relative;
  z-index: 1;
  max-width: 80rem;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

/* ---------- Header ---------- */
.jp__head {
  max-width: 46rem;
}
.jp__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--brand-red);
}
.jp__eyebrow-mark {
  width: 2.5rem;
  height: 2px;
  background: var(--brand-red);
}
.jp__title {
  margin-top: 1rem;
  font-family: var(--font-heading, inherit);
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--brand-navy);
}
.jp__title em {
  font-style: normal;
  color: var(--brand-red);
}
.jp__lede {
  margin-top: 1.5rem;
  max-width: 40rem;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--muted-foreground, #6c6f7c);
}

/* ---------- Stats row ---------- */
.jp__stats {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 34rem;
  border-top: 1px solid var(--border, #e2e2e8);
}
.jp__stat {
  padding: 1.25rem 1.25rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}
.jp__stat + .jp__stat {
  border-left: 1px solid var(--border, #e2e2e8);
  padding-left: 1.25rem;
}
.jp__stat-num {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--brand-navy);
  font-variant-numeric: tabular-nums;
}
.jp__stat-label {
  font-size: 0.75rem;
  color: var(--muted-foreground, #6c6f7c);
  line-height: 1.4;
}

/* ---------- Showcase layout ---------- */
.jp__showcase {
  margin-top: 4.5rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2.5rem;
}
@media (min-width: 64rem) {
  .jp__showcase {
    grid-template-columns: 1.1fr 1fr;
    align-items: start;
    gap: 3.5rem;
  }
}

/* ---------- Sticky visual stage ---------- */
.jp__stage {
  order: -1;
}
@media (min-width: 64rem) {
  .jp__stage {
    order: 0;
    position: sticky;
    top: 6.5rem;
  }
}
.jp__stage-frame {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-2xl, 1.5rem);
  overflow: hidden;
  box-shadow: var(--shadow-elegant, 0 16px 48px rgba(20, 21, 42, 0.18));
  background: var(--brand-navy-deep);
}
@media (min-width: 64rem) {
  .jp__stage-frame {
    aspect-ratio: 4 / 5;
  }
}
.jp__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.jp__slide.is-active {
  opacity: 1;
}
.jp__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.jp__stage-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20, 21, 42, 0.92) 0%, rgba(20, 21, 42, 0.15) 45%, transparent 70%);
}
.jp__stage-meta {
  position: absolute;
  inset: auto 1.75rem 1.75rem 1.75rem;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  color: #fff;
}
.jp__stage-index {
  font-size: 0.8125rem;
  letter-spacing: 0.05em;
  opacity: 0.8;
}
.jp__stage-index b {
  font-size: 1.5rem;
  font-weight: 700;
  margin-right: 0.25rem;
}
.jp__stage-name {
  font-size: 1.375rem;
  font-weight: 700;
}
.jp__tick {
  position: absolute;
  width: 1.5rem;
  height: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  opacity: 0.7;
}
.jp__tick--tl {
  top: 1.25rem;
  left: 1.25rem;
  border-right: 0;
  border-bottom: 0;
}
.jp__tick--br {
  bottom: 1.25rem;
  right: 1.25rem;
  border-left: 0;
  border-top: 0;
}

/* ---------- Project index (accordion list) ---------- */
.jp__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.jp__card {
  border-radius: var(--radius-xl, 1rem);
  border: 1px solid var(--border, #e2e2e8);
  background: #fff;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.jp__item.is-open .jp__card {
  border-color: rgba(209, 38, 63, 0.35);
  box-shadow: var(--shadow-card, 0 4px 24px rgba(20, 21, 42, 0.08));
}

/* thumbnail only visible on mobile, where the sticky stage is stacked above */
.jp__card-media {
  display: none;
}
@media (max-width: 63.99rem) {
  .jp__item:first-child .jp__card-media,
  .jp__card-media {
    display: none;
  }
}

.jp__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  text-align: left;
  cursor: pointer;
}
.jp__num {
  flex-shrink: 0;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--brand-red);
  font-variant-numeric: tabular-nums;
}
.jp__heading {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.jp__badge {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted-foreground, #6c6f7c);
}
.jp__name {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--brand-navy);
}
.jp__chev {
  flex-shrink: 0;
  width: 1.75rem;
  height: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--muted, #f3f3f6);
  color: var(--brand-navy);
  transition: transform 0.3s ease, background-color 0.2s ease, color 0.2s ease;
}
.jp__chev svg {
  width: 1rem;
  height: 1rem;
}
.jp__item.is-open .jp__chev {
  transform: rotate(180deg);
  background: var(--brand-red);
  color: #fff;
}

.jp__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}
.jp__item.is-open .jp__panel {
  grid-template-rows: 1fr;
}
.jp__panel-in {
  overflow: hidden;
  min-height: 0;
}
.jp__copy {
  padding: 0 1.5rem 1.5rem 3.375rem;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--muted-foreground, #6c6f7c);
}
.jp__link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  margin: 0 1.5rem 1.5rem 3.375rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--brand-red);
}
.jp__link svg {
  width: 0.875rem;
  height: 0.875rem;
  transition: transform 0.2s ease;
}
.jp__link:hover svg {
  transform: translateX(3px);
}

/* ---------- Mobile: show a small thumbnail per closed card ---------- */
@media (max-width: 63.99rem) {
  .jp__stage {
    margin-bottom: 0.5rem;
  }
  .jp__trigger {
    padding: 1rem 1.25rem;
  }
  .jp__copy,
  .jp__link {
    padding-left: 1.25rem;
    margin-left: 0;
  }
  .jp__copy {
    padding-right: 1.25rem;
    padding-bottom: 1.25rem;
  }
  .jp__link {
    margin-right: 1.25rem;
    margin-bottom: 1.25rem;
  }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  .jp__slide,
  .jp__panel,
  .jp__chev,
  .jp__link svg {
    transition: none !important;
  }
}
















/* =============================================================
   14. BLOG
   ============================================================= */
.blog { padding-block: 6rem; }
.blog__header { display: flex; align-items: flex-end; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; }
.blog__grid { margin-top: 3.5rem; display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
@media (min-width: 48rem) { .blog__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 64rem) { .blog__grid { grid-template-columns: repeat(4, 1fr); } }

.blog-card { background: var(--card); border-radius: var(--radius-2xl); overflow: hidden; box-shadow: var(--shadow-card); }
.blog-card__media { aspect-ratio: 4 / 3; overflow: hidden; }
.blog-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.blog-card:hover .blog-card__media img { transform: scale(1.1); }
.blog-card__body { padding: 1.5rem; }
.blog-card__date { font-size: 0.75rem; color: var(--muted-foreground); }
.blog-card__title { margin-top: 0.5rem; font-size: 1rem; font-weight: 700; color: var(--brand-navy); line-height: 1.375; transition: color 0.2s ease; }
.blog-card:hover .blog-card__title { color: var(--brand-red); }
.blog-card__link { margin-top: 1rem; display: inline-flex; align-items: center; gap: 0.375rem; font-size: 0.875rem; font-weight: 600; color: var(--brand-red); }
.blog-card__link svg { width: 0.875rem; height: 0.875rem; }
/* ===================== END BLOG ===================== */


/* =============================================================
   15. MANAGEMENT
   ============================================================= */
.management { padding-block: 6rem; background: var(--muted); }
.management__grid { margin-top: 3.5rem; display: grid; gap: 2rem; grid-template-columns: 1fr; }
@media (min-width: 48rem) { .management__grid { grid-template-columns: repeat(3, 1fr); } }
.person-card { background: var(--card); border-radius: var(--radius-2xl); overflow: hidden; box-shadow: var(--shadow-card); }
.person-card__media { aspect-ratio: 4 / 5; overflow: hidden; }
.person-card__media img { width: 100%; height: 100%; object-fit: cover; }
.person-card__body { padding: 1.5rem; }
.person-card__name { font-size: 1.25rem; font-weight: 700; color: var(--brand-navy); }
.person-card__role { margin-top: 0.25rem; font-size: 0.875rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--brand-red); }
.person-card__text { margin-top: 1rem; font-size: 0.875rem; color: var(--muted-foreground); line-height: 1.625; }
/* ===================== END MANAGEMENT ===================== */


/* =============================================================
   16. BRANCHES
   ============================================================= */
.branches { padding-block: 6rem; }
.branches__pills { margin-top: 3rem; margin-bottom: 3rem; display: grid; gap: 0.75rem; grid-template-columns: 1fr; }
@media (min-width: 48rem) { .branches__pills { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 64rem) { .branches__pills { grid-template-columns: repeat(5, 1fr); } }
.branch-pill {
  border-radius: var(--radius-xl);
  padding: 1rem;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 600;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--brand-navy);
}
.branch-pill--active { background: var(--brand-navy); color: #fff; border-color: var(--brand-navy); }

.branches__body { display: grid; gap: 3rem; align-items: center; grid-template-columns: 1fr; }
@media (min-width: 64rem) { .branches__body { grid-template-columns: 1fr 1fr; } }
.branches__map { border-radius: var(--radius-2xl); padding: 2.5rem; background: var(--gradient-brand); }
.branches__map svg { width: 100%; height: auto; color: rgba(255,255,255,0.9); }

.branch-list { display: flex; flex-direction: column; gap: 1.5rem; }
.branch-item { border-radius: var(--radius-2xl); border: 1px solid var(--border); padding: 1.5rem; transition: border-color 0.2s ease; }
.branch-item:hover { border-color: var(--brand-red); }
.branch-item__title { font-size: 1.125rem; font-weight: 700; color: var(--brand-navy); }
.branch-item__list { margin-top: 0.75rem; display: flex; flex-direction: column; gap: 0.5rem; font-size: 0.875rem; color: var(--muted-foreground); }
.branch-item__list li { display: flex; align-items: flex-start; gap: 0.5rem; }
.branch-item__list svg { width: 1rem; height: 1rem; color: var(--brand-red); flex-shrink: 0; margin-top: 0.125rem; }
/* ===================== END BRANCHES ===================== */


/* =============================================================
   17. OTHER BUSINESSES
   ============================================================= */
.other-businesses { padding-block: 6rem; background: var(--muted); }
.other-businesses__grid { margin-top: 3rem; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
@media (min-width: 48rem) { .other-businesses__grid { grid-template-columns: repeat(4, 1fr); } }
.business-tile { position: relative; overflow: hidden; border-radius: var(--radius-2xl); aspect-ratio: 1 / 1; box-shadow: var(--shadow-card); }
.business-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.business-tile:hover img { transform: scale(1.1); }
.business-tile__overlay { position: absolute; inset: 0; background: rgba(20,21,42,0.6); transition: background-color 0.2s ease; }
.business-tile:hover .business-tile__overlay { background: rgba(20,21,42,0.4); }
.business-tile__label { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; text-align: center; padding-inline: 1rem; color: #fff; font-weight: 700; font-size: 1.125rem; }
/* ===================== END OTHER BUSINESSES ===================== */


/* =============================================================
   18. CONTACT
   ============================================================= */
.contact { padding-block: 6rem; background: var(--brand-navy-deep); color: #fff; text-align: center; }
.contact .container { max-width: 56rem; }
.contact__title { font-size: 2.25rem; font-weight: 700; }
@media (min-width: 48rem) { .contact__title { font-size: 3rem; } }
.contact__text { margin-top: 1rem; font-size: 1.125rem; color: rgba(255,255,255,0.75); }
.contact__actions { margin-top: 2.5rem; display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }
/* ===================== END CONTACT ===================== */


/* =============================================================
   19. FOOTER
   ============================================================= */
.site-footer { background: #0b0c17; color: rgba(255,255,255,0.7); padding-block: 3rem; }
.site-footer__grid { display: grid; gap: 2.5rem; grid-template-columns: 1fr; }
@media (min-width: 48rem) { .site-footer__grid { grid-template-columns: repeat(4, 1fr); } }
.site-footer__brand { grid-column: span 1; }
@media (min-width: 48rem) { .site-footer__brand { grid-column: span 2; } }
.site-footer__logo { height: 4rem; width: auto; background: #fff; border-radius: var(--radius-lg); padding: 0.5rem; }
.site-footer__tagline { margin-top: 1rem; font-size: 0.875rem; max-width: 28rem; }
.site-footer__heading { color: #fff; font-weight: 600; margin-bottom: 0.75rem; }
.site-footer__links { display: flex; flex-direction: column; gap: 0.5rem; font-size: 0.875rem; }
.site-footer__links a:hover, .site-footer__contact a:hover { color: var(--brand-red); }
.site-footer__contact { display: flex; flex-direction: column; gap: 0.5rem; font-size: 0.875rem; }
.site-footer__bottom {
  max-width: var(--container-max);
  margin: 2.5rem auto 0;
  padding: 1.5rem var(--gutter) 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 0.75rem;
  font-size: 0.75rem;
}
.site-footer__social { display: flex; gap: 0.75rem; }
.site-footer__social a:hover { color: var(--brand-red); }
/* ===================== END FOOTER ===================== */