/**
 * assets/css/main.css
 * Page-level layout styles: header, footer, and all section-specific rules.
 * Imports all partials via dependency ordering in enqueue.php.
 */

/* font-family: 'Raleway', sans-serif; */
/* ══════════════════════════════════════════════════════════════════════════════
   GLOBAL PAGE STRUCTURE
══════════════════════════════════════════════════════════════════════════════ */
body {
  background: none;
}

.site-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
}

.goldBtn {
  color: #111;
  background: #ffc010;
}

.ButtonM {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 50px;
  font-size: 14px;
  text-decoration: none;
  transition:
    transform 0.3s ease,
    background 0.3s ease;
  font-weight: 500;
}

.ButtonM:hover {
  transform: translateY(-2px);
}

.ButtonM i {
  font-size: 14px;
  transition: transform 0.4s ease;
  transform: rotate(-45deg);
}

.goldBtn:hover {
  background: #fecc40;
  color: #000;
}

/* Rotate arrow */
.goldBtn:hover i {
  transform: rotate(0deg);
}

.btnWOutline {
  background-color: #ffffff;
  color: #000000;
  border: 2px solid #eaeaea;
}

.btnWOutline i {
  transform: rotate(0deg);
}

.btnWOutline:hover {
  background: #fecc40;
  color: #000;
}

.btnW {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.75);
  background: transparent;
}

.btnW:hover {
  background: #fecc40;
  color: #000;
  border-color: #000;
}

.site-main {
  flex: 1;
  padding-top: var(--header-height);
  /* offset for fixed header */
}

/* ── Skip Link (accessibility) ────────────────────────────────────────────── */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--color-accent-gold);
  color: #000;
  padding: var(--space-3) var(--space-6);
  font-weight: var(--weight-bold);
  z-index: var(--z-toast);
  border-radius: var(--radius-sm);
}

.skip-link:focus {
  left: var(--space-6);
  top: var(--space-6);
}

/* ══════════════════════════════════════════════════════════════════════════════
   HERO SECTION
══════════════════════════════════════════════════════════════════════════════ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  margin-top: 0;
  /* Extend behind header */
}

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

#hero {
  margin-top: 0;
}

.hero__bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__bg-video iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;
  /* 16:9 aspect ratio */
  min-height: 100vh;
  min-width: 177.78vh;
  transform: translate(-50%, -50%);
  border: none;
  pointer-events: none;
}

.hero__bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ── Hero content area ─────────────────────────────────────────────────────── */

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  flex: 1;
  display: flex;
  align-items: center;
  padding-block: var(--space-32);
  padding-top: calc(var(--header-height) + var(--space-20));
}

/* Two-column inner grid */
.hero__inner {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: var(--space-16);
  align-items: flex-end;
  width: 100%;
}

.hero__left {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.hero__right {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: var(--space-8);
}

/* ── Eyebrow ──────────────────────────────────────────────────────────────── */

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--type-body-sm);
  font-weight: var(--weight-medium);
  letter-spacing: var(--tracking-wide);
  color: var(--color-text-primary);
  margin-bottom: var(--space-6);
  opacity: 0.85;
}

.hero__eyebrow-icon {
  color: var(--color-accent-gold);
  flex-shrink: 0;
}

/* ── Headline ─────────────────────────────────────────────────────────────── */

.hero__headline {
  font-family: var(--font-display);
  font-size: var(--type-display);
  line-height: var(--leading-tight);
  color: var(--color-text-primary);
  margin-bottom: 0;
  max-width: 20ch;
  font-weight: var(--weight-bold);
}

.hero__headline .line {
  display: block;
  overflow: hidden;
  /* Clip reveal container */
}

/* ── Description ──────────────────────────────────────────────────────────── */

.hero__description {
  font-size: var(--type-body-sm);
  color: var(--color-text-secondary);
  max-width: 42ch;
  line-height: var(--leading-relaxed);
  margin: 0;
}

/* ── CTA buttons ──────────────────────────────────────────────────────────── */

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  align-items: center;
}

/* ── Deprecated: hero__subtext kept for back-compat ──────────────────────── */
.hero__subtext {
  font-size: var(--type-body-lg);
  color: var(--color-text-secondary);
  max-width: 52ch;
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-10);
}

/* ── Bottom stats strip ───────────────────────────────────────────────────── */

.hero__stats-strip {
  position: relative;
  z-index: 3;
  padding-block: var(--space-6);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero__stats-row {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.hero__stat-label {
  font-size: var(--type-body-sm);
  font-weight: var(--weight-medium);
  color: var(--color-text-secondary);
  letter-spacing: var(--tracking-wide);
  white-space: nowrap;
  transition: color var(--duration-normal) var(--ease-out);
}

.hero__stat-label:hover {
  color: var(--color-accent-gold);
}

.hero__stat-divider {
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}

/* ── Scroll indicator ─────────────────────────────────────────────────────── */

.hero__scroll-indicator {
  position: absolute;
  bottom: calc(var(--space-10) + 48px);
  /* above stats strip */
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  color: var(--color-text-muted);
  font-size: var(--type-label);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  animation: fadeInUp 1s var(--ease-out) 1.5s both;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--color-accent-gold));
  animation: lineGrow 1s var(--ease-out) 2s both;
}

/* =========================================
   PREMIUM HERO
========================================= */

.hero {
  position: relative;
  min-height: calc(100vh - 28px);
  margin: 14px;
  border-radius: 16px;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  background: #111;
}

/* =========================================
   BACKGROUND
========================================= */

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.hero__bg-image,
.hero__bg-video,
.hero__bg-video iframe {
  width: 100%;
  height: 100%;
}

.hero__bg-image {
  display: block;
  object-fit: cover;
  object-position: center;
}

.hero__bg-video {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__bg-video iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 177.77777778vh;
  min-width: 100%;
  height: 56.25vw;
  min-height: 100%;
  transform: translate(-50%, -50%);
  border: 0;
}

/* =========================================
   DARK OVERLAY
========================================= */

.hero__overlay {
  position: absolute;
  inset: 0;

  /* background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.78) 0%,
      rgba(0, 0, 0, 0.48) 45%,
      rgba(0, 0, 0, 0.28) 100%
    ),
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.3) 0%,
      transparent 35%,
      rgba(0, 0, 0, 0.55) 100%
    ); */
  background: #00000088;
}

/* =========================================
   HEADER
========================================= */

.hero__header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;

  height: 96px;

  display: flex;
  align-items: center;

  padding: 0 46px;

  z-index: 10;
}

/* LOGO */

.hero__logo {
  flex: 1;
}

.hero__logo a {
  display: inline-flex;
  align-items: center;
  gap: 7px;

  color: #fff;
  text-decoration: none;
}

.hero__logo img {
  max-width: 215px;
  height: auto;
}

.hero__logo-mark {
  font-size: 26px;
  font-weight: 800;
  color: #f4c324;
}

.hero__logo-text {
  font-size: 23px;
  font-weight: 700;
  letter-spacing: -1px;
}

/* NAV */

.hero__nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.hero__nav a {
  position: relative;

  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;

  font-size: 14px;
  font-weight: 400;

  transition: color 0.3s ease;
}

.hero__nav a:hover {
  color: #fff;
}

.nav-arrow {
  margin-left: 4px;
  font-size: 17px;
}

/* HEADER BUTTON */

.hero__header-cta {
  margin-left: auto;

  display: inline-flex;
  align-items: center;
  gap: 20px;

  padding: 11px 20px 11px 24px;

  color: #171717;
  background: #fff;

  border-radius: 50px;

  font-size: 14px;
  text-decoration: none;

  transition:
    transform 0.3s ease,
    background 0.3s ease;
}

.hero__header-cta:hover {
  transform: translateY(-2px);
  background: #f4c324;
  color: #fff;
}

/* =========================================
   MAIN CONTENT
========================================= */

.hero__content {
  position: relative;
  /*min-height: calc(100vh - 28px);*/

  display: flex;
  align-items: flex-end;

  padding: 0 30px;
}

.hero__main {
  width: 100%;

  display: flex;
  gap: 70px;

  align-items: end;
}

/* =========================================
   EYEBROW
========================================= */

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;

  margin: 0 0 26px;

  font-size: 15px;
  line-height: 1;

  color: #fff;
}

.hero__eyebrow svg {
  color: #f4c324;
}

#hero {
  position: relative;
  top: 0;
  width: 100%;
  left: 0;
  padding: 15px;
  margin-top: -65px;
  max-width: 98%;
  display: flex;
}

/* =========================================
   HEADLINE
========================================= */

.hero__headline {
  max-width: 895px;

  margin: 0;

  font-size: clamp(52px, 5.1vw, 72px);
  font-weight: 600;
  font-family: "Raleway", sans-serif;
  letter-spacing: -4%;
}

.hero__headline span {
  display: block;
}

/* =========================================
   RIGHT DESCRIPTION
========================================= */

.hero__right {
  max-width: 430px;
  padding-bottom: 1px;
}

.hero__description {
  margin: 0 0 0px;

  color: #fff;
  font-weight: 400;
  font-size: 19px;
  line-height: 1.5;
}

.hero_bottom_section {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: flex-end;
  margin-bottom: 1%;
}

/* =========================================
   CTA BUTTONS
========================================= */

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

.hero__btn {
  min-height: 44px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 12px 20px;

  border-radius: 50px;

  font-size: 14px;
  text-decoration: none;

  transition:
    transform 0.3s ease,
    background 0.3s ease;
}

.hero__btn:hover {
  transform: translateY(-2px);
}

.hero__btn--primary {
  color: #111;
  background: #f4c324;
  transition:
    transform 0.3s ease,
    background 0.3s ease;
  font-weight: 500;
}

.hero__btn--primary:hover {
  background: #fecc40;
  color: #000;
}

.hero__btn--primary i {
  font-size: 14px;
  transition: transform 0.4s ease;
}

/* Rotate arrow */
.hero__btn--primary:hover i {
  transform: rotate(45deg);
}

.hero__btn--outline {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.75);
  background: transparent;
}

.hero__btn--outline:hover {
  background: #fecc40;
  border-color: #fecc40;
  color: #000;
}

/* =========================================
   STATS
========================================= */

.hero__stats {
  position: static;
  display: flex;
  align-items: center;
  gap: 0;
  z-index: 5;
  width: 100%;
  justify-content: space-between;
  max-width: 640px;
  margin-bottom: 1%;
  margin-left: 2%;
}

.hero__stats span {
  position: relative;

  padding: 0px;

  color: rgba(255, 255, 255, 0.9);

  font-size: 14px;
}

.hero__stats span:first-child {
  padding-left: 0;
}

/* .hero__stats span + span::before {
  content: "";

  position: absolute;

  left: 0;
  top: 50%;

  width: 1px;
  height: 16px;

  background: rgba(255, 255, 255, 0.35);

  transform: translateY(-50%);
} */

/* =========================================
   TABLET
========================================= */

@media (max-width: 1100px) {
  .hero__nav {
    gap: 20px;
  }

  .hero__header {
    padding: 0 32px;
  }

  .hero__content {
    padding-left: 32px;
    padding-right: 32px;
  }

  .hero__headline {
    font-size: clamp(48px, 6vw, 68px);
  }

  .hero__main {
    gap: 40px;
  }

  .hero__stats {
    left: 32px;
  }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {
  .hero {
    min-height: 720px;
    margin: 8px;
    border-radius: 20px;
  }

  .hero__header {
    height: 76px;
    padding: 0 20px;
  }

  .hero__nav {
    display: none;
  }

  .hero__logo-text {
    font-size: 18px;
  }

  .hero__header-cta {
    padding: 10px 16px;
    gap: 10px;
    font-size: 12px;
  }

  .hero__content {
    min-height: 720px;
    padding: 110px 22px 130px;
    align-items: flex-end;
  }

  .hero__main {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 35px;
  }

  .hero__headline {
    font-size: clamp(42px, 11vw, 62px);
    letter-spacing: -2.5px;
    line-height: 1;
  }

  .hero__eyebrow {
    margin-bottom: 20px;
    font-size: 13px;
  }

  .hero__right {
    max-width: 100%;
  }

  .hero__description {
    max-width: 420px;
    font-size: 15px;
    margin-bottom: 24px;
  }

  .hero__ctas {
    flex-wrap: wrap;
  }

  .hero__stats {
    left: 22px;
    right: 22px;
    bottom: 28px;

    justify-content: space-between;
  }

  .hero__stats span {
    padding: 0 12px;
    font-size: 11px;
  }

  .hero__stats span:first-child {
    padding-left: 0;
  }

  .hero__stats span + span::before {
    height: 12px;
  }

  .featured-cases__media {
    aspect-ratio: 1 !important;
  }

  .featured-cases__item {
    width: 100%;
  }
}

/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {
  .hero__header-cta span {
    display: none;
  }

  .hero__header-cta {
    padding: 11px;
  }

  .hero__headline {
    font-size: 40px;
  }

  .hero__ctas {
    width: 100%;
  }

  .hero__btn {
    flex: 1;
    gap: 10px;
    padding: 12px 15px;
  }

  .hero__stats span {
    font-size: 9px;
    padding: 0 7px;
  }
}

/* ══════════════════════════════════════════════════════════════════════════════
   STATS STRIP
══════════════════════════════════════════════════════════════════════════════ */

.stats-section {
  background: #ffffff;
  padding-block: 70px;
  border-top: 2px dashed #e6e6e6;
}

.stats-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 35px;
}

.stats-header__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffb800;
  width: 18px;
  height: 18px;
}

.stats-header__icon svg {
  width: 100%;
  height: 100%;
}

.stats-header__title {
  font-size: 18px;
  font-weight: 500;
  color: #000;
  text-transform: capitalize;
  --font-display: "Stack Sans Headline", Arial, sans-serif;
}

.heading__eyebrow {
  font-size: 18px;
  font-weight: 450;
  color: #000;
  text-transform: capitalize;
  --font-display: "Stack Sans Headline", Arial, sans-serif;
  margin-bottom: 2.5%;
  display: flex;
  align-items: center;
  column-gap: 10px;
}

.heading__eyebrow.white {
  color: #fff;
}

.heading__eyebrow svg {
  color: #f4c324;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 30px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  text-align: left;
  padding: 0;
}

.stat-item__number {
  font-size: clamp(48px, 5.5vw, 64px);
  font-weight: 400;
  color: #0a0a0a;
  line-height: 1;
  margin: 0 0 24px 0;
  letter-spacing: -2px;
  --font-display: "Stack Sans Headline", Arial, sans-serif;
}

.stat-item__content {
  border-top: 2px dashed #e6e6e6;
  padding-top: 20px;
}

.stat-item__label {
  font-size: 18px;
  font-weight: 600;
  color: #0a0a0a;
  margin: 0 0 10px 0;
  line-height: 1.3;
  text-transform: capitalize;
  letter-spacing: -3%;
}

.stat-item__description {
  font-size: 14px;
  line-height: 1.6;
  color: #666666;
  margin: 0;
}

