/* =============================================================
   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;
}




/* =========================
   HERO SECTION
========================= */
.hero{
    position: relative;
    height: 90vh;
    min-height: 560px;
    overflow: hidden;
    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 {
  display: none;
  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 ===================== */


/* =============================================================
   9. SERVICES
   ============================================================= */
.services { padding-block: 6rem; background: var(--muted); }
.services__intro { max-width: 48rem; }
.services__grid {
  margin-top: 3.5rem;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 40rem) { .services__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 64rem) { .services__grid { grid-template-columns: repeat(4, 1fr); } }

.service-card {
  background: #fff;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.5s ease;
}
.service-card:hover { transform: translateY(-0.5rem); }
.service-card__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.service-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.service-card:hover .service-card__media img { transform: scale(1.1); }
.service-card__number {
  position: absolute; top: 1rem; left: 1rem;
  background: var(--brand-red); color: #fff;
  font-size: 0.75rem; font-weight: 700;
  padding: 0.375rem 0.75rem; border-radius: 0.25rem;
}
.service-card__body { padding: 1.5rem; }
.service-card__title { font-size: 1.125rem; font-weight: 700; color: var(--brand-navy); }
.service-card__text { margin-top: 0.75rem; font-size: 0.875rem; color: var(--muted-foreground); line-height: 1.625; }
/* ===================== END SERVICES ===================== */


/* =============================================================
   10. JOURNEY / TIMELINE
   ============================================================= */
.journey { padding-block: 6rem; }
.journey__tabs { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; margin-bottom: 3rem; }
.journey__tab {
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-lg);
  font-size: 0.875rem;
  font-weight: 600;
  background: var(--muted);
  color: var(--brand-navy);
  text-align: center;
  transition: background-color 0.2s ease;
}
.journey__tab:hover { background: var(--border); }
.journey__tab--active { background: var(--brand-red); color: #fff; box-shadow: var(--shadow-card); }
.journey__tab-year { font-size: 1.125rem; line-height: 1; }
.journey__tab-label { margin-top: 0.25rem; font-size: 0.625rem; text-transform: uppercase; letter-spacing: 0.05em; opacity: 0.8; }

.journey__body { display: grid; gap: 3rem; align-items: center; grid-template-columns: 1fr; }
@media (min-width: 64rem) { .journey__body { grid-template-columns: 1fr 1fr; } }
.journey__text { margin-top: 1.5rem; color: var(--muted-foreground); line-height: 1.625; }
.journey__year-big { margin-top: 2rem; font-size: 4.5rem; font-weight: 700; }
.journey__images { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.journey__images img { border-radius: var(--radius-2xl); object-fit: cover; width: 100%; height: 100%; aspect-ratio: 3 / 4; box-shadow: var(--shadow-elegant); }
.journey__images img:last-child { margin-top: 3rem; }
/* ===================== END JOURNEY / TIMELINE ===================== */


/* =============================================================
   11. CEO MESSAGE
   ============================================================= */
.ceo { position: relative; padding-block: 6rem; background: var(--brand-navy-deep); color: #fff; overflow: hidden; }
.ceo__glow {
  position: absolute; inset: 0; opacity: 0.1;
  background: radial-gradient(circle at 20% 20%, var(--brand-red) 0%, transparent 50%);
}
.ceo__container {
  position: relative;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: grid;
  gap: 3rem;
  align-items: start;
}
@media (min-width: 64rem) { .ceo__container { grid-template-columns: 400px 1fr; } }
.ceo__photo { border-radius: var(--radius-2xl); width: 100%; object-fit: cover; aspect-ratio: 4 / 5; box-shadow: var(--shadow-elegant); }
.ceo__name { margin-top: 1.5rem; font-size: 1.5rem; font-weight: 700; }
.ceo__role { margin-top: 0.25rem; font-size: 0.875rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--brand-red); }
.ceo__title { font-size: 2.25rem; font-weight: 700; }
@media (min-width: 48rem) { .ceo__title { font-size: 3rem; } }
.ceo__letter { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.25rem; color: rgba(255,255,255,0.85); line-height: 1.625; }
.ceo__letter .italic { font-style: italic; }
.ceo__letter .signature { font-weight: 600; }
/* ===================== 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 ===================== */


/* =============================================================
   13. PROJECTS
   ============================================================= */
.projects { padding-block: 6rem; background: var(--muted); }
.projects__title { max-width: 48rem; }
.projects__grid { margin-top: 3.5rem; display: grid; gap: 2rem; grid-template-columns: 1fr; }
@media (min-width: 48rem) { .projects__grid { grid-template-columns: repeat(2, 1fr); } }
.project-card { position: relative; overflow: hidden; border-radius: var(--radius-2xl); aspect-ratio: 16 / 10; box-shadow: var(--shadow-card); }
.project-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.project-card:hover img { transform: scale(1.1); }
.project-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,21,42,0.9), rgba(20,21,42,0.6) 40%, transparent 80%);
}
.project-card__content { position: absolute; inset: 0; padding: 2rem; display: flex; flex-direction: column; justify-content: flex-end; color: #fff; }
.project-card__tag {
  display: inline-block; width: fit-content;
  font-size: 0.625rem; letter-spacing: 0.3em; font-weight: 700;
  background: var(--brand-red); padding: 0.375rem 0.75rem; border-radius: 0.25rem;
}
.project-card__text { margin-top: 1rem; font-size: 0.875rem; color: rgba(255,255,255,0.85); max-width: 32rem; }
/* ===================== END PROJECTS ===================== */


/* =============================================================
   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 ===================== */