@media (max-width: 991px) {
  .stats-section {
    padding-block: 60px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .stats-section {
    padding-block: 50px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* ══════════════════════════════════════════════════════════════════════════════
   SERVICES LIST SECTION
══════════════════════════════════════════════════════════════════════════════ */

/* ══════════════════════════════════════════════════════════════════════════════
   SERVICES SECTION (INTERACTIVE)
══════════════════════════════════════════════════════════════════════════════ */

.services-section {
  padding-block: 100px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  color: #ffffff;
  overflow: visible;
}

.services-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  /* Darken background for text readability */
  z-index: 1;
}

.services-section .container {
  position: relative;
  z-index: 2;
}

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 40px;
}

.services-header__left {
  flex: 0 0 73%;
}

.services-header__right {
  flex: 0 0 25%;
}

.services-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4%;
}

.services-eyebrow__icon {
  display: inline-flex;
  align-items: center;
  color: #ffb800;
  width: 22px;
  height: 22px;
}

.services-eyebrow__icon svg {
  width: 100%;
  height: 100%;
}

.services-eyebrow__title {
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  text-transform: capitalize;
  letter-spacing: 1px;
}

.services-title {
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 600;
  line-height: 1.1;
  color: #ffffff;
  margin: 0;
  letter-spacing: -4%;
  font-family: "Raleway", sans-serif;
}

.services-title__icon {
  display: inline-block;
  vertical-align: middle;
  margin-inline: 8px;
}

.services-title__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.services-intro-text {
  font-size: 16px;
  line-height: 1.6;
  color: #fff;
  margin: 0;
  max-width: 325px;
  font-weight: 400;
}

.services-divider {
  width: 100%;
  height: 1px;
  background: #a5a5a5;
  margin-bottom: 50px;
}

.services-content-wrapper {
  display: flex;
  gap: 110px;
  align-items: stretch;
}

.services-list-column {
  flex: 0 0 60%;
}

.services-list-item {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  padding-block: 28px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  margin-top: -1px;
  gap: 8px;

  border: none !important;

  /* Top + Bottom dashed borders */
  background-image:
    repeating-linear-gradient(
      to right,
      #cccccc 0,
      #cccccc 4px,
      transparent 4px,
      transparent 8px
    ),
    repeating-linear-gradient(
      to right,
      #cccccc 0,
      #cccccc 4px,
      transparent 4px,
      transparent 8px
    );

  background-size:
    100% 1px,
    100% 1px;

  background-position: top, bottom;

  background-repeat: no-repeat, no-repeat;
}

/* Hover + Active */
.services-list-item.is-active,
.services-list-item:hover {
  border: none !important;

  /* Top + Bottom yellow dashed borders */
  background-image:
    repeating-linear-gradient(
      to right,
      #efb800 0,
      #efb800 4px,
      transparent 4px,
      transparent 8px
    ),
    repeating-linear-gradient(
      to right,
      #efb800 0,
      #efb800 4px,
      transparent 4px,
      transparent 8px
    );

  background-size:
    100% 1px,
    100% 1px;

  background-position: top, bottom;

  background-repeat: no-repeat, no-repeat;
}

.services-list-item__title {
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 600;
  color: rgba(255, 255, 255, 1);
  transition: all 0.3s ease;
  font-family: "Raleway", sans-serif;
}

.services-list-item__number {
  font-size: 22px;
  font-family: monospace;
  color: rgba(255, 255, 255, 1);
  transition: all 0.3s ease;
  position: relative;
  top: -6px;
}

.services-list-item:hover .services-list-item__title,
.services-list-item.is-active .services-list-item__title {
  color: #ffffff;
  transform: translateX(10px);
}

.services-list-item:hover .services-list-item__number,
.services-list-item.is-active .services-list-item__number {
  color: #ffb800;
  transform: translateX(10px);
}

.services-list-item.is-active + .services-list-item,
.services-list-item:hover + .services-list-item {
  background-image:
    repeating-linear-gradient(
      to right,
      #efb800 0,
      #efb800 4px,
      transparent 4px,
      transparent 8px
    ),
    repeating-linear-gradient(
      to right,
      #cccccc 0,
      #cccccc 4px,
      transparent 4px,
      transparent 8px
    );

  background-position: top, bottom;
  background-size:
    100% 1px,
    100% 1px;
  background-repeat: no-repeat;
}

/* Right Column: Preview Cards Container */
.services-preview-column {
  flex: 0 0 27%;
  position: relative;
  align-self: stretch;
  z-index: 3;
}

.services-preview-card-container {
  position: sticky;
  top: calc(var(--header-height, 80px) + 24px);
  width: 100%;
  min-height: 480px;
}

.services-preview-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateY(40px);
  transition:
    opacity 0.5s ease,
    transform 0.5s cubic-bezier(0.25, 1, 0.5, 1),
    visibility 0.5s;
  pointer-events: none;
}

.services-preview-card.is-active {
  position: relative;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.services-preview-card__image-wrapper {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.services-preview-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services-preview-card__title {
  font-size: 20px;
  font-weight: 400;
  color: #ffffff;
  margin: 0 0 12px 0;
}

.services-preview-card__desc {
  font-size: 15px;
  line-height: 1.6;
  color: #bbbbbb;
  margin: 0;
  margin-bottom: 15px;
}

/* Responsive */
@media (max-width: 991px) {
  .services-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .services-header__left,
  .services-header__right {
    flex: 0 0 100%;
  }

  .services-content-wrapper {
    flex-direction: column;
    gap: 50px;
  }

  .services-list-column,
  .services-preview-column {
    flex: 0 0 100%;
    width: 100%;
    position: static;
  }

  /* Preview sits under the tapped item so the change is on-screen */
  .services-preview-column {
    margin-block: 8px 12px;
    scroll-margin-top: calc(var(--header-height, 80px) + 16px);
  }

  .services-preview-card-container {
    position: relative;
    top: auto;
    min-height: auto;
  }

  .services-preview-card {
    position: relative;
    display: none;
  }

  .services-preview-card.is-active {
    display: block;
  }
}

/* ══════════════════════════════════════════════════════════════════════════════
    SCROLL REVEAL ANIMATIONS
══════════════════════════════════════════════════════════════════════════════ */

.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}

.reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger siblings inside grids */
.stats-grid .reveal-up:nth-child(2) {
  transition-delay: 0.1s;
}

.brand-process__cards .reveal-up:nth-child(2) {
  transition-delay: 0.1s;
}

.brand-process__cards .reveal-up:nth-child(3) {
  transition-delay: 0.2s;
}

.brand-process__cards .reveal-up:nth-child(4) {
  transition-delay: 0.3s;
}

.featured-cases__grid .reveal-up:nth-child(2) {
  transition-delay: 0.1s;
}

.featured-cases__grid .reveal-up:nth-child(3) {
  transition-delay: 0.2s;
}

.featured-cases__grid .reveal-up:nth-child(4) {
  transition-delay: 0.15s;
}

.featured-cases__grid .reveal-up:nth-child(5) {
  transition-delay: 0.25s;
}

.cta-stories__inner .reveal-up:nth-child(2) {
  transition-delay: 0.1s;
}

.cta-stories__inner .reveal-up:nth-child(3) {
  transition-delay: 0.2s;
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .reveal-up {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ══════════════════════════════════════════════════════════════════════════════
   STUDIO SLIDER SECTION
══════════════════════════════════════════════════════════════════════════════ */

.studio-slider-section {
  padding-block: 80px;
  background: #ffffff;
  overflow: hidden;
}

.studio-slider-section__inner {
  max-width: var(--container-max, 1320px);
  margin: 0 auto;
  padding-inline: clamp(16px, 4vw, 60px);
}

.studio-slider-section__eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: #000;
  letter-spacing: 0%;
  margin-bottom: 20px;
}

.studio-slider-section__eyebrow i {
  color: #ffb800;
}

.studio-slider-section__eyebrow span:first-child {
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--color-accent-gold, #ffc010);
  flex-shrink: 0;
}

.studio-slider-section__header {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 32px;
  margin-bottom: 40px;
}

.studio-slider-section__headline {
  font-family: "Raleway", sans-serif;
  font-size: clamp(28px, 3.5vw, 52px);
  font-weight: 600;
  line-height: 1.15;
  color: #111111;
  margin: 0;
  letter-spacing: -0.03em;
}

.page-id-35 .studio-slider-section__headline {
  /*max-width: 738px;*/
}

.studio-slider-section__headline span {
  color: #888888;
}

.studio-slider-section__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 500;
  color: #111111;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.25s ease;
  text-transform: uppercase;
}

.studio-slider-section__link i {
  font-size: 14px;
  transition: transform 0.25s ease;
}

.studio-slider-section__link:hover {
  color: #febf10;
}

.studio-slider-section__link:hover i {
  transform: translateX(4px);
}

.studio-slider {
  overflow: visible;
  width: 100%;
}

.studio-slider__slide {
  aspect-ratio: 0.82;
  border-radius: 18px;
  overflow: hidden;
  background: #e5e5e0;
}

.studio-slider__slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 991px) {
  .studio-slider-section__header {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .studio-slider-section__link {
    justify-self: start;
  }
}

@media (max-width: 576px) {
  .studio-slider-section {
    padding-top: 48px;
  }

  .studio-slider-section__inner {
    padding-inline: 18px;
  }

  .studio-slider-section__header {
    gap: 22px;
    margin-bottom: 28px;
  }

  .studio-slider-section__headline {
    font-size: clamp(30px, 11vw, 42px);
  }

  .studio-slider__slide {
    border-radius: 14px;
  }
}

/* =========================================
   FEATURED CASES SECTION
========================================= */

.featured-cases {
  background: #f3f3f3;
  color: #0b0b0b;
  padding-top: clamp(58px, 7vw, 96px);
  padding-bottom: 4%;
}

.featured-cases__inner {
  width: min(100%, 1440px);
  margin: 0 auto;
  padding: 0 clamp(20px, 4.5vw, 64px);
}

.featured-cases__header {
  margin: 0 auto clamp(44px, 5vw, 50px);
  text-align: center;
}

.featured-cases__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 0 18px;
  color: #000;
  font-size: 18px;
  font-weight: 500;
}

.featured-cases__eyebrow span {
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 10px solid #ffc010;
}

.featured-cases__headline {
  margin: 0;
  font-family: "Raleway", sans-serif;
  font-size: clamp(34px, 4.3vw, 58px);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -4%;
  color: #0a0a0a;
}

.featured-cases__intro {
  max-width: 620px;
  margin: 24px auto 0;
  color: #333;
  font-size: 19px;
  line-height: 1.55;
}

.featured-cases__grid {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: clamp(54px, 8vw, 108px) clamp(28px, 5vw, 80px);
  align-items: start;
}

.featured-cases__item {
  min-width: 0;
}

.featured-cases__item--left {
  grid-column: 1 / span 6;
}

.featured-cases__item--right {
  grid-column: 8 / span 5;
}

.featured-cases__item--center {
  grid-column: 4 / span 6;
}

.featured-cases__item--large .featured-cases__media {
  aspect-ratio: 1.78;
}

.featured-cases__item--medium .featured-cases__media {
  aspect-ratio: 1.72;
}

.featured-cases__item--small .featured-cases__media {
  aspect-ratio: 1.85;
}

.featured-cases__media {
  display: block;
  overflow: hidden;
  border-radius: 24px;
  background: #ddd;
}

.featured-cases__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.featured-cases__media:hover img {
  transform: scale(1.045);
}

.featured-cases__body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: baseline;
  gap: 18px;
  margin-top: 22px;
}

.featured-cases__body h3 {
  margin: 0;
  color: #080808;
  font-family: "Raleway", var(--font-display), sans-serif;
  font-size: clamp(24px, 2.3vw, 34px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0;
}

.featured-cases__body p {
  margin: 0;
  color: #5d5d5d;
  font-size: 18px;
  line-height: 1.3;
  white-space: nowrap;
}

.featured-cases__all {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  margin-top: clamp(54px, 7vw, 50px);
  padding: 22px 20px;

  border: none !important;

  background-image:
    repeating-linear-gradient(
      to right,
      #febf10 0,
      #febf10 4px,
      transparent 4px,
      transparent 8px
    ),
    repeating-linear-gradient(
      to right,
      #febf10 0,
      #febf10 4px,
      transparent 4px,
      transparent 8px
    );

  background-size:
    100% 1px,
    100% 1px;
  background-position: top, bottom;
  background-repeat: no-repeat, no-repeat;

  color: #111;
  font-size: 24px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    color 0.25s ease,
    background 0.25s ease;
  font-family: "Raleway", sans-serif;
}

.featured-cases__all i {
  font-size: 22px;
  transition: transform 0.25s ease;
}

.featured-cases__all:hover {
  background: #f6e5aa;
  color: #000;
}

.featured-cases__all:hover i {
  transform: translateX(4px);
}

@media (max-width: 991px) {
  .featured-cases__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 52px 24px;
  }

  .featured-cases__item--left,
  .featured-cases__item--right,
  .featured-cases__item--center {
    grid-column: auto;
  }

  .featured-cases__item--center {
    grid-column: 1 / -1;
    width: min(100%, 640px);
    justify-self: center;
  }
}

@media (max-width: 640px) {
  .featured-cases {
    padding-top: 52px;
  }

  .featured-cases__inner {
    padding-inline: 18px;
  }

  .featured-cases__header {
    text-align: left;
    margin-bottom: 34px;
  }

  .featured-cases__eyebrow {
    justify-content: flex-start;
  }

  .featured-cases__grid {
    display: flex;
    flex-direction: column;
    gap: 42px;
  }

  .featured-cases__item--center {
    width: 100%;
  }

  .featured-cases__body {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 16px;
  }

  .featured-cases__body p {
    white-space: normal;
  }

  .featured-cases__all {
    margin-top: 48px;
  }
}

/* =========================================
   BRAND PROCESS SECTION
========================================= */

.brand-process {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: #fff;
  padding: clamp(72px, 7vw, 108px) 0 clamp(70px, 7vw, 104px);
}

.brand-process__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: hsl(0deg 0% 4% / 70%);
}

.brand-process__inner {
  width: min(100%, 1440px);
  margin: 0 auto;
  padding: 0 clamp(20px, 4.5vw, 64px);
}

.brand-process__top {
  display: grid;
  grid-template-columns: minmax(0, 650px) minmax(280px, 450px);
  align-items: end;
  justify-content: space-between;
  gap: clamp(34px, 6vw, 90px);
  margin-bottom: clamp(44px, 5vw, 62px);
}

.brand-process__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 36px;
  color: #f5f5f5;
  font-size: 18px;
  font-weight: 400;
}

.brand-process__eyebrow span {
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 10px solid #ffc010;
}

.brand-process__headline {
  max-width: 540px;
  margin: 0;
  color: #fff;
  font-family: "Raleway", var(--font-display), sans-serif;
  font-size: clamp(40px, 5.4vw, 56px);
  font-weight: 600;
  line-height: 1.14;
  letter-spacing: 0;
}

.brand-process__intro {
  max-width: 430px;
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 20px;
  line-height: 1.5;
}

.brand-process__steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(24px, 3vw, 40px);
  justify-content: center;
}

.brand-process-step {
  display: flex;
  flex-direction: column;
  color: #fff;
  transition: transform 0.3s ease;
  text-align: center;
}

.brand-process-step__header {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: var(--space-6);
  width: 100%;
}

.brand-process-step__header::before,
.brand-process-step__header::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  transition: background 0.3s ease;
}

.brand-process-step__number {
  font-family: "Raleway", var(--font-display), sans-serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.2);
  line-height: 1;
  transition:
    color 0.3s ease,
    transform 0.3s ease;
  z-index: 2;
  background: transparent;
  padding: 0 16px;
}

.brand-process-step__line {
  display: none;
}

.brand-process-step__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.brand-process-step__icon {
  width: 100px;
  height: 100px;
  opacity: 0.8;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.brand-process-step__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-process-step__title {
  margin: 0;
  color: #fff;
  font-family: "Raleway", var(--font-display), sans-serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2;
  transition:
    color 0.3s ease,
    transform 0.3s ease;
  letter-spacing: 3px;
}

.brand-process-step__description {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  line-height: 1.5;
}

/* Hover effects */
@media (hover: hover) and (pointer: fine) {
  .brand-process-step:hover .brand-process-step__number {
    color: #ffc010;
    transform: translateY(-4px);
  }

  .brand-process-step:hover .brand-process-step__title {
    color: #ffc010;
    transform: translateY(-4px);
  }

  .brand-process-step:hover .brand-process-step__header::before,
  .brand-process-step:hover .brand-process-step__header::after,
  .brand-process-step:hover .brand-process-step__line {
    background: rgba(255, 192, 16, 0.4);
  }
}

@media (prefers-reduced-motion: reduce) {
  .brand-process-step:hover .brand-process-step__number,
  .brand-process-step:hover .brand-process-step__title {
    transform: none;
  }
}

@media (max-width: 820px) {
  .brand-process__top {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .brand-process__eyebrow {
    margin-bottom: 24px;
  }

  .brand-process__intro {
    max-width: 620px;
    font-size: 18px;
  }
}

@media (max-width: 580px) {
  .brand-process {
    padding-block: 54px;
  }

  .brand-process__inner {
    padding-inline: 18px;
  }
}

.about-intro {
  padding-block: var(--section-padding-v);
  background: var(--color-bg-secondary);
}

.about-intro__image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: var(--space-3);
}

.about-intro__image-grid .image-item:first-child {
  grid-column: 1 / -1;
}

.about-intro__industries {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-8);
}

/* ══════════════════════════════════════════════════════════════════════════════
   PORTFOLIO GRID SECTION
══════════════════════════════════════════════════════════════════════════════ */

.portfolio-section {
  padding-block: var(--section-padding-v);
  background: var(--color-bg-primary);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--grid-gap);
}

.portfolio-filters {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-10);
}

.portfolio-filter-btn {
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  color: var(--color-text-secondary);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-size: var(--type-body-sm);
  font-weight: var(--weight-medium);
  cursor: pointer;
  transition: all var(--duration-normal) var(--ease-out);
}

.portfolio-filter-btn:hover,
.portfolio-filter-btn.is-active {
  background: var(--color-accent-gold);
  border-color: var(--color-accent-gold);
  color: #000;
}

/* ══════════════════════════════════════════════════════════════════════════════
   TEAM SPOTLIGHT SECTION
══════════════════════════════════════════════════════════════════════════════ */

.team-spotlight {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

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

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

.team-spotlight__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.85) 40%,
    rgba(0, 0, 0, 0.2) 100%
  );
}

.team-spotlight__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-block: var(--space-20);
  max-width: 50%;
}

.team-spotlight__name {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 80px);
  text-transform: uppercase;
  color: var(--color-text-primary);
  line-height: var(--leading-tight);
}

.team-spotlight__role {
  font-size: var(--type-body-lg);
  color: var(--color-accent-gold);
  margin-bottom: var(--space-6);
  font-weight: var(--weight-medium);
}

.team-spotlight__bio {
  color: var(--color-text-secondary);
  margin-bottom: var(--space-8);
  max-width: none;
}

/* ══════════════════════════════════════════════════════════════════════════════
   CTA BANNER SECTION
══════════════════════════════════════════════════════════════════════════════ */

.cta-banner {
  background: var(--color-bg-secondary);
  border-top: 1px solid var(--color-border);
  padding-block: var(--space-24);
  text-align: center;
}

.cta-banner__headline {
  font-family: var(--font-display);
  font-size: var(--type-h1);
  text-transform: uppercase;
  color: var(--color-text-primary);
  line-height: var(--leading-tight);
  margin-bottom: var(--space-4);
}

.cta-banner__headline .accent {
  color: var(--color-accent-gold);
}

.cta-banner__subtext {
  color: var(--color-text-secondary);
  margin-inline: auto;
  margin-bottom: var(--space-10);
}

/* ══════════════════════════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════════════════════════ */

.site-footer {
  padding: 14px;
  padding-top: 0;
}

.footer-wrap {
  border-radius: 20px;
  padding: clamp(40px, 5vw, 64px) clamp(28px, 5vw, 64px) clamp(28px, 4vw, 40px);
  position: relative;
  overflow: hidden;
  background-color: #0a0a0a;
  background-size: cover;
  background-position: center right;
}

/* dark overlay so text stays readable */
.footer-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 0;
  pointer-events: none;
}

/* ensure content sits above overlay */
.footer-wrap > * {
  position: relative;
  z-index: 1;
}

.footer-wrap__bg {
  display: none;
}

/* ── Top grid ───────────────────────────────────────────────────────────────── */

.footer-top {
  display: grid;
  grid-template-columns: minmax(280px, 340px) 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
  margin-bottom: clamp(40px, 5vw, 35px);
}

/* ── Newsletter ─────────────────────────────────────────────────────────────── */

.footer-newsletter__heading {
  font-family: "Raleway", sans-serif;
  font-size: clamp(18px, 2.8vw, 18px);
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
  margin: 0px;
  letter-spacing: -0.3px;
}

.oneLiner {
  margin-bottom: 15px;
  color: #838383;
  font-size: 18px;
  line-height: inherit;
  margin-top: 30px;
}

.footer-newsletter__form {
  display: flex;
  align-items: center;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  padding: 5px 5px 5px 20px;
  gap: 8px;
  margin-bottom: 0px;
}

.footer-newsletter__input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: #fff;
  font-size: 14px;
  min-width: 0;
}

.footer-newsletter__input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.footer-newsletter__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #111;
  border: none;
  border-radius: 999px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition:
    background 0.25s ease,
    color 0.25s ease;
}

.footer-newsletter__btn i {
  font-size: 12px;
  transition: transform 0.3s ease;
  transform: rotate(-45deg);
}

.footer-newsletter__btn:hover {
  background: #ffc010;
}

.footer-nav__col i {
  color: #ffc010;
}

.footer-nav__col i:first-child {
  margin-top: 4px;
}

.footer-nav__col p {
  display: flex;
  gap: 8px;
}

.footer-nav__col p a {
  display: flex;
  gap: 8px;
}

.footer-newsletter__btn:hover i {
  transform: rotate(0deg);
}

/* ── Social buttons ─────────────────────────────────────────────────────────── */

.footer-socials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-social-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 8px 14px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  text-decoration: none;
  transition:
    border-color 0.25s ease,
    color 0.25s ease;
}

.footer-social-btn:hover {
  border-color: #ffc010;
  color: #ffc010;
}

.footer-social-btn__arrow {
  font-size: 9px;
  opacity: 0.55;
  color: #fff;
  transform: rotate(-45deg);
  transition: transform 0.4s ease;
}

.footer-social-btn:hover .footer-social-btn__arrow {
  transform: rotate(0deg);
  color: #ffc010;
  opacity: 1;
}

/* ── Nav columns ────────────────────────────────────────────────────────────── */

.footer-nav {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr 0.8fr 1.4fr;
  gap: 0;
}

.footer-nav__col {
  padding: 0 clamp(16px, 2.5vw, 32px);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-nav__col:first-child {
  padding-left: 0;
  border-left: none;
}

.footer-nav__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-nav__list a {
  color: rgba(255, 255, 255, 1);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer-nav__list a:hover {
  color: #ffc010;
}

.footer-nav__contact-title {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 16px;
}

.footer-nav__contact-text {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 10px;
}

.footer-nav__contact-text a {
  color: rgba(255, 255, 255, 1);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-nav__contact-text a:hover {
  color: #ffc010;
}

/* ── Divider ────────────────────────────────────────────────────────────────── */

.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  margin-bottom: clamp(20px, 3vw, 32px);
}

/* ── Bottom bar ─────────────────────────────────────────────────────────────── */

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom__copy {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  margin: 0;
}

.footer-bottom__links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-bottom__links a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-bottom__links a:hover {
  color: #fff;
}

.footer-bottom__sep {
  color: rgba(255, 255, 255, 0.25);
  font-size: 13px;
}

#newsletterWrp {
  display: flex;
  flex-direction: row;
  align-items: center;
  column-gap: 20px;
  margin-top: 0%;
  padding: 20px 0;
  justify-content: space-between;
}

.footerNewletter {
  border-top: 1px solid #ffc010;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */

.floating-whatsapp {
  position: fixed;
  right: 25px;
  bottom: 25px;
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  border-radius: 50%;
  z-index: 9999;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.floating-whatsapp svg {
  width: 31px;
  height: 31px;
  fill: #fff;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

@media (max-width: 575px) {
  .floating-whatsapp {
    right: 15px;
    bottom: 15px;
    width: 52px;
    height: 52px;
  }

  .floating-whatsapp svg {
    width: 28px;
    height: 28px;
  }
}

/* ── Responsive ─────────────────────────────────────────────────────────────── */

@media (max-width: 1024px) {
  .footer-nav {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-nav__col {
    padding: clamp(16px, 2vw, 24px) clamp(16px, 2.5vw, 32px);
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .footer-nav__col:first-child,
  .footer-nav__col:nth-child(2) {
    border-top: none;
    padding-top: 0;
  }

  .footer-nav__col:nth-child(odd) {
    padding-left: 0;
  }
}

@media (max-width: 768px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-nav {
    grid-template-columns: repeat(2, 1fr);
  }

  .footerNewletter {
    border-top: 1px solid #ffc010;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding-top: 30px;
  }

  #newsletterWrp {
    display: flex;
    flex-direction: column;
    align-items: center;
    column-gap: 20px;
    margin-top: 0%;
    padding: 20px 0;
    justify-content: space-between;
    text-align: center;
    row-gap: 30px;
  }

  .oneLiner {
    margin-bottom: 0;
    font-size: 16px;
    line-height: inherit;
    margin-top: 20px;
    text-align: center;
  }

  .site-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
    justify-content: center;
  }

  .footer-nav__list {
    gap: 8px;
  }

  .services-list-item__title {
    transform: none !important;
  }

  .services-list-item__number {
    transform: none !important;
  }
}

@media (max-width: 480px) {
  .site-footer {
    padding: 8px;
    padding-top: 0;
  }

  .footer-nav {
    grid-template-columns: 1fr 1fr;
    gap: 24px 16px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ══════════════════════════════════════════════════════════════════════════════
   PAGE HERO (inner pages)
══════════════════════════════════════════════════════════════════════════════ */

.page-hero {
  padding-top: calc(var(--header-height) + var(--space-16));
  padding-bottom: var(--space-16);
  background: var(--color-bg-secondary);
  border-bottom: 1px solid var(--color-border);
}

.page-hero__title {
  font-family: var(--font-display);
  font-size: var(--type-h1);
  text-transform: uppercase;
  color: var(--color-text-primary);
}

/* ══════════════════════════════════════════════════════════════════════════════
   BLOG HERO (hero--blog)
   Premium compact hero for the Blog archive page.
   Matches the reference screenshot — centered layout, dark overlay, rounded card.
══════════════════════════════════════════════════════════════════════════════ */

.hero--blog {
  position: relative;
  min-height: 520px;
  margin: 14px;
  margin-top: 0;
  border-radius: 20px;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  background: #111;
  display: flex;
  align-items: center;
}

.hero--blog .hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.hero--blog .hero__bg-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero--blog .hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.82) 0%,
    rgba(0, 0, 0, 0.55) 50%,
    rgba(0, 0, 0, 0.7) 100%
  );
}

.hero--blog .hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 0;
  min-height: 520px;
}

.hero--blog__inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-block: 60px;
}

/* ── Breadcrumbs ─────────────────────────────────────────────────────────── */

.hero--blog__breadcrumbs {
  margin-bottom: auto;
}

.hero--blog__breadcrumbs .breadcrumbs {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.hero--blog__breadcrumbs .breadcrumbs__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.hero--blog__breadcrumbs .breadcrumbs__item a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.25s ease;
}

.hero--blog__breadcrumbs .breadcrumbs__item a:hover {
  color: #f4c324;
}

.hero--blog__breadcrumbs .breadcrumbs__item span[aria-current="page"] {
  color: rgba(255, 255, 255, 0.9);
}

.hero--blog__breadcrumbs .breadcrumb__sep {
  color: rgba(255, 255, 255, 0.35);
  margin: 0 2px;
}

/* ── Main Content ────────────────────────────────────────────────────────── */

.hero--blog__main {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
  padding-block: 40px 20px;
}

/* ── Eyebrow ─────────────────────────────────────────────────────────────── */

.hero--blog__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0%;
  color: rgba(255, 255, 255, 1);
  margin-bottom: 20px;
  text-transform: capitalize;
}

.hero--blog__eyebrow svg {
  color: #f4c324;
  width: 11px;
  height: 13px;
  flex-shrink: 0;
}

/* ── Headline ────────────────────────────────────────────────────────────── */

.hero--blog__headline {
  font-family: "Raleway", sans-serif;
  font-size: clamp(42px, 5.5vw, 100px);
  font-weight: 600;
  line-height: 1.08;
  color: #fff;
  margin: 0 0 20px;
  letter-spacing: -4px;
  max-width: 100%;
  margin-bottom: 5%;
}

.hero--blog__headline .text-gold {
  color: #f4c324;
}

/* ── Subtext ─────────────────────────────────────────────────────────────── */

.hero--blog__subtext {
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  margin: 0 0 32px;
  max-width: 580px;
}

/* ── CTAs ────────────────────────────────────────────────────────────────── */

.hero--blog__ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.hero--blog__ctas .hero__btn--primary {
  color: #111;
  background: #f4c324;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition:
    transform 0.3s ease,
    background 0.3s ease;
}

.hero--blog__ctas .hero__btn--primary:hover {
  background: #fecc40;
  color: #000;
  transform: translateY(-2px);
}

.hero--blog__ctas .hero__btn--primary i {
  font-size: 14px;
  transition: transform 0.4s ease;
}

.hero--blog__ctas .hero__btn--primary:hover i {
  transform: rotate(45deg);
}

/* ── Responsive ──────────────────────────────────────────────────────────── */

@media (max-width: 768px) {
  .hero--blog {
    min-height: 420px;
    margin: 8px;
    border-radius: 16px;
  }

  .hero--blog .hero__content {
    min-height: 420px;
  }

  .hero--blog__inner {
    padding-block: 40px;
  }

  .hero--blog__main {
    padding-block: 30px 10px;
  }

  .hero--blog__headline {
    font-size: clamp(34px, 10vw, 48px);
  }

  .hero--blog__subtext {
    font-size: 15px;
    max-width: 100%;
  }

  .hero--blog__eyebrow {
    font-size: 12px;
    margin-bottom: 16px;
  }

  .hero--blog__ctas {
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  .hero--blog {
    min-height: 360px;
    margin: 6px;
    border-radius: 14px;
  }

  .hero--blog .hero__content {
    min-height: 360px;
  }

  .hero--blog__headline {
    font-size: 30px;
  }

  .hero--blog__ctas .hero__btn--primary {
    width: 100%;
  }
}

/* ══════════════════════════════════════════════════════════════════════════════
   BLOG — COMPACT FILTER PILLS
══════════════════════════════════════════════════════════════════════════════ */

.bp-filters-section {
  padding-block: 45px 16px;
  background: #ffffff;
}

.bp-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.bp-filter-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
  color: #000;
  background: rgba(238, 238, 238, 1);
  border: 1px solid rgba(238, 238, 238, 1);
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.25s ease;
  cursor: pointer;
  user-select: none;
}

.bp-filter-btn:hover {
  color: #000;
  background: rgba(255, 249, 231, 1);
  border-color: rgba(254, 204, 64, 1);
}

.bp-filter-btn.is-active {
  color: #000;
  background: rgba(255, 249, 231, 1);
  border-color: rgba(254, 204, 64, 1);
}

.bp-filter-btn:focus-visible {
  background: rgba(255, 249, 231, 1);
  border-color: rgba(254, 204, 64, 1);
  outline-offset: 2px;
}

@media (max-width: 768px) {
  .bp-filters-section {
    padding-block: 24px 12px;
  }

  .bp-filters {
    gap: 6px;
    overflow-x: auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
  }

  .bp-filters::-webkit-scrollbar {
    display: none;
  }

  .bp-filter-btn {
    padding: 4px 12px;
    font-size: 11px;
    flex-shrink: 0;
  }
}

/* ══════════════════════════════════════════════════════════════════════════════
   BLOG — REFERENCE CARDS
══════════════════════════════════════════════════════════════════════════════ */

.bp-section {
  padding-block: 20px 80px;
  background: #ffffff;
  padding-bottom: 30px;
}

.bp-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bp-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  transition: opacity 0.3s ease;
}

/* ── Card Container ─────────────────────────────────────────────────────────── */

.bp-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  width: calc((100% - 64px) / 3);
  max-width: 380px;
  min-width: 280px;
  width: 100%;
  background: rgba(243, 243, 243, 1);
}

.bp-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

/* ── Featured Image ─────────────────────────────────────────────────────────── */

.bp-card__img-link {
  display: block;
  margin: 12px 12px 0;
  border-radius: 18px;
  overflow: hidden;
  background: #e8e8e8;
  height: 260px;
}

.bp-card__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.bp-card:hover .bp-card__img {
  transform: scale(1.04);
}

.bp-card__img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0f0f0;
  font-family: "Raleway", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #ccc;
}

/* ── Body ───────────────────────────────────────────────────────────────────── */

.bp-card__body {
  padding: 15px 15px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* ── Category Badge ─────────────────────────────────────────────────────────── */

#blog-posts .bp-card__badge {
  display: inline-block;
  width: auto;
  padding: 4px 14px;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 400;
  color: #000;
  background: rgba(255, 249, 231, 1);
  border: 1px solid #f4c324;
  border-radius: 999px;
  line-height: 1.4;
  width: fit-content;
}

/* ── Title ──────────────────────────────────────────────────────────────────── */

.bp-card__title {
  font-family: "Raleway", sans-serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.45;
  color: rgba(0, 0, 0, 1);
  margin: 0 0 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bp-card__title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease;
}

.bp-card__title a:hover {
  color: #f4c324;
}

/* ── Excerpt ────────────────────────────────────────────────────────────────── */

.bp-card__excerpt {
  font-size: 15px;
  line-height: 1.6;
  color: #000;
  margin: 0 0 20px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ── Author Section ─────────────────────────────────────────────────────────── */

.bp-card__author-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: auto;
  padding-top: 0;
}

.bp-card__avatar-wrap {
  flex-shrink: 0;
}

.bp-card__avatar-wrap .avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.bp-card__author-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.bp-card__author-name {
  font-size: 14px;
  font-weight: 600;
  color: #000;
  line-height: 1.2;
}

.bp-card__meta {
  font-size: 13px;
  color: #000;
  line-height: 1.3;
  font-weight: 400;
  margin-top: 4px;
}

.bp-card__meta-sep {
  color: #ccc;
  margin: 0 3px;
}

/* ── No posts ──────────────────────────────────────────────────────────────── */

.bp-no-posts {
  text-align: center;
  padding: 80px 0;
  font-size: 16px;
  color: #999;
}

/* ── Pagination ──────────────────────────────────────────────────────────── */

.bp-pagination {
  margin-top: 48px;
  display: flex;
  justify-content: center;
}

.bp-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  padding: 0;
  list-style: none;
}

.bp-pagination .page-numbers li a,
.bp-pagination .page-numbers li span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  color: #555;
  font-size: 13px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.bp-pagination .page-numbers li a:hover {
  border-color: #f4c324;
  color: #111;
}

.bp-pagination .page-numbers li span.current {
  background: #f4c324;
  border-color: #f4c324;
  color: #111;
  font-weight: 600;
}

.bp-pagination .page-numbers li .prev,
.bp-pagination .page-numbers li .next {
  min-width: auto;
  padding-inline: 14px;
  gap: 6px;
}

/* ── Responsive ──────────────────────────────────────────────────────────── */

@media (max-width: 1024px) {
  .bp-grid {
    gap: 24px;
  }

  .bp-card {
    width: calc((100% - 24px) / 2);
    max-width: 420px;
  }
}

@media (max-width: 768px) {
  .bp-section {
    padding-block: 16px 60px;
  }

  .bp-grid {
    gap: 20px;
    max-width: 480px;
  }

  .bp-card {
    width: 100%;
    max-width: 480px;
    min-width: 0;
  }

  .bp-card__img-link {
    height: 200px;
    margin: 12px 12px 0;
    border-radius: 14px;
  }

  .bp-card__body {
    padding: 12px 16px 16px;
  }

  .bp-card__title {
    font-size: 18px;
  }

  .bp-card__excerpt {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .bp-pagination .page-numbers li a,
  .bp-pagination .page-numbers li span {
    min-width: 34px;
    height: 34px;
    font-size: 12px;
  }

  .bp-pagination .page-numbers li .prev,
  .bp-pagination .page-numbers li .next {
    padding-inline: 10px;
  }
}

/* ══════════════════════════════════════════════════════════════════════════════
   BLOG — CTA SECTION (override .cta-styles desc for blog)
══════════════════════════════════════════════════════════════════════════════ */

.cta-stories__desc {
  font-size: var(--type-body-lg);
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
  max-width: 52ch;
  margin: 0 auto var(--space-6);
}

/* ══════════════════════════════════════════════════════════════════════════════
   404 PAGE
══════════════════════════════════════════════════════════════════════════════ */

.error-404-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.error-404-section__number {
  font-family: var(--font-display);
  font-size: clamp(120px, 20vw, 240px);
  color: var(--color-accent-gold);
  opacity: 0.15;
  line-height: 1;
  display: block;
}

/* ══════════════════════════════════════════════════════════════════════════════
   RESPONSIVE OVERRIDES
══════════════════════════════════════════════════════════════════════════════ */

@media (min-width: 1024px) {
  #testimonials .testimonials-header {
    display: flex;
    grid-template-columns: 1fr 1fr;
    align-items: end;
    gap: clamp(32px, 5vw, 80px);
    margin-bottom: clamp(40px, 5vw, 56px);
    justify-content: space-between;
  }
}

@media (max-width: 1024px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .team-spotlight__content {
    max-width: 100%;
  }

  /* Hero: tighter gap on tablet */
  .hero__inner {
    gap: var(--space-10);
  }
}

@media (max-width: 768px) {
  /* Hero: stack to single column */
  .hero__inner {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .hero__headline {
    max-width: 100%;
  }

  .hero__description {
    max-width: 100%;
  }

  .hero__scroll-indicator {
    display: none;
  }

  .hero__stats-row {
    gap: var(--space-6);
    flex-wrap: wrap;
  }

  /* Other sections */
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid .stat-item:nth-child(2) {
    border-right: none;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .about-intro__image-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero__ctas {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero__stats-row {
    gap: var(--space-4);
  }

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

  .cta-banner__headline {
    font-size: clamp(32px, 8vw, 48px);
  }
}

/* =========================================================
   TRUST STRIP
========================================================= */

.trust-strip {
  width: 100%;
  background: #ffffff;
  border-top: 2px dashed #e6e6e6;
  border-bottom: 2px dashed #e6e6e6;
  overflow: hidden;
  margin-top: 2%;
}

.trust-strip__container {
  width: 100%;
  /* min-height: 150px; */
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px 6%;
}

/* =========================================================
   INTRO
========================================================= */

.trust-strip__intro {
  flex: 0 0 351px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.trust-strip__text {
  max-width: 287.12px;
  margin: 0;
  color: #0a0a0a;
  font-size: 17px;
  line-height: 24px;
  font-weight: 500;
  letter-spacing: -0.5px;
}

/* =========================================================
   STAR / BURST ICON
========================================================= */

.trust-strip__icon {
  position: relative;
  width: 48px;
  height: 48px;
  flex: 0 0 68px;
}

.trust-strip__icon span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 68px;
  background: #ffb800;
  transform-origin: center;
  border-radius: 2px;
}

.trust-strip__icon span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(0deg);
}

.trust-strip__icon span:nth-child(2) {
  transform: translate(-50%, -50%) rotate(45deg);
}

.trust-strip__icon span:nth-child(3) {
  transform: translate(-50%, -50%) rotate(90deg);
}

.trust-strip__icon span:nth-child(4) {
  transform: translate(-50%, -50%) rotate(135deg);
}

.trust-strip__icon span:nth-child(5) {
  transform: translate(-50%, -50%) rotate(22.5deg);
}

.trust-strip__icon span:nth-child(6) {
  transform: translate(-50%, -50%) rotate(67.5deg);
}

.trust-strip__icon span:nth-child(7) {
  transform: translate(-50%, -50%) rotate(112.5deg);
}

.trust-strip__icon span:nth-child(8) {
  transform: translate(-50%, -50%) rotate(157.5deg);
}

/* =========================================================
   LOGOS
========================================================= */

.trust-strip__logos {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.trustSwiper .swiper-wrapper {
  transition-timing-function: linear !important;
  display: flex;
  align-items: center;
}

.trust-strip__logo {
  flex: 0 0 auto;
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}

.trust-strip__logo img {
  display: block;
  width: auto;
  max-width: 150px;
  max-height: 65px;
  object-fit: contain;
  filter: brightness(0);
  opacity: 0.6;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.trust-strip__logo:hover img {
  opacity: 1;
  transform: translateY(-3px);
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1200px) {
  .trust-strip__container {
    gap: 35px;
    padding: 25px 4%;
  }

  .trust-strip__intro {
    flex-basis: 400px;
  }

  .trust-strip__text {
    font-size: 19px;
  }

  .trust-strip__logos {
    gap: 25px;
  }

  .trust-strip__logo img {
    max-width: 120px;
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 991px) {
  .trust-strip__container {
    flex-direction: column;
    align-items: flex-start;
    padding: 35px 5%;
  }

  .trust-strip__intro {
    flex: none;
    width: 100%;
  }

  .trust-strip__logos {
    width: 100%;
    margin-top: 25px;
  }

  .trust-strip__logo img {
    max-width: 130px;
  }
}

@media (max-width: 576px) {
  .trust-strip__intro {
    gap: 18px;
  }

  .trust-strip__icon {
    width: 52px;
    height: 52px;
    flex-basis: 52px;
  }

  .trust-strip__icon span {
    width: 5px;
    height: 52px;
  }

  .trust-strip__text {
    font-size: 17px;
    line-height: 1.4;
  }

  .trust-strip__logos {
    margin-top: 15px;
  }

  .trust-strip__logo img {
    max-width: 110px;
    max-height: 50px;
  }
}

/* ══════════════════════════════════════════════════════════════════════════════
   TESTIMONIALS SECTION
══════════════════════════════════════════════════════════════════════════════ */

.section--testimonials {
  background: #f3f3f3;
  padding-block: clamp(60px, 7vw, 96px);
}

/* ── Header ─────────────────────────────────────────────────────────────────── */

.testimonials-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: clamp(32px, 5vw, 80px);
  margin-bottom: clamp(40px, 5vw, 56px);
}

.testimonials-header__left {
  display: flex;
  flex-direction: column;
}

.testimonials-header__headline {
  font-family: "Raleway", var(--font-display), sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.08;
  color: #0a0a0a;
  margin: 12px 0 0;
  letter-spacing: -1px;
}

.testimonials-header__desc {
  font-size: 18px;
  line-height: 1.5;
  color: #0a0a0a;
  margin: 0;
  max-width: 35ch;
  align-self: end;
  padding-bottom: 0px;
}

/* ── Section label override for light bg ────────────────────────────────────── */

.section--testimonials .section-label {
  color: #000;
  font-size: 18px;
  font-weight: 400;
  text-transform: capitalize;
  letter-spacing: normal;
}

.section--testimonials i {
  color: #ffc010;
}

/* ── Swiper ─────────────────────────────────────────────────────────────────── */

.testimonials-swiper {
  overflow: hidden;
}

/* ── Testimonial Card ───────────────────────────────────────────────────────── */

.tcard {
  background: #fff;
  border-radius: 16px;
  padding: 28px 26px 26px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
  box-sizing: border-box;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

/* Top row: avatar left, logo right */
.tcard__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.tcard__avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid #f8f8f8;
  padding: 10px;
}

.swiper-slide {
  height: auto;
}

.tcard__avatar--initials {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffc010;
  color: #000;
  font-weight: 700;
  font-size: 22px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  flex-shrink: 0;
}

.tcard__logo {
  max-height: 36px;
  max-width: 110px;
  width: auto;
  object-fit: contain;
  filter: brightness(0);
  opacity: 0.75;
}

.tcard__logo-text {
  font-size: 17px;
  font-weight: 700;
  color: #111;
  letter-spacing: -0.3px;
  font-family: "Raleway", sans-serif;
  line-height: 1.1;
  text-align: right;
  /*max-width: 120px;*/
}

/* Quote */
.tcard__quote {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.65;
  color: #000;
  margin: 0;
  flex: 1;
  font-family: "Raleway", sans-serif;
}

.tcard__quote-mark {
  color: #ffc010;
  font-size: 20px;
  margin-right: 4px;
  line-height: 1;
  vertical-align: middle;
}

/* Author */
.tcard__author {
  border-top: 1px solid #ebebeb;
  padding-top: 16px;
}

.tcard__name {
  font-size: 18px;
  font-weight: 600;
  color: #000;
  margin: 0 0 4px;
}

.tcard__role {
  font-size: 14px;
  color: #000;
  margin: 0;
}

/* ── Footer: dots + arrows ──────────────────────────────────────────────────── */

.testimonials-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 28px;
}

.testimonials-pagination.swiper-pagination {
  position: static;
  width: auto;
  display: flex;
  align-items: center;
  gap: 3px;
}

.testimonials-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #ccc;
  opacity: 1;
  border-radius: 50%;
  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

.testimonials-pagination .swiper-pagination-bullet-active {
  background: #0a0a0a;
  transform: scale(1.2);
}

.testimonials-arrows {
  display: flex;
  align-items: center;
  gap: 10px;
}

.tcard-prev,
.tcard-next {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid #d0d0d0;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #222;
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease,
    opacity 0.25s ease;
  position: static;
  margin: 0;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0);
  border: none;
}

.swiper-button-next svg,
.swiper-button-prev svg {
  width: 20px;
}

.tcard-prev:hover {
  background: #000 !important;
}

button.tcard-prev.swiper-button-prev svg {
  color: #cccccc;
}

.tcard-prev::after,
.tcard-next::after {
  display: none;
}

.tcard-prev:hover {
  border-color: #aaa;
  background: #f5f5f5;
}

.tcard-next {
  background: #fecc40;
  border-color: #fecc40;
  color: #000;
  box-shadow: 0 2px 8px rgba(244, 180, 0, 0.25);
}

.tcard-next:hover {
  background: #e0a500;
  border-color: #e0a500;
}

/* Disabled / fade state */
.tcard-prev.swiper-button-disabled,
.tcard-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: default;
  pointer-events: none;
}

/* ── Responsive ─────────────────────────────────────────────────────────────── */

@media (max-width: 900px) {
  .testimonials-header {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .testimonials-header__desc {
    align-self: start;
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .tcard {
    padding: 22px 18px 20px;
  }
}

/* ══════════════════════════════════════════════════════════════════════════════
   FOUNDER SPOTLIGHT SECTION
══════════════════════════════════════════════════════════════════════════════ */

.founder-section {
  background: #fff;
  padding: clamp(40px, 5vw, 70px) clamp(16px, 4vw, 60px);
}

.founder-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 20px;
  overflow: hidden;
  max-width: 1300px;
  margin: 0 auto;
  min-height: 480px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.13);
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* ── Left: photo ─────────────────────────────────────────────────────────── */

.founder-photo {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  /*max-width: 516px;*/
  transform: scale(1);
  transform-origin: bottom;
}

/* ── Right: content with bg image + dark overlay ────────────────────────── */

.founder-content {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.founder-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 0;
}

.founder-content__inner {
  position: relative;
  z-index: 2;
  padding: clamp(36px, 5vw, 52px) clamp(32px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  box-sizing: border-box;
  gap: 0;
  border-left: 2px solid #ffffff8e;
}

/* Badge */
.founder-badge {
  display: inline-block;
  background: #ffc010;
  color: #000;
  font-size: 13px;
  font-weight: 600;
  padding: 5px 18px;
  border-radius: 999px;
  margin-bottom: 16px;
  width: fit-content;
  letter-spacing: 0.2px;
  margin-bottom: 25px;
}

/* Name — metallic gradient like design */
.founder-name {
  font-family: "Bebas Neue", "Arial Narrow", Arial, sans-serif;
  font-size: clamp(44px, 5.5vw, 72px);
  font-weight: 400;
  letter-spacing: 3px;
  line-height: 1;
  margin: 0 0 24px;
  text-transform: uppercase;
  background: linear-gradient(180deg, #ffffff 0%, #fff 55%, #ffc010 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Bio */
.founder-bio {
  font-size: 15px;
  line-height: 1.75;
  color: #fff;
  margin: 0 0 40px;
  font-weight: 400;
}

img.founder-name-img {
  max-height: 77px;
}

/* Logo */
.founder-logo img {
  max-height: 36px;
  width: auto;
  object-fit: contain;
  opacity: 1;
}

/* ── Responsive ──────────────────────────────────────────────────────────── */

@media (max-width: 768px) {
  .founder-section {
    padding: 24px 16px;
  }

  .founder-inner {
    grid-template-columns: 1fr;
  }

  .founder-photo {
    min-height: 340px;
  }

  .founder-photo img {
    object-position: center 15%;
  }
}

.founder-name {
  width: 100%;
  max-width: 420px;
  margin-bottom: 24px;
}

.founder-name img {
  width: 100%;
  height: auto;
  display: block;
}

.founder-content__inner {
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

/* ══════════════════════════════════════════════════════════════════════════════
   FAQ SECTION
══════════════════════════════════════════════════════════════════════════════ */

.faq-section {
  background: #f3f3f3;
  padding-block: clamp(60px, 7vw, 80px);
}

.faq-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}

@media (min-width: 769px) {
  .faq-left {
    position: sticky;
    top: calc(var(--header-height, 80px) + 24px);
  }
}

/* ── Left ───────────────────────────────────────────────────────────────────── */

.faq-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 500;
  color: #0a0a0a;
  margin-bottom: 20px;
}

.faq-eyebrow__arrow {
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 8px solid #ffc010;
  flex-shrink: 0;
}

.faq-headline {
  font-family: "Raleway", sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  color: #0a0a0a;
  margin: 0 0 20px;
  letter-spacing: -0.5px;
}

.faq-headline span {
  color: #444;
  font-weight: 600;
}

.faq-desc {
  font-size: 16px;
  line-height: 1.7;
  color: #666;
  margin: 0;
}

/* ── Right: accordion ───────────────────────────────────────────────────────── */

.faq-right {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: none;
  border: 1.5px solid #e0e0e0;
  border-radius: 30px;
  overflow: hidden;
  transition: border-color 0.25s ease;
}

.faq-item--open {
  border-color: #ffc010;
}

.faq-item__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 22px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 22px;
  font-weight: 600;
  color: #0a0a0a;
  font-family: "Raleway", sans-serif;
  line-height: 1.4;
}

.faq-item__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #555;
  transition: color 0.25s ease;
  line-height: 1;
}

.faq-item__icon .fa-minus {
  display: none;
}

.faq-item__icon .fa-plus {
  display: block;
}

.faq-item--open .faq-item__icon {
  color: #ffc010;
}

.faq-item--open .faq-item__icon .fa-plus {
  display: none;
}

.faq-item--open .faq-item__icon .fa-minus {
  display: block;
}

.faq-item__body {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    padding 0.35s ease;
  padding: 0 22px;
}

.faq-item--open .faq-item__body {
  max-height: 200px;
  padding: 0 22px 20px;
}

.faq-item__body p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(93, 93, 93, 1);
  margin: 0;
}

/* ── Responsive ─────────────────────────────────────────────────────────────── */

@media (max-width: 768px) {
  .faq-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .faq-desc {
    max-width: 100%;
  }
}

/* ══════════════════════════════════════════════════════════════════════════════
   CTA STORIES SECTION
══════════════════════════════════════════════════════════════════════════════ */

.cta-stories {
  background: #fff;
  padding-block: clamp(80px, 10vw, 80px);
  text-align: center;
}

.cta-stories__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.cta-stories__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 500;
  color: #0a0a0a;
}

.cta-stories__arrow {
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 8px solid #ffc010;
  flex-shrink: 0;
}

.cta-stories__headline {
  max-width: 843px;
  font-family: "Raleway", sans-serif;
  font-size: clamp(48px, 7vw, 75px);
  font-weight: 600;
  line-height: 1.05;
  margin: 0;
  letter-spacing: -2px;
  background: linear-gradient(
    91.95deg,
    #252525 5.31%,
    #707070 31.58%,
    #3a3a3a 58.25%,
    #000000 86.87%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 2%;
}

.cta-stories__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ffc010;
  color: #000;
  font-size: 16px;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: 999px;
  text-decoration: none;
  transition:
    transform 0.3s ease,
    background 0.3s ease;
}

.cta-stories__btn:hover {
  transform: translateY(-2px);
  color: #000;
}

.cta-stories__btn i {
  transition: transform 0.4s ease;
  transform: rotate(-45deg);
}

/* Rotate arrow */
.cta-stories__btn:hover i {
  transform: rotate(0deg);
}

@media (max-width: 640px) {
  .cta-stories__headline {
    letter-spacing: -1px;
  }
}

/* ══════════════════════════════════════════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
══════════════════════════════════════════════════════════════════════════════ */

.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}

.reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger siblings inside grids */
.stats-grid .reveal-up:nth-child(2) {
  transition-delay: 0.1s;
}

.stats-grid .reveal-up:nth-child(3) {
  transition-delay: 0.2s;
}

.stats-grid .reveal-up:nth-child(4) {
  transition-delay: 0.3s;
}

.brand-process__cards .reveal-up:nth-child(2) {
  transition-delay: 0.1s;
}

.brand-process__cards .reveal-up:nth-child(3) {
  transition-delay: 0.2s;
}

.brand-process__cards .reveal-up:nth-child(4) {
  transition-delay: 0.3s;
}

.featured-cases__grid .reveal-up:nth-child(2) {
  transition-delay: 0.1s;
}

.featured-cases__grid .reveal-up:nth-child(3) {
  transition-delay: 0.2s;
}

.featured-cases__grid .reveal-up:nth-child(4) {
  transition-delay: 0.15s;
}

.featured-cases__grid .reveal-up:nth-child(5) {
  transition-delay: 0.25s;
}

.cta-stories__inner .reveal-up:nth-child(2) {
  transition-delay: 0.1s;
}

.cta-stories__inner .reveal-up:nth-child(3) {
  transition-delay: 0.2s;
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .reveal-up {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ══════════════════════════════════════════════════════════════════════════════
   LIGHT MODE INNER PAGES (body:not(.home))
   This implements a premium white background look for all subpages.
   ══════════════════════════════════════════════════════════════════════════════ */

/* Contact Forms & Inputs within light-mode pages */
body:not(.home) .form-label {
  color: #444444 !important;
}

body:not(.home) .form-input,
body:not(.home) .form-textarea,
body:not(.home) .form-select {
  background-color: #fcfcfc !important;
  border: 1px solid #cccccc !important;
  color: #111111 !important;
}

body:not(.home) .form-input::placeholder,
body:not(.home) .form-textarea::placeholder {
  color: #888888 !important;
}

body:not(.home) .form-input:focus,
body:not(.home) .form-textarea:focus,
body:not(.home) .form-select:focus {
  border-color: #000000 !important;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05) !important;
}

/* Ensure the CTA Banner remains dark/cinematic for standard page footer transition */
body:not(.home) .cta-banner {
  background-color: var(--color-bg-secondary) !important;
  border-top: 1px solid var(--color-border) !important;
}

body:not(.home) .cta-banner h2,
body:not(.home) .cta-banner p,
body:not(.home) .cta-banner span {
  color: #ffffff !important;
}

body:not(.home) .cta-banner span.accent {
  color: var(--color-accent-gold) !important;
}

/* ══════════════════════════════════════════════════════════════════════════════
   ABOUT HERO SECTION styling
   ══════════════════════════════════════════════════════════════════════════════ */

.about-hero-section {
  position: relative;
  width: 100%;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #0a0a0a;
  overflow: hidden;
  padding: 0;
  margin: 0;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.92) 0%,
    rgba(0, 0, 0, 0.6) 40%,
    rgba(0, 0, 0, 0.35) 70%,
    rgba(0, 0, 0, 0.2) 100%
  );
  z-index: 1;
}

.about-page-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 80px 0;
}

.about-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-hero-eyebrow__icon {
  color: var(--color-accent-gold);
  font-size: 14px;
}

.about-hero-title {
  font-family: "Raleway", var(--font-body);
  font-size: clamp(38px, 6vw, 84px);
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: #ffffff !important;
  margin-bottom: 40px;
  margin-inline: auto;
  max-width: 988px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.about-hero-inline-media {
  display: inline-block;
  vertical-align: middle;
  height: clamp(36px, 4.5vw, 68px);
  width: clamp(70px, 8.5vw, 130px);
  border-radius: 50px;
  overflow: hidden;
  margin-inline: 10px;
  position: relative;
  top: -4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.about-hero-inline-media img {
  width: auto;
  height: 79px;
  object-fit: cover;
}

.about-hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.about-hero-ctas .btn {
  font-size: 15px;
  font-weight: 500;
  border-radius: 50px;
  padding: 14px 28px;
}

.about-btn-primary {
  background-color: var(--color-accent-gold);
  color: #000000;
  border: 2px solid var(--color-accent-gold);
}

.about-btn-primary:hover {
  background-color: #fecc40;
  border-color: #fecc40;
  color: #000000;
}

.about-btn-secondary {
  background-color: #ffffff;
  color: #000000;
  border: 2px solid #eaeaea;
}

.about-btn-secondary:hover {
  background-color: #f7f7f7;
  border-color: #cccccc;
  color: #000000;
}

.btn-play-icon {
  margin-left: 8px;
  font-size: 15px;
  display: inline-block;
}

@media (max-width: 768px) {
  .about-hero-section {
    min-height: 70vh;
  }

  .about-hero-box {
    padding: 120px 20px 80px;
  }

  .about-hero-title {
    max-width: 100%;
  }
}

/* ══════════════════════════════════════════════════════════════════════════════
   ABOUT — STORY SECTION
══════════════════════════════════════════════════════════════════════════════ */

.about-story {
  background: #fff;
  padding-block: clamp(60px, 7vw, 80px);
}

.about-story__inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(40px, 4vw, 100px);
  align-items: stretch;
}

/* Left */
.about-story__left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 40px;
  padding-top: 4px;
}

.about-story__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 500;
  color: #0a0a0a;
}

.about-story__arrow {
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 8px solid #ffc010;
  flex-shrink: 0;
}

.about-story__author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-story__author-avatars {
  display: flex;
}

.about-story__author-avatars img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px #e0e0e0;
  margin-left: -10px;
}

.about-story__author-avatars img:first-child {
  margin-left: 0;
}

.about-story__author-name {
  font-size: 14px;
  color: #444;
  font-weight: 500;
}

/* Right */
.about-story__right {
  padding-top: 4px;
}

.about-story__headline {
  font-family: "Raleway", sans-serif;
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 700;
  line-height: 1.25;
  color: #0a0a0a;
  margin: 0 0 22px;
  letter-spacing: -0.3px;
}

.about-story__body {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  margin: 0 0 16px;
}

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

@media (max-width: 768px) {
  .about-story__inner {
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: start;
  }

  .about-story__left {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

/* ============================================================
   CREATIVE SHOWCASE
   ============================================================ */

.creative-showcase {
  width: 100%;
  padding: 80px 20px;
  background: #ffffff;
  overflow: hidden;
}

.creative-showcase__container {
  width: min(1100px, 100%);
  margin: 0 auto;
}

/* ------------------------------------------------------------
   HEADING
   ------------------------------------------------------------ */

.creative-showcase__heading {
  max-width: 938px;
  margin: 0 auto 70px;
  text-align: center;
}

.creative-showcase__heading h2 {
  margin: 0;
  color: #111111;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.08;
  font-weight: 500;
  letter-spacing: -0.055em;
}

.creative-showcase__heading h2 span {
  color: #737373;
}

/* ------------------------------------------------------------
   IMAGE GRID
   ------------------------------------------------------------ */

.creative-showcase__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  align-items: center;
}

/* ------------------------------------------------------------
   CARDS
   ------------------------------------------------------------ */

.creative-showcase__card {
  position: relative;
  transition:
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.5s ease;
  will-change: transform;
}

.creative-showcase__card--1 {
  transform: rotate(-3deg);
}

.creative-showcase__card--2 {
  transform: rotate(1deg);
}

.creative-showcase__card--3 {
  transform: rotate(-1deg);
}

.creative-showcase__card--4 {
  transform: rotate(3deg);
}

/* ------------------------------------------------------------
   IMAGE
   ------------------------------------------------------------ */

.creative-showcase__image {
  position: relative;
  aspect-ratio: 0.92 / 1.1;
  overflow: hidden;
  border-radius: 22px;
  background: #eeeeee;
  isolation: isolate;
}

.creative-showcase__image::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.25));
  opacity: 0;
  transition: opacity 0.5s ease;
}

.creative-showcase__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;

  transition:
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.6s ease;
}

/* ------------------------------------------------------------
   HOVER EFFECT
   ------------------------------------------------------------ */

.creative-showcase__card:hover {
  z-index: 5;
  transform: translateY(-18px) rotate(0deg) scale(1.04);
}

.creative-showcase__card:hover .creative-showcase__image img {
  transform: scale(1.12);
  filter: saturate(1.15) contrast(1.05);
}

.creative-showcase__card:hover .creative-showcase__image::after {
  opacity: 1;
}

/* ------------------------------------------------------------
   NUMBER OVERLAY
   ------------------------------------------------------------ */

.creative-showcase__overlay {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;

  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;

  color: #ffffff;
  font-size: 13px;
  font-weight: 500;

  opacity: 0;
  transform: translateY(15px);

  transition:
    opacity 0.4s ease,
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.creative-showcase__card:hover .creative-showcase__overlay {
  opacity: 1;
  transform: translateY(0);
}

/* ------------------------------------------------------------
   CREATIVE INTERACTION
   Other cards slightly fade when one is hovered
   ------------------------------------------------------------ */

.creative-showcase__grid:has(.creative-showcase__card:hover)
  .creative-showcase__card:not(:hover) {
  filter: grayscale(0.2);
  opacity: 0.75;
  transform: scale(0.97);
}

/* ------------------------------------------------------------
   TABLET
   ------------------------------------------------------------ */

@media (max-width: 900px) {
  .creative-showcase {
    padding: 90px 20px;
  }

  .creative-showcase__heading {
    margin-bottom: 55px;
  }

  .creative-showcase__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .creative-showcase__card--1,
  .creative-showcase__card--2,
  .creative-showcase__card--3,
  .creative-showcase__card--4 {
    transform: rotate(0deg);
  }

  .creative-showcase__card:hover {
    transform: translateY(-10px) scale(1.02);
  }
}

/* ------------------------------------------------------------
   MOBILE
   ------------------------------------------------------------ */

@media (max-width: 600px) {
  .creative-showcase {
    padding: 70px 18px;
  }

  .creative-showcase__heading {
    margin-bottom: 40px;
  }

  .creative-showcase__heading h2 {
    font-size: 36px;
    line-height: 1.1;
  }

  .creative-showcase__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .creative-showcase__image {
    border-radius: 15px;
  }

  .creative-showcase__overlay {
    display: none;
  }
}

/* ============================================================
   ABOUT WHY US SECTION
   ============================================================ */
.about-why-us {
  width: 100%;
  padding: 100px 20px;
  background: #ffffff;
  overflow: hidden;
  padding-bottom: 0;
}

.about-why-us__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

/* Left Column: Images */
.about-why-us__image-container {
  position: relative;
  width: 100%;
  aspect-ratio: 1.1 / 1;
  border-radius: 24px;
  overflow: hidden;
  background: #f5f5f7;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.about-why-us__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.05);
  transition:
    opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1),
    transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.about-why-us__img.active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

/* Right Column: Content & Accordion */
.about-why-us__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 17px;
  font-weight: 500;
  text-transform: capitalize;
  color: #000;
  margin-bottom: 20px;
  letter-spacing: 0;
}

.about-why-us__play-icon {
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 10px solid var(--color-accent-gold, #f5a623);
  display: inline-block;
}

.about-why-us__title {
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.1;
  font-weight: 600;
  color: #111111;
  margin: 0 0 20px;
  letter-spacing: -0.03em;
}

.about-why-us__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-height: 380px;
}

.about-why-us__item {
  border-top: 1px dashed rgba(17, 17, 17, 0.1);
  padding: 24px 0;
  cursor: pointer;
  transition:
    padding-left 0.4s cubic-bezier(0.25, 1, 0.5, 1),
    border-color 0.4s ease;
}

.about-why-us__item:first-child {
  border: none;
}

.about-why-us__item:last-child {
  border-bottom: 1px dashed rgba(17, 17, 17, 0.1);
}

.about-why-us__item-title {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 600;
  color: #111111;
  margin: 0;
  transition: color 0.3s ease;
}

/* Left border line on active item */
.about-why-us__item {
  position: relative;
}

.about-why-us__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 24px;
  bottom: 24px;
  width: 3px;
  background: var(--color-accent-gold, #f5a623);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.about-why-us__item.active::before {
  transform: scaleY(1);
}

.about-why-us__item.active {
  padding-left: 20px;
}

.about-why-us__item.active .about-why-us__item-title {
  color: #111111;
}

.about-why-us__item-content {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s cubic-bezier(0.25, 1, 0.5, 1),
    opacity 0.4s ease;
  opacity: 0;
}

.about-why-us__item.active .about-why-us__item-content {
  max-height: 200px;
  opacity: 1;
  margin-top: 12px;
}

.about-why-us__item-content p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-text-secondary, #737373);
  margin: 0;
}

.contact-section__image-wrap {
  display: flex;
  height: 100%;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .about-why-us__inner {
    gap: 50px;
  }
}

@media (max-width: 900px) {
  .about-why-us {
    padding: 80px 20px;
  }

  .about-why-us__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-why-us__image-container {
    aspect-ratio: 16 / 10;
    max-width: 600px;
    margin: 0 auto;
  }

  .about-why-us__list {
    min-height: auto;
  }
}

@media (max-width: 600px) {
  .about-why-us {
    padding: 60px 18px;
  }

  .about-why-us__item {
    padding: 18px 0;
  }

  .about-why-us__item::before {
    top: 18px;
    bottom: 18px;
  }
}

/* =========================================
   CONTACT SECTION
========================================= */

.contact-section {
  padding: 40px 0 80px;
  background: #ffffff;
}

.contact-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1330px;
  margin: 0 auto;
}

.contact-section__left {
  background: #f4f4f4;
  padding: 30px;
  border-radius: 24px;
}

.contact-section__title {
  font-size: 42px;
  margin-bottom: 15px;
  font-weight: 600;
  color: #111;
  letter-spacing: -4%;
  font-family: "Raleway", sans-serif;
}

.contact-section__desc {
  font-size: 17px;
  color: #000;
  margin-bottom: 20px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-form .form-row {
  display: flex;
  gap: 20px;
}

.contact-form .form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-form .form-group.full-width {
  width: 100%;
}

.contact-form label {
  font-size: 14px;
  font-weight: 500;
  color: #000;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  background: #ffffff;
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s;
  font-family: var(--font-body);
  letter-spacing: -3%;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #f4c324;
}

.contact-form .form-group .contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form .form-submit {
  margin-top: 10px;
}

.contact-form .wpcf7-not-valid-tip {
  font-size: 12px;
  font-weight: 600;
}

.contact-section .wpcf7-response-output {
  margin: 0 !important;
  margin-top: 10px !important;
  text-align: center;
  color: #000;
}

.contact-form input[type="submit"] {
  width: 100%;
  padding: 16px;
  background: #f4c324;
  color: #111;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition:
    background 0.3s,
    transform 0.2s;
}

.contact-form input[type="submit"]:hover {
  background: #fecc40;
  transform: translateY(-2px);
}

.contact-section__right {
  border-radius: 24px;
  overflow: hidden;
}

.contact-section__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.form-submit {
  position: relative;
}

.form-submit input[type="submit"] {
  width: 100%;
  padding-right: 40px;
  border: none;
  border-radius: 40px;
  background: #ffc010;
  color: #111;
  font-size: 20px;
  cursor: pointer;
}

.form-submit i {
  position: absolute;
  right: 33%;
  top: 34%;
  transform: translateY(0%) rotate(-45deg);
  font-size: 24px;
  pointer-events: none;
  transition: transform 0.3s ease;
  color: #000;
  font-size: 18px;
}

.form-submit:hover i {
  transform: rotate(0deg);
}

.home .stats-section {
  border: none;
}

.page-template-page-services .stats-section {
  border: none;
}

@media (max-width: 900px) {
  .contact-section__inner {
    grid-template-columns: 1fr;
  }

  .contact-form .form-row {
    flex-direction: column;
    gap: 20px;
  }

  .contact-section__left {
    padding: 30px 20px;
  }
}

.page-id-302 #main-content {
  padding-top: 3%;
}

.page-id-302 #primary {
  padding-top: 2%;
}

.contact-form .form-submit {
  position: relative;
}

.contact-form .form-submit .wpcf7-spinner {
  position: absolute;
  right: 45%;
  top: 30%;
}

/* =========================================
   CONTACT OFFICE LOCATION
========================================= */

.contact-office {
  background-color: #0a1628;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 0;
  position: relative;
}

.contact-office::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  pointer-events: none;
}

.contact-office__inner {
  position: relative;
  z-index: 1;
}

.contact-office__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1330px;
  margin: 0 auto;
}

.contact-office__eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #fff;
  margin-bottom: 28px;
  opacity: 0.9;
}

.contact-office__arrow {
  display: inline-block;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid #f4c324;
}

.contact-office__city {
  display: flex;
  align-items: center;
  gap: 20px;
}

.contact-office__thumb {
  width: 118px;
  height: 64px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
}

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

.contact-office__city-name {
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 700;
  color: #fff;
  margin: 0;
  font-family: "Raleway", sans-serif;
}

.contact-office__right {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-office__detail {
  font-size: 18px;
  color: rgba(255, 255, 255, 1);
  margin: 0;
  line-height: 1.6;
}

.contact-office__detail a {
  color: rgba(255, 255, 255, 1);
  text-decoration: none;
  transition: color 0.3s;
}

.contact-office__detail a:hover {
  color: #f4c324;
}

@media (max-width: 768px) {
  .contact-office__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-office__right {
    text-align: left;
  }
}

/* ══════════════════════════════════════════════════════════════════════════════
   LOCATION SECTION
   template-parts/contact/section-office.php
══════════════════════════════════════════════════════════════════════════════ */

.location-section {
  background-color: var(--color-bg-primary);
  border-top: 1px solid var(--color-border);
  padding: clamp(80px, 8vw, 120px) 0;
  overflow: hidden;
}

.location-section__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: clamp(48px, 6vw, 96px);
  align-items: stretch;
  width: min(100%, 1440px);
  margin: 0 auto;
  padding-inline: clamp(20px, 4.5vw, 64px);
  box-sizing: border-box;
}

/* ── Left info column ─────────────────────────────────────────────────── */
.location-section__info {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Eyebrow */
.location-section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 var(--space-6);
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
}

.location-section__eyebrow svg {
  flex-shrink: 0;
  color: #ffc010;
}

/* Heading */
.location-section__heading {
  margin: 0 0 var(--space-6);
  color: var(--color-text-primary);
  font-family: "Raleway", var(--font-display), sans-serif;
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: var(--tracking-tight);
}

/* Short description */
.location-section__description {
  margin: 0 0 clamp(32px, 4vw, 48px);
  color: var(--color-text-secondary);
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: var(--leading-relaxed);
  max-width: 440px;
}

/* ── Address block ────────────────────────────────────────────────────── */
.location-section__address-block {
  margin-bottom: var(--space-8);
}

.location-section__address-label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 var(--space-3);
  color: #ffc010;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
}

.location-section__icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  stroke-width: 1.5;
}

.location-section__address {
  font-style: normal;
  color: var(--color-text-primary);
  font-size: clamp(16px, 1.5vw, 18px);
  line-height: var(--leading-relaxed);
  margin: 0;
}

/* ── Contact details ──────────────────────────────────────────────────── */
.location-section__contact-block {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: clamp(32px, 4vw, 48px);
  padding-top: var(--space-6);
  border-top: 1px solid var(--color-border);
}

.location-section__contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: var(--color-text-secondary);
  font-size: clamp(14px, 1.2vw, 15px);
}

.location-section__contact-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: #ffc010;
}

.location-section__contact-item a {
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color var(--duration-normal) var(--ease-out);
}

.location-section__contact-item a:hover {
  color: #ffc010;
}

/* ── CTA button ───────────────────────────────────────────────────────── */
.location-section__cta {
  align-self: flex-start;
  margin-bottom: clamp(32px, 4vw, 48px);
}

/* ── Registered address ───────────────────────────────────────────────── */
.location-section__registered {
  padding-top: var(--space-6);
  border-top: 1px solid var(--color-border);
}

.location-section__registered-label {
  margin: 0 0 var(--space-2);
  color: rgba(255, 255, 255, 0.35);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
}

.location-section__registered-address {
  font-style: normal;
  color: rgba(255, 255, 255, 0.45);
  font-size: 14px;
  line-height: var(--leading-relaxed);
  margin: 0;
}

/* ── Map column ───────────────────────────────────────────────────────── */
.location-section__map {
  min-height: 480px;
  position: relative;
}

.location-section__map-wrap {
  position: absolute;
  inset: 0;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--color-border-light);
}

.location-section__map-wrap iframe {
  display: block;
  width: 100%;
  height: 100%;
  filter: grayscale(30%) contrast(1.05);
  transition: filter var(--duration-normal) var(--ease-out);
}

.location-section__map-wrap:hover iframe {
  filter: none;
}

/* ══════════════════════════════════════════════════════════════════════════
   RESPONSIVE — TABLET (≤1024px)
══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .location-section__map {
    min-height: 400px;
  }
}

/* ══════════════════════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE (≤768px): stack vertically
══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .location-section__inner {
    grid-template-columns: 1fr;
    gap: clamp(36px, 6vw, 56px);
  }

  .location-section__description {
    max-width: 100%;
  }

  /* Map below info on mobile */
  .location-section__map {
    position: relative;
    min-height: 340px;
    height: 340px;
  }

  .location-section__map-wrap {
    position: absolute;
    inset: 0;
  }
}

/* ══════════════════════════════════════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE (≤480px)
══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .location-section {
    padding-block: clamp(56px, 10vw, 80px);
  }

  .location-section__inner {
    padding-inline: 16px;
  }

  .location-section__map {
    height: 300px;
    min-height: 300px;
  }

  .location-section__cta {
    width: 100%;
    justify-content: center;
  }
}

/* ── Reduced motion ───────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .location-section__map-wrap iframe {
    transition: none;
  }
}
/* ══════════════════════════════════════════════════════════════════════════════
   BLOG FILTER LOADING SPINNER
══════════════════════════════════════════════════════════════════════════════ */

.bp-spinner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 40px 0;
}

.bp-spinner__dot {
  width: 10px;
  height: 10px;
  background: #f4c324;
  border-radius: 50%;
  animation: bp-spinner-pulse 1.2s ease-in-out infinite;
}

.bp-spinner__dot:nth-child(2) {
  animation-delay: 0.2s;
}

.bp-spinner__dot:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes bp-spinner-pulse {
  0%,
  80%,
  100% {
    transform: scale(0.8);
    opacity: 0.5;
  }

  40% {
    transform: scale(1.2);
    opacity: 1;
  }
}

/* Fade transition for grid */

/* ══════════════════════════════════════════════════════════════════════════════
   BLOG DETAIL PAGE — CREATIVE, USER-FRIENDLY & RESPONSIVE DESIGN
   Featuring: Reading Progress Bar, Breadcrumbs, Sticky Share Sidebar,
   Polished Editorial Prose Typography, Next/Prev Cards, Author Profile,
   and Modern Related Posts.
══════════════════════════════════════════════════════════════════════════════ */

/* ── 1. Reading Progress Bar ────────────────────────────────────────────────── */
.blog-reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: transparent;
  z-index: 9999;
  pointer-events: none;
}

.blog-reading-progress__bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #f4c324 0%, #ffda65 50%, #f5a623 100%);
  box-shadow: 0 0 12px rgba(244, 195, 36, 0.7);
  transition: width 0.1s ease-out;
}
section#stats.stats-section {
  border: none;
}
/* ── 2. Blog Detail Hero ───────────────────────────────────────────────────── */
.blog-detail-hero,
#heroDetailWrp {
  background: linear-gradient(180deg, #fafafa 0%, #f4f5f7 100%);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 28px;
  max-width: 100%;
  margin: 24px auto 0;
  padding: 48px 32px 44px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.03);
  margin: 0 20px;
}

.blog-detail-hero::before {
  content: "";
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 480px;
  height: 240px;
  background: radial-gradient(
    circle,
    rgba(244, 195, 36, 0.12) 0%,
    rgba(244, 195, 36, 0) 70%
  );
  pointer-events: none;
  border-radius: 50%;
}

.blog-detail-hero__container {
  max-width: 1060px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

/* Breadcrumbs */
.blog-breadcrumb {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: #666;
  margin-bottom: 24px;
  padding: 6px 18px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.blog-breadcrumb__link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #555;
  text-decoration: none;
  transition: color 0.2s ease;
}

.blog-breadcrumb__link:hover {
  color: #000;
}

.blog-breadcrumb__sep {
  font-size: 9px;
  color: #bbb;
  display: inline-flex;
  align-items: center;
}

/* Category & Reading Time Badges */
.blog-detail-hero__badges {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.blog-detail-hero__cats {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.blog-detail-hero__cat {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 18px;
  font-size: 13px;
  font-weight: 600;
  color: #000;
  background: #fff9e7;
  border: 1px solid #f4c324;
  border-radius: 999px;
  text-decoration: none;
  line-height: 1.4;
  box-shadow: 0 2px 8px rgba(244, 195, 36, 0.15);
  transition: all 0.25s ease;
}

.blog-detail-hero__cat i {
  font-size: 11px;
  color: #d99a00;
}

.blog-detail-hero__cat:hover {
  background: #f4c324;
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(244, 195, 36, 0.3);
}

.blog-detail-hero__pill-time {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 500;
  color: #555;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
}

.blog-detail-hero__pill-time i {
  font-size: 12px;
  color: #888;
}

/* Title */
.blog-detail-hero__title,
#heroDetailWrp .cta-stories__headline {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: clamp(30px, 4.2vw, 54px);
  font-weight: 800;
  line-height: 1.18;
  color: #0a0a0a;
  margin: 0 auto 26px;
  letter-spacing: -0.025em;
  max-width: 960px;
  text-align: center;
}

/* Meta Card */
.blog-detail-hero__meta-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 8px 24px 8px 12px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 999px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  margin: 0 auto;
}

.blog-detail-hero__author-info {
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
}

.blog-detail-hero__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #f4c324;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.blog-detail-hero__author-text {
  display: flex;
  flex-direction: column;
}

.blog-detail-hero__author-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #888;
  line-height: 1.2;
}

.blog-detail-hero__author-name {
  font-size: 14px;
  font-weight: 700;
  color: #111;
  line-height: 1.3;
}

.blog-detail-hero__meta-divider {
  width: 1px;
  height: 24px;
  background: #e5e7eb;
}

.blog-detail-hero__date-wrap {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 500;
  color: #666;
}

.blog-detail-hero__date-wrap i {
  color: #888;
  font-size: 13px;
}

.blog-detail-hero__date {
  color: #555;
}

.blog-detail-hero__updated {
  font-size: 11px;
  color: #c8841a;
  font-weight: 600;
}

/* ── 3. Featured Image ─────────────────────────────────────────────────────── */
.blog-detail-hero__image-wrap {
  margin: 36px auto 0;
  max-width: 1040px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 45px -15px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: #f3f4f6;
  position: relative;
}

.blog-detail-hero__image {
  display: block;
  width: 100%;
  height: auto;
  max-height: 640px;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-detail-hero__image-wrap:hover .blog-detail-hero__image {
  transform: scale(1.015);
}

.blog-image-caption {
  padding: 12px 24px;
  font-size: 13px;
  color: #666;
  background: #fafafa;
  border-top: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-style: italic;
}

.blog-image-caption i {
  font-size: 12px;
  color: #999;
}

/* ── 4. Blog Detail Article Layout ─────────────────────────────────────────── */
.blog-detail-article {
  background: #ffffff;
  padding: 0 0 60px;
}

.blog-detail-article__container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.blog-detail-article__layout {
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr);
  gap: 48px;
  max-width: 1040px;
  margin: 52px auto 0;
  align-items: start;
  position: relative;
}

/* Sticky Share Sidebar (Desktop) */
.blog-detail-sidebar {
  position: sticky;
  top: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10;
}

.blog-detail-sticky-share {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 14px 8px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 50px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  width: 54px;
}

.blog-detail-sticky-share__label {
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #999;
  margin-bottom: 2px;
}

.blog-detail-sticky-share__icons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.blog-share-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  background: #f8f9fa;
  border: 1px solid #edf0f2;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.25s ease;
  position: relative;
  cursor: pointer;
}

.blog-share-icon:hover {
  transform: translateY(-2px) scale(1.05);
  color: #000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.blog-share-btn--linkedin:hover {
  background: #0077b5;
  color: #fff;
  border-color: #0077b5;
}

.blog-share-btn--x:hover {
  background: #000000;
  color: #fff;
  border-color: #000000;
}

.blog-share-btn--whatsapp:hover {
  background: #25d366;
  color: #fff;
  border-color: #25d366;
}

.blog-share-btn--facebook:hover {
  background: #1877f2;
  color: #fff;
  border-color: #1877f2;
}

.blog-share-icon--copy:hover {
  background: #f4c324;
  color: #000;
  border-color: #f4c324;
}

.blog-share-tooltip {
  position: absolute;
  left: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%) scale(0.85);
  opacity: 0;
  pointer-events: none;
  background: #111111;
  color: #ffffff;
  font-size: 11px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 6px;
  white-space: nowrap;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
  z-index: 20;
}

.blog-share-tooltip::before {
  content: "";
  position: absolute;
  right: 100%;
  top: 50%;
  margin-top: -4px;
  border-width: 4px;
  border-style: solid;
  border-color: transparent #111111 transparent transparent;
}

.blog-share-icon.is-copied .blog-share-tooltip,
.blog-copy-btn.is-copied .blog-share-tooltip {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

.blog-back-to-top {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #111111;
  color: #ffffff;
  border: none;
  font-size: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  margin-top: 4px;
}

.blog-back-to-top:hover {
  background: #f4c324;
  color: #000;
  transform: translateY(-2px);
}

/* ── 5. Main Prose Column ──────────────────────────────────────────────────── */
.blog-detail-article__main {
  width: 100%;
  margin: 0 auto;
}

/* Prose Typography */
.blog-detail-content {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 18px;
  line-height: 1.85;
  color: #242424;
  word-break: break-word;
}
.blog-detail-content h1 {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: clamp(28px, 3.8vw, 40px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: #0d0d0d;
  margin: 48px 0 18px;
  position: relative;
  padding-left: 20px;
}

.blog-detail-content h1::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 5px;
  background: linear-gradient(180deg, #f4c324 0%, #f5a623 100%);
  border-radius: 6px;
  box-shadow: 0 0 10px rgba(244, 195, 36, 0.4);
}

.blog-detail-content h1:first-child {
  margin-top: 0;
}

.blog-detail-content > p:first-of-type {
  font-size: 21px;
  line-height: 1.75;
  color: #1a1a1a;
  font-weight: 400;
  margin-bottom: 10px;
}

.blog-detail-content p {
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.85;
  color: #2c2c2c;
}

.blog-detail-content h2 {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: clamp(26px, 3.2vw, 34px);
  font-weight: 800;
  color: #0d0d0d;
  margin: 52px 0 20px;
  line-height: 1.25;
  letter-spacing: -0.02em;
  position: relative;
  padding-left: 18px;
}

.blog-detail-content h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 4px;
  background: #f4c324;
  border-radius: 4px;
}

.blog-detail-content h3 {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: clamp(21px, 2.4vw, 26px);
  font-weight: 700;
  color: #111111;
  margin: 40px 0 16px;
  line-height: 1.35;
  letter-spacing: -0.015em;
}

.blog-detail-content h4 {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 19px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 30px 0 12px;
  line-height: 1.4;
}

.blog-detail-content h2:first-child,
.blog-detail-content h3:first-child {
  margin-top: 0;
}

/* Links */
.blog-detail-content a {
  color: #0d0d0d;
  text-decoration: underline;
  text-decoration-color: #f4c324;
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.blog-detail-content a:hover {
  color: #c8841a;
  text-decoration-color: #0d0d0d;
}

/* Blockquotes */
.blog-detail-content blockquote {
  position: relative;
  margin: 36px 0;
  padding: 30px 32px 30px 38px;
  background: linear-gradient(135deg, #fefcf7 0%, #f7f8fa 100%);
  border-left: 4px solid #f4c324;
  border-radius: 0 18px 18px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.blog-detail-content blockquote::before {
  content: "\201C";
  position: absolute;
  top: 4px;
  left: 18px;
  font-size: 64px;
  font-family: Georgia, serif;
  color: rgba(244, 195, 36, 0.3);
  line-height: 1;
  pointer-events: none;
}

.blog-detail-content blockquote p {
  margin: 0;
  font-size: 19px;
  line-height: 1.75;
  font-style: italic;
  color: #222;
  font-weight: 400;
}

.blog-detail-content blockquote cite {
  display: block;
  margin-top: 14px;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  color: #666;
}

/* Lists */
.blog-detail-content ul,
.blog-detail-content ol {
  margin: 0 0 28px;
  padding-left: 0;
  list-style: none;
}

.blog-detail-content ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  line-height: 1.75;
  color: #333;
}

.blog-detail-content ul li::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 11px;
  width: 8px;
  height: 8px;
  background: #f4c324;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(244, 195, 36, 0.25);
}

.blog-detail-content ol {
  counter-reset: blog-ol-counter;
}

.blog-detail-content ol li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 12px;
  line-height: 1.75;
  counter-increment: blog-ol-counter;
  color: #333;
}

.blog-detail-content ol li::before {
  content: counter(blog-ol-counter);
  position: absolute;
  left: 0;
  top: 2px;
  width: 22px;
  height: 22px;
  background: #fff9e7;
  border: 1px solid #f4c324;
  border-radius: 50%;
  color: #000;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Images & Embeds */
.blog-detail-content img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  margin: 32px 0;
  display: block;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.08);
}

.blog-detail-content figure {
  margin: 36px 0;
}

.blog-detail-content figure img {
  margin: 0;
  border-radius: 16px;
}

.blog-detail-content figcaption,
.blog-detail-content .wp-caption-text {
  font-size: 13px;
  color: #777;
  text-align: center;
  padding-top: 12px;
  font-style: italic;
}

.blog-detail-content iframe,
.blog-detail-content video {
  max-width: 100%;
  border-radius: 16px;
  margin: 32px 0;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.08);
}

/* Tables */
.blog-detail-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 32px 0;
  font-size: 15px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.blog-detail-content table th,
.blog-detail-content table td {
  padding: 14px 18px;
  border: 1px solid #e5e7eb;
  text-align: left;
}

.blog-detail-content table th {
  background: #f8f9fa;
  font-weight: 700;
  color: #111;
}

.blog-detail-content table tr:nth-child(even) td {
  background: #fafafa;
}

/* Code */
.blog-detail-content code {
  font-family: "Consolas", "Courier New", Courier, monospace;
  background: #f3f4f6;
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 14px;
  color: #b45309;
}

.blog-detail-content pre {
  font-family: "Consolas", "Courier New", Courier, monospace;
  background: #111111;
  color: #f3f4f6;
  padding: 24px 28px;
  border-radius: 14px;
  overflow-x: auto;
  margin: 32px 0;
  line-height: 1.65;
  font-size: 14px;
  border: 1px solid #282828;
}

.blog-detail-content pre code {
  background: none;
  padding: 0;
  color: inherit;
}

.blog-detail-content hr {
  border: none;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    #e0e0e0 50%,
    transparent 100%
  );
  margin: 48px 0;
}

/* ── 6. Tags Section ───────────────────────────────────────────────────────── */
.blog-detail-tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid #eaeaea;
}

.blog-detail-tags__label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #888;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.blog-detail-tags__label i {
  font-size: 12px;
  color: #f4c324;
}

.blog-detail-tags__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.blog-detail-tag {
  display: inline-block;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 500;
  color: #444;
  background: #f3f4f6;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.blog-detail-tag:hover {
  background: #f4c324;
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(244, 195, 36, 0.25);
}

/* ── 7. Bottom Share Box ───────────────────────────────────────────────────── */
.blog-detail-share-box {
  margin-top: 40px;
  padding: 28px 32px;
  background: linear-gradient(135deg, #fafafa 0%, #f4f5f7 100%);
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.03);
}

.blog-detail-share-box__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.blog-detail-share-box__heading {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #111;
  margin: 0 0 4px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.blog-detail-share-box__heading i {
  color: #e11d48;
  font-size: 16px;
}

.blog-detail-share-box__desc {
  font-size: 14px;
  color: #666;
  margin: 0;
}

.blog-detail-share-box__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.blog-copy-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: #111111;
  color: #ffffff;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  position: relative;
}

.blog-copy-btn:hover {
  background: #f4c324;
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.blog-detail-share-box__socials {
  display: flex;
  align-items: center;
  gap: 8px;
}

.blog-share-pill {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  color: #444;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.blog-share-pill:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

/* ── 8. Next & Previous Post Navigation ────────────────────────────────────── */
.blog-post-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 44px;
}

.blog-post-nav__card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px 24px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
  position: relative;
  overflow: hidden;
}

.blog-post-nav__card:hover {
  border-color: #f4c324;
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.blog-post-nav__card--next {
  text-align: right;
}

.blog-post-nav__direction {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #888;
  margin-bottom: 12px;
}

.blog-post-nav__card--next .blog-post-nav__direction {
  justify-content: flex-end;
}

.blog-post-nav__card:hover .blog-post-nav__direction {
  color: #c8841a;
}

.blog-post-nav__body {
  display: flex;
  align-items: center;
  gap: 14px;
}

.blog-post-nav__card--next .blog-post-nav__body {
  justify-content: flex-end;
}

.blog-post-nav__thumb {
  width: 54px;
  height: 54px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
}

.blog-post-nav__title {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #111;
  line-height: 1.4;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.2s ease;
}

.blog-post-nav__card:hover .blog-post-nav__title {
  color: #c8841a;
}

.blog-post-nav__card--empty {
  border: none;
  background: transparent;
  box-shadow: none;
  pointer-events: none;
}

/* ── 9. Author Bio Card ────────────────────────────────────────────────────── */
.blog-author-card {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 32px;
  background: #ffffff;
  border: 1px solid #eaeaea;
  border-radius: 22px;
  margin-top: 48px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
  position: relative;
}

.blog-author-card__avatar-wrap {
  position: relative;
  flex-shrink: 0;
}

.blog-author-card__avatar {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #f4c324;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.blog-author-card__verified {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 22px;
  height: 22px;
  background: #22c55e;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  border: 2px solid #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.blog-author-card__info {
  flex: 1;
}

.blog-author-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 10px;
}

.blog-author-card__eyebrow {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #888;
}

.blog-author-card__name {
  font-family: "Inter", sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: #111;
  margin: 2px 0 0;
}

.blog-author-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #111;
  text-decoration: none;
  padding: 6px 14px;
  background: #f3f4f6;
  border-radius: 999px;
  transition: all 0.2s ease;
}

.blog-author-card__btn:hover {
  background: #f4c324;
  transform: translateX(2px);
}

.blog-author-card__btn i {
  font-size: 11px;
}

.blog-author-card__bio {
  font-size: 14px;
  line-height: 1.65;
  color: #555;
  margin: 0;
}

/* ── 10. Related Posts / Other Blogs ───────────────────────────────────────── */
.blog-detail-related {
  background: #fbfbfb;
  padding: 80px 0 60px;
  border-top: 1px solid #f0f0f0;
}

.blog-detail-related__header {
  text-align: center;
  margin-bottom: 44px;
}

.blog-detail-related__title {
  font-family: "Inter", sans-serif;
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 700;
  color: #000;
  text-align: center;
  margin: 0;
  letter-spacing: -0.02em;
}

.blog-detail-related__title span {
  color: #777;
}

.blog-detail-related .bp-grid {
  gap: 32px;
}

.bp-card__hover-overlay {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  background: #f4c324;
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
  z-index: 2;
}

.bp-card:hover .bp-card__hover-overlay {
  opacity: 1;
  transform: scale(1);
}

.bp-card__meta-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  width: 100%;
}

.bp-card__read-time {
  font-size: 12px;
  color: #888;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-weight: 500;
}

/* ══════════════════════════════════════════════════════════════════════════════
   BLOG DETAIL — RESPONSIVE STYLES
══════════════════════════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .blog-detail-hero,
  #heroDetailWrp {
    margin: 16px 16px 0;
    padding: 40px 24px 36px;
    border-radius: 20px;
  }

  .blog-detail-article__layout {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 36px;
  }

  .blog-detail-sidebar {
    position: static;
    width: 100%;
    margin-bottom: 12px;
  }

  .blog-detail-sticky-share {
    flex-direction: row;
    width: auto;
    padding: 10px 18px;
    border-radius: 999px;
    justify-content: center;
  }

  .blog-detail-sticky-share__icons {
    flex-direction: row;
  }

  .blog-back-to-top {
    margin-top: 0;
    margin-left: 6px;
  }

  .blog-share-tooltip {
    left: 50%;
    top: auto;
    bottom: calc(100% + 10px);
    transform: translateX(-50%) scale(0.85);
  }

  .blog-share-tooltip::before {
    right: auto;
    left: 50%;
    top: 100%;
    margin-left: -4px;
    margin-top: 0;
    border-color: #111111 transparent transparent transparent;
  }

  .blog-share-icon.is-copied .blog-share-tooltip,
  .blog-copy-btn.is-copied .blog-share-tooltip {
    transform: translateX(-50%) scale(1);
  }
}

@media (max-width: 768px) {
  .blog-detail-hero,
  #heroDetailWrp {
    margin: 12px 12px 0;
    padding: 32px 16px 28px;
    border-radius: 16px;
  }

  .blog-detail-hero__title,
  #heroDetailWrp .cta-stories__headline {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .blog-detail-hero__meta-card {
    flex-direction: column;
    padding: 14px 20px;
    border-radius: 16px;
    gap: 12px;
  }

  .blog-detail-hero__meta-divider {
    display: none;
  }

  .blog-detail-hero__image-wrap {
    border-radius: 16px;
    margin: 20px auto 0;
  }

  .blog-detail-article {
    padding: 0 0 40px;
  }

  .blog-detail-article__container {
    padding: 0 16px;
  }

  .blog-detail-content {
    font-size: 16px;
    line-height: 1.75;
  }

  .blog-detail-content > p:first-of-type {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 10px;
  }

  .blog-detail-content p {
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 10px;
  }

  .blog-detail-content h1 {
    font-size: 26px;
    margin-top: 36px;
    padding-left: 16px;
  }

  .blog-detail-content h2 {
    font-size: 23px;
    margin-top: 36px;
  }

  .blog-detail-content h3 {
    font-size: 20px;
    margin-top: 28px;
  }

  .blog-detail-content blockquote {
    padding: 20px 22px;
    margin: 26px 0;
  }

  .blog-detail-content blockquote p {
    font-size: 16px;
  }

  .blog-detail-share-box {
    padding: 22px 20px;
  }

  .blog-detail-share-box__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .blog-detail-share-box__actions {
    width: 100%;
    justify-content: space-between;
  }

  .blog-post-nav {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .blog-post-nav__card--next {
    text-align: left;
  }

  .blog-post-nav__card--next .blog-post-nav__direction {
    justify-content: flex-start;
  }

  .blog-post-nav__card--next .blog-post-nav__body {
    justify-content: flex-start;
    flex-direction: row-reverse;
  }

  .blog-author-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px 20px;
  }

  .blog-author-card__header {
    justify-content: center;
    flex-direction: column;
  }

  .blog-detail-related {
    padding: 50px 0 30px;
  }

  .blog-detail-related__title {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .blog-detail-hero__title,
  #heroDetailWrp .cta-stories__headline {
    font-size: 24px;
  }

  .blog-detail-hero__badges {
    flex-direction: column;
    gap: 6px;
  }

  .blog-detail-share-box__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .blog-copy-btn {
    justify-content: center;
  }

  .blog-detail-share-box__socials {
    justify-content: center;
  }
}

/* ============================================================
   PRICING PACKAGES SECTION
   ============================================================ */
.pricing-packages-section{
    display:none!important;
}
.pricing-packages-section {
  width: 100%;
  padding: 80px 20px;
  background: #f9f9f9;
}

.pricing-packages__container {
  max-width: 1240px;
  margin: 0 auto;
}

/* ── Section Header ────────────────────────────────────────── */

.pricing-packages__header {
  text-align: center;
  margin-bottom: 40px;
}

.pricing-packages__eyebrow {
  color: #ffc107;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
}

.pricing-packages__eyebrow span {
  margin-right: 8px;
}

.pricing-packages__title {
  font-size: 48px;
  font-weight: 700;
  margin: 0 0 15px 0;
  color: #111;
}

.pricing-packages__desc {
  color: #000;
  font-size: 16px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ── Packages Grid ────────────────────────────────────────── */

.pricing-packages__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 100%;
  margin: 0 auto;
}

/* ── Individual Package Card ──────────────────────────────── */

.pricing-package {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.pricing-package:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* ── Package Header (Dark Section) ────────────────────────── */
.headerW {
  padding: 15px;
  box-shadow: 0px 2px 4px -2px rgba(0, 0, 0, 0.06);

  box-shadow: 0px 4px 8px -2px rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  margin-bottom: 15px;
}

.pricing-package__header {
  background:
    linear-gradient(
      135deg,
      rgba(26, 26, 26, 0.9) 0%,
      rgba(45, 45, 45, 0.9) 100%
    ),
    url("../images/blueBg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 20px 15px;
  padding-right: 5px;
  position: relative;
  min-height: 160px;
  margin-bottom: 0;
  overflow: hidden;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}

.pricing-package__header::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background-image: url("../images/blueBg.jpg");
  background-size: cover;
  background-position: center;
  filter: blur(8px);
  z-index: -1;
}

/* Gray variant for 1st and 3rd packages */
.pricing-package--gray .pricing-package__header {
  background:
    linear-gradient(
      135deg,
      rgba(26, 26, 26, 0.5) 0%,
      rgba(45, 45, 45, 0.9) 100%
    ),
    url("../images/grayBG.jpg");
}

.pricing-package--gray .pricing-package__header::before {
  background-image: url("../images/grayBG.jpg");
}

.pricing-package__logo {
  position: absolute;
  top: 12px;
  right: 10px;
  width: 50px;
  height: auto;
  opacity: 1;
}

section.creative-showcase.video-work-section {
  background: rgba(243, 243, 243, 1);
}

.pricing-package__badge {
  display: inline-block;
  background: transparent;
  color: #fff;
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 400;
  text-transform: capitalize;
  letter-spacing: -3%;
  border: 1px solid #fff;
}

.pricing-package__name {
  color: rgba(255, 255, 255, 1);
  font-size: 28px;
  font-weight: 600;
  margin: 20px 0 0 0;
  line-height: 1.2;
}

.pricing-package--featured .pricing-package__badge {
  background: #fff;
  color: #000;
}

/* ── Package Body (White Section) ─────────────────────────── */

.pricing-package__body {
  padding: 0 20px 20px 20px;
}

.pricing-package__intro {
  color: #000;
  font-size: 14px;
  margin: 15px 0;
  line-height: 1.5;
}

/* ── CTA Button ───────────────────────────────────────────── */

.pricing-package__cta {
  display: block;
  text-align: center;
  background: #f5f5f5;
  color: #000;
  padding: 14px 24px;
  border-radius: 22px;
  text-decoration: none;
  font-weight: 400;
  font-size: 16px;
  transition: all 0.3s ease;
}

.pricing-package__cta:hover {
  background: #e8e8e8;
  transform: translateY(-2px);
  color: #000;
}

.pricing-package__cta--primary {
  background: #ffc107;
  color: #000;
  box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

.pricing-package__cta--primary:hover {
  background: #ffd54f;
  color: #000;
}

/* ── Features List ────────────────────────────────────────── */

.pricing-package__features-title {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 14px;
  color: #333;
}

.pricing-package__features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-package__features-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 12px;
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}

.pricing-package__features-list .check {
  color: #ffc107;
  margin-right: 10px;
  font-size: 16px;
  font-weight: bold;
  flex-shrink: 0;
}

/* ── Responsive ───────────────────────────────────────────── */

@media (max-width: 900px) {
  .pricing-packages__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .pricing-package--featured {
    transform: scale(1);
  }

  .pricing-package--featured:hover {
    transform: translateY(-8px);
  }

  .pricing-packages__title {
    font-size: 40px;
  }
}

@media (max-width: 600px) {
  .pricing-packages-section {
    padding: 60px 16px;
  }

  .pricing-packages__header {
    margin-bottom: 40px;
  }

  .pricing-packages__title {
    font-size: 32px;
  }

  .pricing-package__header {
    padding: 30px 20px;
    min-height: 160px;
  }

  .pricing-package__name {
    font-size: 24px;
  }

  .pricing-package__body {
    padding: 24px;
  }

  .pricing-packages__grid {
    gap: 24px;
  }
}

/* ============================================================
   CTA BANNER SECTION (SERVICES PAGE)
   ============================================================ */

.cta-banner-section {
  width: 100%;
  padding: 80px 20px;
  background: #ffffff;
}

.cta-banner__container {
  max-width: 1200px;
  margin: 0 auto;
}

.cta-banner__content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-banner__eyebrow {
  color: #ffc107;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-banner__eyebrow span {
  margin-right: 8px;
}

.cta-banner__title {
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 700;
  margin: 0 0 40px 0;
  color: #111;
  line-height: 1.1;
  font-family: "Raleway", sans-serif;
  letter-spacing: -0.02em;
}

.cta-banner__title span {
  color: #888888;
}

.cta-banner__button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: #ffc107;
  color: #000;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

.cta-banner__button:hover {
  background: #ffd54f;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
}

.cta-banner__button i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.cta-banner__button:hover i {
  transform: translateX(4px);
}

/* Responsive */
@media (max-width: 768px) {
  .cta-banner-section {
    padding: 70px 20px;
  }

  .cta-banner__title {
    font-size: clamp(32px, 8vw, 48px);
    margin-bottom: 30px;
  }

  .cta-banner__button {
    padding: 14px 28px;
    font-size: 15px;
  }

  .hero__ctas {
    justify-content: center;
  }

  .trust-strip__intro {
    justify-content: center;
  }

  section#stats .heading__eyebrow {
    justify-content: center !important;
    display: flex;
  }

  .stat-item__number {
    text-align: center;
  }

  .stat-item__content {
    text-align: center;
  }

  section#services {
    text-align: center;
  }

  .container .heading__eyebrow {
    justify-content: center !important;
  }

  section .heading__eyebrow {
    justify-content: center !important;
  }

  section.studio-slider-section {
    text-align: center;
  }

  .studio-slider-section__link {
    justify-self: center !important;
  }

  .featured-cases__header {
    text-align: center !important;
  }

  section.brand-process {
    text-align: center;
  }

  h2#testimonials-headline {
    text-align: center;
  }

  .testimonials-header__desc {
    text-align: center;
  }

  .founder-content__inner {
    text-align: center;
  }

  .founder-badge {
    margin: 0 auto;
    margin-bottom: 25px;
  }

  .faq-section {
    text-align: center;
  }

  .faq-section p {
    text-align: left;
  }

  .cta-stories__headline {
    font-size: clamp(30px, 9vw, 32px) !important;
  }
}

@media (max-width: 480px) {
  .cta-banner-section {
    padding: 60px 18px;
  }

  .cta-banner__eyebrow {
    font-size: 13px;
    margin-bottom: 16px;
  }

  .cta-banner__title {
    margin-bottom: 24px;
  }
}
