@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@200..1000&display=swap");

:root {
  --navy: #0a1628;
  --navy-mid: #0f2044;
  --navy-light: #1a3460;
  --gold: #c9963a;
  --gold-light: #e4b558;
  --gold-pale: #f5e4b8;
  --white: #ffffff;
  --off-white: #f8f6f1;
  --text-dark: #0a1628;
  --text-muted: #5a6b7e;
  --border: #e2e8f0;
  --font-display: "Cairo", sans-serif;
  --font-body: "Cairo", sans-serif;
  /* --font-body: 'IBM Plex Sans Arabic', sans-serif; */
}

/* ── Custom Scrollbar ────────────────────────────────────── */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--navy);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--gold), var(--gold-light));
  border: 2px solid var(--navy);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  direction: rtl;
  text-align: right;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

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

ul {
  list-style: none;
}

/* NAVBAR */
#mainNav {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  padding: 10px 0;
  background: transparent;
  will-change: transform, padding;
  transition:
    padding 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

#mainNav::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: #ffffff;
  border-bottom: 1px solid rgba(201, 150, 58, 0.13);
  opacity: 0;
  will-change: opacity;
  transition: opacity 0.35s ease;
}

#mainNav.nav-hidden {
  transform: translateY(-100%);
}

#mainNav.scrolled {
  padding: 12px 0;
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.09);
}

#mainNav.scrolled::before {
  opacity: 1;
}

/* Brand logo */
.navbar-brand {
  padding: 0;
}

.brand-logo {
  width: 100px;
}

.brand-logo img {
  width: 100%;
  object-fit: contain;
  display: block;
}

/* Nav links — white on transparent, navy on scrolled */
.navbar-nav .nav-link {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 7px 13px !important;
  position: relative;
  color: rgba(255, 255, 255, 0.88) !important;
  transition: color 0.25s ease;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 13px;
  left: 13px;
  height: 1.5px;
  background: var(--gold);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.28s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--gold-light) !important;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  transform: scaleX(1);
}

/* Scrolled state — dark links */
#mainNav.scrolled .navbar-nav .nav-link {
  color: var(--navy) !important;
}

#mainNav.scrolled .navbar-nav .nav-link:hover,
#mainNav.scrolled .navbar-nav .nav-link.active {
  color: var(--gold) !important;
}

/* Lang button */
.nav-item .lang-btn {
  margin: 5px 20px;
}

.lang-btn {
  background: transparent;
  border: 1px solid rgba(201, 150, 58, 0.55);
  color: var(--gold-light);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 5px 18px;
  border-radius: 2px;
  cursor: pointer;
  transition:
    background 0.2s,
    color 0.2s,
    border-color 0.2s;
  letter-spacing: 0.1em;
}

.lang-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

#mainNav.scrolled .lang-btn {
  color: var(--gold);
  border-color: rgba(201, 150, 58, 0.6);
}

#mainNav.scrolled .lang-btn:hover {
  color: var(--white);
  border-color: rgba(201, 150, 58, 0.6);
}

/* Hamburger icon */
.navbar-toggler {
  border: none;
  padding: 4px 6px;
  outline: none;
  border-radius: 2px;
}

.navbar-toggler:focus {
  box-shadow: none !important;
}

.toggler-icon {
  color: var(--white);
  font-size: 1.2rem;
  transition: color 0.2s;
}

#mainNav.scrolled .toggler-icon {
  color: var(--navy);
}

/* ── Mobile / tablet collapsed menu ── */
@media (max-width: 991px) {
  #navbarNav {
    margin-top: 8px;
    border-radius: 2px;
    background: #ffffff;
    border: 1px solid rgba(201, 150, 58, 0.14);
    box-shadow: 0 12px 40px rgb(105 105 105 / 54%);
    padding: 8px 4px 12px;
    overflow: hidden;
  }

  .navbar-nav {
    gap: 0 !important;
  }

  .navbar-nav .nav-link {
    color: var(--navy) !important;
    padding: 11px 20px !important;
    font-size: 0.94rem;
    border-radius: 6px;
    margin: 1px 8px;
    display: flex;
    align-items: center;
  }

  .navbar-nav .nav-link::after {
    display: none;
  }

  .navbar-nav .nav-link:hover,
  .navbar-nav .nav-link.active {
    color: var(--gold) !important;
    background: rgba(201, 150, 58, 0.07);
  }

  /* Lang button in mobile */
  /* .d-none.d-lg-flex { display: flex !important; padding: 8px 16px 4px; } */
}

/* HERO */
#hero {
  min-height: 100vh;
  background: var(--navy);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
  contain: layout style paint;
}

/* Video background */
.hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  transform: translateZ(0);
  will-change: transform;
}

.hero-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: translateZ(0);
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(10, 22, 40, 0.65) 0%,
    rgba(10, 22, 40, 0.55) 50%,
    rgba(10, 22, 40, 0.8) 100%
  );
  transform: translateZ(0);
}

.hero-grid {
  position: absolute;
  inset: -44px;
  z-index: 2;
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.04) 1px,
    transparent 1px
  );
  background-size: 44px 44px;
  animation: gridMove 20s linear infinite;
  pointer-events: none;
  will-change: transform;
  transform: translateZ(0);
}

@keyframes gridMove {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(44px, 44px);
  }
}

.hero-content {
  position: relative;
  z-index: 10;
  padding: 100px 0 110px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

@media (max-width: 991px) {
  .hero-content {
    padding: 90px 0 100px;
  }
}

@media (max-width: 575px) {
  .hero-content {
    padding: 90px 0 90px;
  }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(201, 150, 58, 0.1);
  border: 1px solid rgba(201, 150, 58, 0.35);
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 7px 18px;
  border-radius: 2px;
  margin-bottom: 24px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  animation: fadeInDown 0.8s ease 0.2s both;
  text-align: center;
  max-width: calc(100vw - 48px);
}

.hero-eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.7);
  }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 5.5vw, 4.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.22;
  margin-bottom: 20px;
  animation: fadeInDown 0.8s ease 0.4s both;
  text-align: center;
}

.hero-title .accent-line {
  display: block;
  color: var(--gold);
  margin: 5px 0;
}

.hero-desc {
  color: rgba(255, 255, 255, 0.75);
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  line-height: 2;
  max-width: 580px;
  margin-bottom: 36px;
  padding: 0 8px;
  animation: fadeInDown 0.8s ease 0.6s both;
  text-align: center;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeInDown 0.8s ease 0.8s both;
  padding: 0 8px;
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 0 24px;
  }

  .hero-actions .btn-gold,
  .hero-actions .btn-ghost {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.92rem;
  padding: 14px 36px;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.btn-gold::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.25),
    transparent
  );
  transition: left 0.5s;
}

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201, 150, 58, 0.4);
  color: var(--navy);
}

.btn-gold:hover::before {
  left: 100%;
}

.btn-ghost {
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 13px 32px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

.btn-ghost i {
  font-size: 0.85rem;
  transition: transform 0.3s;
}

.btn-ghost:hover i {
  transform: translateX(-5px);
}

/* Hero Stats Strip */
.hero-stats-strip {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 10;
  background: rgba(6, 14, 28, 0.72);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-stats-strip .inner {
  display: flex;
  align-items: stretch;
}

.hero-stat-item {
  flex: 1;
  padding: 20px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-left: 1px solid rgba(255, 255, 255, 0.07);
  transition: background 0.25s;
  min-width: 0;
}

.hero-stat-item:last-child {
  border-left: none;
}

.hero-stat-item:hover {
  background: rgba(201, 150, 58, 0.08);
}

.stat-icon-box {
  width: 38px;
  height: 38px;
  background: rgba(201, 150, 58, 0.12);
  border: 1px solid rgba(201, 150, 58, 0.3);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.stat-info {
  min-width: 0;
  overflow: hidden;
}

.stat-info .num {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  white-space: nowrap;
}

.stat-info .lbl {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 3px;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 767px) {
  .hero-stats-strip .inner {
    flex-wrap: wrap;
  }

  .hero-stat-item {
    flex: 0 0 50%;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 16px 16px;
  }

  .hero-stat-item:nth-child(1),
  .hero-stat-item:nth-child(2) {
    border-top: none;
  }
}

@media (max-width: 380px) {
  .stat-icon-box {
    display: none;
  }

  .hero-stat-item {
    padding: 14px 12px;
    gap: 0;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* SECTION COMMON */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-tag::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.section-h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 20px;
}

.section-h2 em {
  font-style: normal;
  color: var(--gold);
}

/* ABOUT */
#about {
  background: var(--off-white);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

#about::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -80px;
  width: 320px;
  height: 320px;
  background: radial-gradient(
    circle,
    rgba(201, 150, 58, 0.08) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}

.about-lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 2;
  margin-bottom: 24px;
  max-width: 540px;
}

.feat-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}

.feat-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.feat-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.feat-text strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
}

.feat-text p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

.about-img-wrap {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(10, 22, 40, 0.2);
  height: 480px;
}

.about-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-img-wrap:hover img {
  transform: scale(1.04);
}

.about-exp-badge {
  position: absolute;
  bottom: 28px;
  right: 28px;
  background: var(--navy);
  color: var(--white);
  padding: 22px 24px;
  border-radius: 4px;
  text-align: center;
  box-shadow: 0 12px 36px rgba(10, 22, 40, 0.35);
  min-width: 120px;
  z-index: 3;
  border: 1px solid rgba(201, 150, 58, 0.25);
}

.about-exp-badge .big {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.about-exp-badge .sm {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 4px;
}

@media (max-width: 991px) {
  .about-img-wrap {
    height: 340px;
  }
}

@media (max-width: 767px) {
  .about-img-wrap {
    height: 280px;
    margin-bottom: 32px;
  }
}

/* SECTORS */
#sectors {
  background: var(--navy);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

#sectors::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(201, 150, 58, 0.06) 0%,
    transparent 70%
  );
  pointer-events: none;
}

#sectors .section-tag {
  color: var(--gold-light);
}

#sectors .section-tag::before {
  background: var(--gold-light);
}

#sectors .section-h2 {
  color: var(--white);
}

.sectors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 56px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  overflow: hidden;
}

@media (max-width: 767.9px) {
  .sectors-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 768px) and (max-width: 991.9px) {
  .sectors-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.sector-panel {
  position: relative;
  padding: 48px 36px;
  background: rgba(255, 255, 255, 0.02);
  border-left: 1px solid rgba(255, 255, 255, 0.05);
  cursor: pointer;
  transition:
    background 0.4s,
    transform 0.3s;
  overflow: hidden;
}

.sector-panel:last-child {
  border-left: none;
}

.sector-panel:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-4px);
}

.sector-panel::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 3px;
  height: 0;
  background: var(--gold);
  transition: height 0.4s ease;
}

.sector-panel:hover::before {
  height: 100%;
}

.sector-bg-num {
  position: absolute;
  top: 0;
  left: 20px;
  font-family: var(--font-display);
  font-size: 7rem;
  font-weight: 900;
  color: rgb(201 150 58 / 21%);
  line-height: 1;
  pointer-events: none;
}

.sector-icon-wrap {
  width: 64px;
  height: 64px;
  background: rgba(201, 150, 58, 0.1);
  border: 1px solid rgba(201, 150, 58, 0.25);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 28px;
  transition:
    background 0.3s,
    color 0.3s;
}

.sector-panel:hover .sector-icon-wrap {
  background: var(--gold);
  color: var(--white);
}

.sector-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.35;
}

.sector-body {
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.85;
  margin-bottom: 28px;
}

.sector-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
  transition: gap 0.3s;
}

.sector-link-arrow i {
  font-size: 0.75rem;
  transition: transform 0.3s;
}

.sector-panel:hover .sector-link-arrow {
  gap: 14px;
}

.sector-panel:hover .sector-link-arrow i {
  transform: translateX(-4px);
}

/* WHY US - BENTO */
#why-us {
  background: var(--white);
  padding: 100px 0;
}

.why-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 56px;
}

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

@media (max-width: 575px) {
  .why-bento {
    grid-template-columns: 1fr;
  }
}

.bento-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.3s,
    box-shadow 0.3s,
    border-color 0.3s;
}

.bento-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(10, 22, 40, 0.1);
  border-color: var(--gold);
}

.bento-card.featured {
  background: var(--navy);
  border-color: var(--navy);
  grid-column: span 2;
}

@media (max-width: 575px) {
  .bento-card.featured {
    grid-column: span 1;
  }
}

.bento-card::after {
  content: "";
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(201, 150, 58, 0.06);
  transition: transform 0.5s;
}

.bento-card:hover::after {
  transform: scale(2.5);
}

.bento-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 24px;
}

.bento-card.featured .bento-icon {
  background: rgba(201, 150, 58, 0.15);
  color: var(--gold);
  border: 1px solid rgba(201, 150, 58, 0.3);
}

.bento-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
}

.bento-card.featured .bento-title {
  color: var(--white);
  font-size: 1.3rem;
}

.bento-desc {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.bento-card.featured .bento-desc {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.92rem;
}

.bento-num {
  position: absolute;
  bottom: 20px;
  left: 24px;
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(201, 150, 58, 0.07);
  line-height: 1;
  pointer-events: none;
}

.bento-card.featured .bento-num {
  color: rgba(201, 150, 58, 0.05);
  font-size: 5rem;
}

/* STATS */
#stats {
  background: var(--navy);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

#stats::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 55% 90% at 15% 50%,
      rgba(201, 150, 58, 0.08) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse 45% 80% at 85% 50%,
      rgba(26, 52, 96, 0.5) 0%,
      transparent 55%
    );
  pointer-events: none;
}

/* top/bottom gold lines */
#stats::after {
  content: "";
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(201, 150, 58, 0.5) 30%,
    rgba(201, 150, 58, 0.5) 70%,
    transparent
  );
}

.stats-section-head {
  text-align: center;
  margin-bottom: 56px;
  position: relative;
  z-index: 1;
}

.stats-section-head .section-tag {
  justify-content: center;
  color: var(--gold-light);
}

.stats-section-head .section-tag::before {
  background: var(--gold-light);
}

.stats-section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.3;
  margin: 0;
}

.stats-section-head h2 em {
  font-style: normal;
  color: var(--gold);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}

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

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
}

.stat-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 6px;
  padding: 40px 28px 36px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
  cursor: default;
}

.stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.stat-card:hover {
  background: rgba(201, 150, 58, 0.06);
  border-color: rgba(201, 150, 58, 0.22);
  transform: translateY(-5px);
}

.stat-card:hover::before {
  transform: scaleX(1);
}

/* Big decorative bg number */
.stat-card-bg {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 7rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.025);
  line-height: 1;
  pointer-events: none;
  white-space: nowrap;
  user-select: none;
}

.stat-card .sc-icon {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  background: linear-gradient(
    140deg,
    rgba(201, 150, 58, 0.18),
    rgba(201, 150, 58, 0.06)
  );
  border: 1px solid rgba(201, 150, 58, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  color: var(--gold);
  font-size: 1.35rem;
  transition:
    transform 0.3s ease,
    background 0.3s ease;
}

.stat-card:hover .sc-icon {
  transform: scale(1.1);
  background: linear-gradient(
    140deg,
    rgba(201, 150, 58, 0.28),
    rgba(201, 150, 58, 0.12)
  );
}

.stat-card .sc-num {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 10px;
  direction: ltr;
  display: block;
  letter-spacing: -0.02em;
}

.stat-card .sc-suf {
  color: var(--gold-light);
}

.stat-card .sc-lbl {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 600;
  letter-spacing: 0.05em;
}

/* SERVICES PREVIEW */
#services-preview {
  background: var(--off-white);
  padding: 100px 0;
  overflow: hidden;
}

.svc-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 48px;
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
  scrollbar-width: none;
}

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

.svc-tab {
  padding: 14px 28px;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-muted);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all 0.3s;
  white-space: nowrap;
  background: none;
  border-top: none;
  border-right: none;
  border-left: none;
}

@media (max-width: 767.9px) {
  .svc-tab {
    padding: 14px 22px !important;
  }

  .btn-gold,
  .btn-ghost {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}

.svc-tab.active {
  color: var(--navy);
  border-bottom-color: var(--gold);
}

.svc-tab:hover {
  color: var(--navy);
}

.svc-panel {
  display: none;
}

.svc-panel.active {
  display: block;
}

.svc-panel-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 991.9px) {
  .svc-panel-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.svc-panel-img {
  border-radius: 6px;
  overflow: hidden;
  height: 380px;
  position: relative;
}

.svc-panel-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}

.svc-panel-img:hover img {
  transform: scale(1.04);
}

.svc-panel-img .img-label {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--navy);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 2px;
  letter-spacing: 0.06em;
}

.svc-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0;
}

.svc-list-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  transition:
    border-color 0.3s,
    transform 0.3s;
}

.svc-list-item:hover {
  border-color: var(--gold);
  transform: translateX(-4px);
}

.svc-list-item .item-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* PARTNERS */
#partners {
  background: var(--white);
  padding: 80px 0;
}

.partners-swiper-wrap {
  margin-top: 48px;
  position: relative;
}

/* Fade edges */
.partners-swiper-wrap::before,
.partners-swiper-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 60px;
  pointer-events: none;
}

.partners-swiper-wrap::before {
  right: 0;
  background: linear-gradient(270deg, var(--white) 30%, transparent);
}

.partners-swiper-wrap::after {
  left: 0;
  background: linear-gradient(90deg, var(--white) 30%, transparent);
}

/* Give the swiper enough vertical room so lifted cards aren't clipped */
.partners-swiper {
  overflow: visible !important;
  padding: 8px 0 8px;
}

.partners-swiper .swiper-wrapper {
  overflow: visible;
}

/* Clip only horizontally via wrapper */
.partners-swiper-clip {
  overflow: hidden;
}

.partners-swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px 32px;
  border: 1px solid var(--border);
  border-radius: 8px;
  filter: grayscale(100%) opacity(0.4);
  transition:
    filter 0.28s ease,
    border-color 0.28s ease,
    transform 0.28s ease,
    box-shadow 0.28s ease;
  width: 100%;
  background: var(--white);
}

.partner-logo-item:hover {
  filter: grayscale(0%) opacity(1);
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(201, 150, 58, 0.12);
}

.partner-logo-item img {
  height: 42px;
  width: auto;
  object-fit: contain;
}

/* TESTIMONIALS */
#trust {
  background: var(--navy);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

#trust::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.04) 1px,
    transparent 1px
  );
  background-size: 40px 40px;
  pointer-events: none;
}

#trust .section-tag {
  color: var(--gold-light);
}

#trust .section-tag::before {
  background: var(--gold-light);
}

#trust .section-h2 {
  color: var(--white);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}

@media (max-width: 767px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }
}

.trust-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 6px;
  padding: 36px 32px;
  position: relative;
  transition:
    background 0.3s,
    border-color 0.3s;
}

.trust-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(201, 150, 58, 0.3);
}

.trust-quote-icon {
  font-size: 3rem;
  color: rgba(201, 150, 58, 0.2);
  font-family: Georgia, serif;
  line-height: 0.6;
  margin-bottom: 20px;
  display: block;
}

.trust-text {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.9;
  margin-bottom: 28px;
}

.trust-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy);
  flex-shrink: 0;
}

.trust-author-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
}

.trust-author-role {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 1px;
}

.trust-stars {
  position: absolute;
  top: 28px;
  left: 28px;
  display: flex;
  gap: 2px;
  color: var(--gold);
  font-size: 0.75rem;
}

/* CTA */
#cta {
  background: var(--gold);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

#cta::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  pointer-events: none;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 2;
}

@media (max-width: 767px) {
  .cta-inner {
    flex-direction: column;
    text-align: center;
  }
}

.cta-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.6;
}

.cta-text p {
  font-size: 0.95rem;
  color: rgba(10, 22, 40, 0.7);
  max-width: 480px;
  line-height: 1.8;
}

.cta-actions {
  display: flex;
  gap: 14px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

@media (max-width: 767px) {
  .cta-actions {
    justify-content: center;
  }
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.92rem;
  padding: 14px 36px;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-block;
}

.btn-navy:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  color: var(--white);
}

.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 13px 30px;
  border: 2px solid var(--navy);
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-block;
}

.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
}

/* FOOTER */
#footer {
  background: #060e1c;
  padding: 80px 0 0;
  color: rgba(255, 255, 255, 0.65);
}

.footer-logo-box {
  margin-bottom: 24px;
  background-color: #fff;
  border-radius: 2px;
  padding: 10px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  /* width: fit-content; */
}

.footer-logo-box img {
  width: 170px;
}

.footer-about-text {
  font-size: 0.87rem;
  line-height: 1.9;
  margin-bottom: 28px;
}

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

.fsoc-btn {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  transition: all 0.3s;
}

.fsoc-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

.footer-heading {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(201, 150, 58, 0.2);
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links-list a {
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  gap: 8px;
  transition:
    color 0.3s,
    gap 0.3s;
}

.footer-links-list a::before {
  content: "›";
  color: var(--gold);
  font-size: 1rem;
  line-height: 1;
}

.footer-links-list a:hover {
  color: var(--gold-light);
  gap: 12px;
}

.footer-contact-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.fcon-icon {
  width: 34px;
  height: 34px;
  background: rgba(201, 150, 58, 0.1);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.footer-contact-row p {
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  margin: 0;
}

.footer-bottom {
  margin-top: 60px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-copy {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.3);
}

.footer-copy span {
  color: var(--gold);
}

.footer-powered {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.2);
}

.footer-powered a {
  color: rgba(255, 255, 255, 0.3);
  transition: color 0.3s;
}

.footer-powered a:hover {
  color: var(--gold);
}

/* SCROLL TOP */
#scrollTop {
  position: fixed;
  bottom: 32px;
  left: 32px;
  width: 44px;
  height: 44px;
  background: var(--navy);
  border: 1px solid rgba(201, 150, 58, 0.3);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.95rem;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

#scrollTop.show {
  opacity: 1;
  pointer-events: all;
}

#scrollTop:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-3px);
}

[data-aos] {
  transition-duration: 0.7s !important;
}

/* ── PAGE HERO — About ─────────────────────────────── */
#page-hero {
  min-height: 44vh;
  background: var(--navy);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 140px 0 60px;

  isolation: isolate;
}

/* Background image layer */
#page-hero .ph-bg-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100%;
}

#page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(4, 10, 22, 0.88) 0%,
    rgba(10, 22, 40, 0.78) 55%,
    rgba(13, 30, 58, 0.72) 100%
  );
  z-index: 1;
}

#page-hero::after {
  content: "";
  position: absolute;
  top: -120px;
  left: -60px;
  width: 520px;
  height: 520px;
  background: radial-gradient(
    circle,
    rgba(201, 150, 58, 0.13) 0%,
    transparent 65%
  );
  z-index: 1;
  pointer-events: none;
}

.ph-grid {
  position: absolute;
  inset: -44px;
  z-index: 2;
  mix-blend-mode: overlay;
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.035) 1px,
    transparent 1px
  );
  background-size: 44px 44px;
  animation: gridMove 24s linear infinite;
  pointer-events: none;
}

@keyframes gridMove {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(44px, 44px);
  }
}

.ph-content {
  position: relative;
  z-index: 10;
}

.ph-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 500;
}

.ph-breadcrumb a {
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.2s;
}

.ph-breadcrumb a:hover {
  color: var(--gold-light);
}

.ph-breadcrumb i {
  font-size: 0.6rem;
  color: rgba(201, 150, 58, 0.55);
}

.ph-breadcrumb span {
  color: var(--gold-light);
}

.ph-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(201, 150, 58, 0.1);
  border: 1px solid rgba(201, 150, 58, 0.3);
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 2px;
  margin-bottom: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ph-eyebrow .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulseDot 2s ease-in-out infinite;
}

.ph-title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 14px;
}

.ph-title em {
  font-style: normal;
  color: var(--gold);
}

.ph-desc {
  color: rgba(255, 255, 255, 0.62);
  font-size: clamp(0.85rem, 1.5vw, 0.95rem);
  line-height: 1.9;
  max-width: 480px;
  /* margin-bottom: 28px; */
}

/* ── PAGE HERO — About ─────────────────────────────── */
#page-hero {
  min-height: 44vh;
  background: var(--navy);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 140px 0 60px;

  isolation: isolate;
}

/* Background image layer */
#page-hero .ph-bg-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100%;
}

#page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(4, 10, 22, 0.88) 0%,
    rgba(10, 22, 40, 0.78) 55%,
    rgba(13, 30, 58, 0.72) 100%
  );
  z-index: 1;
}

#page-hero::after {
  content: "";
  position: absolute;
  top: -120px;
  left: -60px;
  width: 520px;
  height: 520px;
  background: radial-gradient(
    circle,
    rgba(201, 150, 58, 0.13) 0%,
    transparent 65%
  );
  z-index: 1;
  pointer-events: none;
}

.ph-grid {
  position: absolute;
  inset: -44px;
  z-index: 2;
  mix-blend-mode: overlay;
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.035) 1px,
    transparent 1px
  );
  background-size: 44px 44px;
  animation: gridMove 24s linear infinite;
  pointer-events: none;
}

@keyframes gridMove {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(44px, 44px);
  }
}

.ph-accent-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 42%;
  width: 1px;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(201, 150, 58, 0.22) 40%,
    rgba(201, 150, 58, 0.22) 60%,
    transparent
  );
  z-index: 3;
  pointer-events: none;
}

.ph-content {
  position: relative;
  z-index: 10;
}

.ph-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 500;
}

.ph-breadcrumb a {
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.2s;
}

.ph-breadcrumb a:hover {
  color: var(--gold-light);
}

.ph-breadcrumb i {
  font-size: 0.6rem;
  color: rgba(201, 150, 58, 0.55);
}

.ph-breadcrumb span {
  color: var(--gold-light);
}

.ph-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(201, 150, 58, 0.1);
  border: 1px solid rgba(201, 150, 58, 0.3);
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 2px;
  margin-bottom: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ph-eyebrow .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulseDot 2s ease-in-out infinite;
}

.ph-title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 14px;
}

.ph-title em {
  font-style: normal;
  color: var(--gold);
}

.ph-desc {
  color: rgba(255, 255, 255, 0.62);
  font-size: clamp(0.85rem, 1.5vw, 0.95rem);
  line-height: 1.9;
  max-width: 480px;
  /* margin-bottom: 28px; */
}

.ph-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.ph-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ph-stat-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.ph-stat-lbl {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* Hero image side */
.ph-img-col {
  position: relative;
  z-index: 10;
}

.ph-img-frame {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  height: 320px;
}

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

.ph-img-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 22, 40, 0.35) 0%,
    transparent 60%
  );
  z-index: 1;
}

.ph-badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 110px;
  height: 110px;
  background: var(--gold);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 5;
  box-shadow: 0 14px 36px rgba(201, 150, 58, 0.4);
}

.ph-badge .big {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
}

.ph-badge .sm {
  font-size: 0.62rem;
  color: rgba(10, 22, 40, 0.75);
  font-weight: 700;
  text-align: center;
  margin-top: 4px;
  letter-spacing: 0.04em;
}

@media (max-width: 991px) {
  .ph-img-frame {
    height: 240px;
    margin-top: 36px;
  }

  .ph-badge {
    bottom: -10px;
    right: -6px;
    width: 90px;
    height: 90px;
  }

  .ph-badge .big {
    font-size: 1.7rem;
  }
}

/* ── STORY SECTION ─────────────────────────────────── */
#story {
  background: var(--off-white);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

#story::before {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 360px;
  height: 360px;
  background: radial-gradient(
    circle,
    rgba(201, 150, 58, 0.07) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}

.story-lead {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 2;
  margin-bottom: 24px;
}

.story-lead strong {
  color: var(--navy);
}

/* VMV Cards - modern horizontal layout */
.vmv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}

@media (max-width: 767.9px) {
  .vmv-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

@media (min-width: 768px) and (max-width: 992px) {
  .vmv-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
}

.vmv-card {
  background: var(--white);
  border-radius: 10px;
  padding: 36px 30px;
  border: 1px solid var(--border);
  position: relative;
  transition: all 0.3s;
  overflow: hidden;
}

.vmv-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease;
}

.vmv-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(10, 22, 40, 0.1);
  border-color: rgba(201, 150, 58, 0.2);
}

.vmv-card:hover::before {
  transform: scaleX(1);
}

.vmv-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* color: var(--navy); */
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.vmv-label {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.vmv-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.35;
}

.vmv-text {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.9;
}

/* Values pills */
.values-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 44px;
}

.value-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 10px 18px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  transition: all 0.3s;
}

@media (max-width: 767.9px) {
  .value-pill {
    flex: 1 1 calc(50% - 10px);
    justify-content: center;
  }
}
@media (max-width: 479.9px) {
  .value-pill {
    flex: 1 1 100%;
  }
}

.value-pill i {
  color: var(--gold);
  font-size: 0.88rem;
}

.value-pill:hover {
  border-color: var(--gold);
  background: rgba(201, 150, 58, 0.05);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(201, 150, 58, 0.15);
}

/* ── CHAIRMAN SECTION ──────────────────────────────── */
#chairman {
  background: var(--navy);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

#chairman::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 480px;
  height: 480px;
  background: radial-gradient(
    circle,
    rgba(201, 150, 58, 0.07) 0%,
    transparent 65%
  );
  pointer-events: none;
}

#chairman::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(201, 150, 58, 0.05) 0%,
    transparent 65%
  );
  pointer-events: none;
}

#chairman .section-tag {
  color: var(--gold-light);
}

#chairman .section-tag::before {
  background: var(--gold-light);
}

#chairman .section-h2 {
  color: var(--white);
}

.chairman-card {
  position: relative;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: stretch;
}

@media (max-width: 991px) {
  .chairman-card {
    flex-direction: column;
  }
}

.chairman-img-col {
  flex: 0 0 300px;
  position: relative;
  overflow: hidden;
}

@media (max-width: 1199px) {
  .chairman-img-col {
    flex: 0 0 260px;
  }
}

@media (max-width: 991px) {
  .chairman-img-col {
    flex: 0 0 auto;
    height: 280px;
  }
}

.chairman-img-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.6s;
}

.chairman-card:hover .chairman-img-col img {
  transform: scale(1.04);
}

.chairman-img-col::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to left,
    rgba(15, 32, 68, 0.6) 0%,
    transparent 60%
  );
}

@media (max-width: 991px) {
  .chairman-img-col::after {
    background: linear-gradient(
      to top,
      rgba(15, 32, 68, 0.7) 0%,
      transparent 60%
    );
  }
}

.chairman-body {
  flex: 1;
  padding: 44px 44px;
  position: relative;
}

@media (max-width: 767px) {
  .chairman-body {
    padding: 32px 24px;
  }
}

.chairman-quote-mark {
  font-family: Georgia, serif;
  font-size: 5rem;
  color: rgba(201, 150, 58, 0.15);
  line-height: 0.7;
  margin-bottom: 18px;
  display: block;
}

.chairman-text {
  font-size: 0.97rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 2.1;
  margin-bottom: 28px !important;
  font-style: italic;
}

.chairman-sig-row {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.chairman-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--navy);
  flex-shrink: 0;
}

.chairman-name {
  font-family: var(--font-display);
  font-size: 0.97rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 2px;
}

.chairman-role {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.06em;
}

/* ── WHY US — Modern Card Grid ─────────────────────── */
#why-us {
  background: var(--off-white);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

/* Section intro: split layout */
.why-head-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 52px;
}

@media (max-width: 767px) {
  .why-head-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.why-head-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 2;
  margin: 0;
}

/* Cards */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

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

@media (max-width: 575px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.why-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s;
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(10, 22, 40, 0.1);
  border-color: rgba(201, 150, 58, 0.2);
}

.why-card:hover::after {
  transform: scaleX(1);
}

.why-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* color: var(--gold); */
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 20px;
}

.why-card h3 {
  font-family: var(--font-display);
  font-size: 0.97rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.4;
}

.why-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.9;
  margin: 0;
  flex: 1;
}

/* Stats strip */
.why-highlight-strip {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: 10px;
  padding: 40px 44px;
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 0;
  position: relative;
  overflow: hidden;
}

.why-highlight-strip::before {
  content: "";
  position: absolute;
  top: -60px;
  left: -60px;
  width: 260px;
  height: 260px;
  background: radial-gradient(
    circle,
    rgba(201, 150, 58, 0.12) 0%,
    transparent 65%
  );
  pointer-events: none;
}

.whs-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  min-width: 100px;
  text-align: center !important;
}

.whs-num {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.whs-lbl {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
}

.whs-divider {
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .whs-divider {
    display: none;
  }

  .why-highlight-strip {
    padding: 28px 24px;
    flex-wrap: wrap;
    gap: 24px;
  }

  .whs-stat {
    flex: 0 0 calc(50% - 12px);
    text-align: right;
  }
}

/* ── PARTNERS section from index ───── */
#partners-about {
  background: var(--white);
  padding: 70px 0;
}

/* Partners Swiper — same as index */
#partners-about .partners-swiper-wrap {
  margin-top: 44px;
}

/* ── LOGISTICS SECTION ─────────────────────────────── */
#logistics {
  background: var(--off-white);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

#logistics::before {
  content: "";
  position: absolute;
  top: -80px;
  left: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(201, 150, 58, 0.07) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}

.log-intro {
  max-width: 680px;
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 2;
  margin-bottom: 60px;
}

/* Main service grid — 2 col */
.log-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

@media (max-width: 767px) {
  .log-grid {
    grid-template-columns: 1fr;
  }
}

/* Full-width feature service */
.log-card-full {
  grid-column: 1 / -1;
}

.log-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s;
  position: relative;
}

.log-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(10, 22, 40, 0.12);
  border-color: rgba(201, 150, 58, 0.2);
}

.log-card-img {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.log-card-full .log-card-img {
  height: 320px;
}

@media (max-width: 767px) {
  .log-card-full .log-card-img {
    height: 220px;
  }
}

.log-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.log-card:hover .log-card-img img {
  transform: scale(1.05);
}

.log-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 30%,
    rgba(10, 22, 40, 0.55) 100%
  );
}

.log-card-tag {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: var(--gold);
  /* color: var(--navy); */
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 2px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.log-card-body {
  padding: 30px 28px 36px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.log-card-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* color: var(--gold); */
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 18px;
}

.log-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.4;
}

.log-card-body p {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.9;
  flex: 1;
  margin-bottom: 22px;
}

.log-card-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.log-feat-tag {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold);
  background: rgba(201, 150, 58, 0.08);
  border: 1px solid rgba(201, 150, 58, 0.2);
  border-radius: 3px;
  padding: 4px 10px;
}

/* Sub-services row */
.log-sub-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 0;
}

@media (max-width: 767px) {
  .log-sub-row {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .log-sub-row {
    grid-template-columns: 1fr 1fr;
  }
}

.sub-service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: all 0.3s;
}

.sub-service-card:hover {
  border-color: rgba(201, 150, 58, 0.3);
  box-shadow: 0 8px 24px rgba(10, 22, 40, 0.07);
  transform: translateY(-3px);
}

.sub-svc-icon {
  width: 44px;
  height: 44px;
  background: rgba(201, 150, 58, 0.1);
  border: 1px solid rgba(201, 150, 58, 0.25);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.95rem;
  flex-shrink: 0;
}

.sub-svc-body h4 {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}

.sub-svc-body p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin: 0;
}

/* ── CHEMICALS SECTION ─────────────────────────────── */
#chemicals {
  background: var(--navy);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

#chemicals::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(201, 150, 58, 0.07) 0%,
    transparent 65%
  );
  pointer-events: none;
}

#chemicals::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(201, 150, 58, 0.05) 0%,
    transparent 65%
  );
  pointer-events: none;
}

#chemicals .section-tag {
  color: var(--gold-light);
}
#chemicals .section-tag::before {
  background: var(--gold-light);
}
#chemicals .section-h2 {
  color: var(--white);
}

.chem-intro {
  max-width: 680px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 2;
  margin-bottom: 60px;
}

/* Two-column layout: main card + sub list */
.chem-main-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

@media (max-width: 767px) {
  .chem-main-row {
    grid-template-columns: 1fr;
  }
}

.chem-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}

.chem-card:hover {
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-4px);
  border-color: rgba(201, 150, 58, 0.3);
}

.chem-card-img {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.chem-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.75) saturate(0.8);
  transition: all 0.5s;
}

.chem-card:hover .chem-card-img img {
  filter: brightness(0.85) saturate(1);
  transform: scale(1.05);
}

.chem-card-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 30%,
    rgba(10, 22, 40, 0.7) 100%
  );
}

.chem-card-body {
  padding: 28px 28px 34px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.chem-card-icon {
  width: 48px;
  height: 48px;
  background: rgba(201, 150, 58, 0.12);
  border: 1px solid rgba(201, 150, 58, 0.3);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.05rem;
  margin-bottom: 18px;
}

.chem-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.4;
}

.chem-card-body p {
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.9;
  flex: 1;
  margin-bottom: 20px;
}

.chem-feat-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.chem-feat-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.65);
}

.chem-feat-item i {
  color: var(--gold);
  font-size: 0.75rem;
  flex-shrink: 0;
}

/* Safety standards strip */
.safety-strip {
  margin-top: 40px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  padding: 36px 40px;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 14px;
  flex-wrap: wrap;
}

.safety-strip-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 6px;
  text-align: center;
}

.safety-strip-text {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  /* max-width: 360px; */
  text-align: center;
}

.safety-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  flex: 1;
  justify-content: center;
}

.safety-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 150, 58, 0.08);
  border: 1px solid rgba(201, 150, 58, 0.22);
  border-radius: 4px;
  padding: 10px 16px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold-light);
}

.safety-badge i {
  font-size: 0.85rem;
}

@media (max-width: 767px) {
  .safety-strip {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px;
  }
}

/* ── Quote Page Specific ────────────────────── */
#quote-section {
  padding: 80px 0 100px;
  background: var(--off-white);
}

.quote-intro {
  max-width: 560px;
}

/* Service Type Cards */
.svc-type-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 36px;
}

.svc-type-card {
  border: 2px solid var(--border);
  border-radius: 12px;
  padding: 20px 16px;
  cursor: pointer;
  background: var(--white);
  transition:
    border-color 0.25s,
    box-shadow 0.25s,
    transform 0.2s;
  position: relative;
  text-align: center;
}

.svc-type-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(201, 150, 58, 0.12);
}

.svc-type-card.selected {
  border-color: var(--gold);
  background: linear-gradient(135deg, #fdf8ee 0%, #fff 100%);
  box-shadow: 0 8px 28px rgba(201, 150, 58, 0.18);
}

.svc-type-card.selected::after {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--gold);
  color: var(--white);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 22px;
}

.svc-type-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-size: 1.2rem;
  color: var(--white);
  transition: background 0.25s;
}

.svc-type-card.selected .svc-type-icon {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--navy);
}

.svc-type-title {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-dark);
  margin-bottom: 6px;
  line-height: 1.4;
}

.svc-type-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Form Card */
.quote-form-card {
  background: var(--white);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 40px rgba(10, 22, 40, 0.07);
  border: 1px solid var(--border);
}

.quote-form-label {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text-dark);
  margin-bottom: 8px;
  display: block;
}

.quote-form-label span {
  color: var(--gold);
}

.quote-input,
.quote-select,
.quote-textarea {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--off-white);
  transition:
    border-color 0.25s,
    box-shadow 0.25s;
  outline: none;
  /* direction: ltr; */
}

.quote-input:focus,
.quote-select:focus,
.quote-textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 150, 58, 0.12);
  background: var(--white);
}

.quote-textarea {
  resize: vertical;
  min-height: 120px;
}

.quote-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%235a6b7e' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left 16px center;
  padding-left: 40px;
}

.form-group {
  margin-bottom: 20px;
}

.quote-submit-btn {
  width: 100%;
  padding: 15px 24px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  border: none;
  border-radius: 8px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  color: var(--white);
  cursor: pointer;
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    opacity 0.2s;
  letter-spacing: 0.03em;
}

.quote-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 150, 58, 0.35);
}

.quote-submit-btn:active {
  transform: translateY(0);
}

.form-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 14px;
}

.form-note i {
  color: var(--gold);
  margin-left: 5px;
}

/* Side Info */
.quote-info-card {
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: 16px;
  padding: 36px 28px;
  color: var(--white);
  /* position: sticky;
  top: 100px; */
}

.qi-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-light);
  font-weight: 700;
  margin-bottom: 8px;
}

.qi-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.5;
}

.qi-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 22px;
}

.qi-step-num {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  background: rgba(201, 150, 58, 0.18);
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--gold-light);
}

.qi-step-text strong {
  display: block;
  font-size: 0.9rem;
  color: var(--white);
  margin-bottom: 4px;
}

.qi-step-text p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin: 0;
}

.qi-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin: 24px 0;
}

.qi-contact {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.qi-contact-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 8px;
  background: rgba(201, 150, 58, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 0.9rem;
}

.qi-contact p {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.85);
  /* direction: ltr;
        text-align: left; */
}

.qi-contact span {
  display: block;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 2px;
  /* direction: ltr;
        text-align: right; */
}

/* Success overlay */
.quote-success {
  display: none;
  text-align: center;
  padding: 60px 20px;
}

.quote-success.show {
  display: block;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 2rem;
  color: var(--navy);
}

.success-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}

.success-text {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 380px;
  margin: 0 auto 28px;
  line-height: 1.8;
}

/* Progress bar */
.form-progress {
  display: flex;
  gap: 6px;
  margin-bottom: 28px;
}

.fp-step {
  flex: 1;
  height: 4px;
  border-radius: 2px;
  background: var(--border);
  transition: background 0.3s;
}

.fp-step.done {
  background: var(--gold);
}

.fp-step.active {
  background: var(--navy);
}

/* Multi-step wizard */
.quote-step {
  display: none;
  animation: quoteStepIn 0.35s ease;
}

.quote-step.active {
  display: block;
}

@keyframes quoteStepIn {
  from {
    opacity: 0;
    transform: translateX(16px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.quote-step-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.quote-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--navy);
  cursor: pointer;
  transition:
    border-color 0.2s,
    color 0.2s,
    background 0.2s;
}

.quote-back-btn:hover {
  border-color: var(--navy);
  background: var(--off-white);
}

.quote-back-btn i {
  color: var(--gold);
  font-size: 0.8rem;
}

.quote-next-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border: none;
  border-radius: 8px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.92rem;
  color: var(--white);
  cursor: pointer;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  margin-right: auto;
}

.quote-next-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(10, 22, 40, 0.2);
}

.quote-next-btn i {
  color: var(--gold-light);
  font-size: 0.8rem;
}

.quote-step-nav .quote-submit-btn {
  width: auto;
  margin-right: auto;
  padding: 8px 20px;
  font-size: 0.92rem;
}

.quote-step-indicator {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  white-space: nowrap;
}

.quote-step-indicator span {
  color: var(--gold);
}

.qi-step.active-step .qi-step-num {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

.qi-step.active-step .qi-step-text strong {
  color: var(--gold-light);
}

/* Responsive */
@media (max-width: 767px) {
  .svc-type-grid {
    grid-template-columns: 1fr 1fr;
  }

  .quote-form-card {
    padding: 24px 18px;
  }

  .quote-info-card {
    position: static;
    margin-top: 32px;
  }

  .quote-step-nav {
    flex-wrap: wrap;
  }

  .quote-step-indicator {
    order: -1;
    width: 100%;
    text-align: center;
    margin-bottom: 4px;
  }

  .quote-next-btn,
  .quote-step-nav .quote-submit-btn {
    width: 100%;
    justify-content: center;
  }

  .quote-back-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .svc-type-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Contact Page (matches quote.html) ─────── */
#contact-section {
  padding: 80px 0 60px;
  background: var(--off-white);
}

#map-section {
  padding: 0 0 100px;
  background: var(--off-white);
}

.quote-form-card {
  background: var(--white);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 40px rgba(10, 22, 40, 0.07);
  border: 1px solid var(--border);
}

.quote-form-label {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text-dark);
  margin-bottom: 8px;
  display: block;
}

.quote-form-label span {
  color: var(--gold);
}

.quote-input,
.quote-select,
.quote-textarea {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--off-white);
  transition:
    border-color 0.25s,
    box-shadow 0.25s;
  outline: none;
  /* direction: ltr; */
}

.quote-input:focus,
.quote-select:focus,
.quote-textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 150, 58, 0.12);
  background: var(--white);
}

.quote-textarea {
  resize: vertical;
  min-height: 140px;
}

.quote-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%235a6b7e' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left 16px center;
  padding-left: 40px;
}

.form-group {
  margin-bottom: 20px;
}

.quote-submit-btn {
  width: 100%;
  padding: 15px 24px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  border: none;
  border-radius: 8px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  color: var(--white);
  cursor: pointer;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  letter-spacing: 0.03em;
}

.quote-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 150, 58, 0.35);
}

.form-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 14px;
}

.form-note i {
  color: var(--gold);
  margin-left: 5px;
}

.quote-info-card {
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: 16px;
  padding: 36px 28px;
  color: var(--white);
  /* position: sticky;
  top: 100px; */
}

.qi-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-light);
  font-weight: 700;
  margin-bottom: 8px;
}

.qi-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.5;
}

.qi-contact {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.qi-contact-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 8px;
  background: rgba(201, 150, 58, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 0.9rem;
}

.qi-contact p {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.85);
  /* direction: ltr;
        text-align: left; */
}

.qi-contact a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.2s;
}

.qi-contact a:hover {
  color: var(--gold-light);
}

.qi-contact span {
  display: block;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 2px;
  /* direction: ltr;
        text-align: right; */
}

.qi-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin: 24px 0;
}

.contact-success {
  display: none;
  text-align: center;
  padding: 60px 20px;
}

.contact-success.show {
  display: block;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 2rem;
  color: var(--navy);
}

.success-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}

.success-text {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 380px;
  margin: 0 auto 28px;
  line-height: 1.8;
}

.contact-form-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}

.contact-form-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.7;
}

.contact-form-desc a {
  color: var(--gold);
  font-weight: 700;
}

/* ── Map Section ───────────────────────────── */
.map-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0 0 60px;
}

.map-wrapper {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 40px rgba(10, 22, 40, 0.07);
  border: 1px solid var(--border);
  background: var(--white);
}

#contactMap {
  height: 500px;
  width: 100%;
  z-index: 1;
  font-family: var(--font-body);
}

.map-locations-panel {
  background: var(--white);
  border-radius: 16px;
  border: 1px solid var(--border);
  padding: 28px 24px;
  box-shadow: 0 4px 40px rgba(10, 22, 40, 0.07);
  height: 100%;
}

.map-locations-panel h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}

.map-locations-panel > p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 18px;
  line-height: 1.7;
}

.map-filter-btns {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.map-filter-btn {
  padding: 8px 20px;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.25s;
}

.map-filter-btn:hover,
.map-filter-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.map-filter-btn.active {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
}

.loc-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px;
  border-radius: 12px;
  border: 2px solid var(--border);
  background: var(--off-white);
  cursor: pointer;
  transition:
    border-color 0.25s,
    box-shadow 0.25s,
    transform 0.2s;
  margin-bottom: 10px;
}

.loc-card:last-child {
  margin-bottom: 0;
}

.loc-card:hover {
  border-color: var(--gold);
  transform: translateX(-3px);
  box-shadow: 0 6px 20px rgba(201, 150, 58, 0.12);
}

.loc-card.active {
  border-color: var(--gold);
  background: linear-gradient(135deg, #fdf8ee 0%, #fff 100%);
  box-shadow: 0 6px 24px rgba(201, 150, 58, 0.15);
}

.loc-card-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--gold-light);
  transition: background 0.25s;
}

.loc-card.active .loc-card-icon {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--white);
}

.loc-card-body strong {
  display: block;
  font-size: 0.88rem;
  color: var(--text-dark);
  margin-bottom: 3px;
}

.loc-card-body span {
  display: block;
  font-size: 0.72rem;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 3px;
}

.loc-card-body p {
  font-size: 0.76rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

/* Leaflet fixes — prevent global style conflicts */
.leaflet-container {
  font-family: var(--font-body);
}

.leaflet-container img {
  max-width: none !important;
  height: auto;
  display: inline;
}

.leaflet-container a {
  color: var(--navy);
}

.custom-marker {
  background: transparent !important;
  border: none !important;
}

.leaflet-popup-content-wrapper {
  border-radius: 10px;
  /* direction: ltr;
        text-align: right; */
}

.leaflet-popup-content {
  margin: 14px 16px;
  line-height: 1.6;
  font-family: var(--font-body);
}

.popup-title {
  font-weight: 800;
  color: var(--navy);
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.popup-type {
  font-size: 0.72rem;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 6px;
}

.popup-addr {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin: 0;
}

@media (max-width: 991px) {
  .map-locations-panel {
    margin-bottom: 20px;
  }

  #contactMap {
    height: 380px;
  }

  .quote-info-card {
    position: static;
    margin-top: 32px;
  }
}

@media (max-width: 767px) {
  .quote-form-card {
    padding: 24px 18px;
  }

  #contactMap {
    height: 300px;
  }
}

/* ── Media Center Specific ──────────────────── */
#media-section {
  padding: 80px 0 100px;
  background: var(--off-white);
}

/* Filter Bar */
.media-filter-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.mf-btn {
  padding: 8px 20px;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.25s;
}

.mf-btn:hover,
.mf-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.mf-btn.active {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
}

/* Featured Article */
.media-featured {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 32px rgba(10, 22, 40, 0.08);
  margin-bottom: 40px;
  border: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.mf-img {
  position: relative;
  overflow: hidden;
  min-height: 340px;
}

.mf-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.media-featured:hover .mf-img img {
  transform: scale(1.04);
}

.mf-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.mf-body {
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mf-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.mf-tag {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: rgba(201, 150, 58, 0.1);
  padding: 4px 12px;
  border-radius: 50px;
}

.mf-date {
  font-size: 0.78rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.mf-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.45;
  margin-bottom: 14px;
}

.mf-excerpt {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 24px;
}

.mf-read-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--navy);
  transition:
    gap 0.25s,
    color 0.25s;
}

.mf-read-btn i {
  color: var(--gold);
  font-size: 0.8rem;
  transition: transform 0.25s;
}

.mf-read-btn:hover {
  color: var(--gold);
  gap: 14px;
}

.mf-read-btn:hover i {
  transform: translateX(-4px);
}

/* Article Cards Grid */
.media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 48px;
}

.media-card {
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}

.media-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(10, 22, 40, 0.1);
}

.mc-img {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.mc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.media-card:hover .mc-img img {
  transform: scale(1.06);
}

.mc-cat {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: var(--navy);
  color: var(--gold-light);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
}

.mc-body {
  padding: 22px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.mc-date {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.mc-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.55;
  margin-bottom: 10px;
  flex: 1;
}

.mc-excerpt {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 18px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.mc-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.mc-read-more {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}

.mc-read-more:hover {
  gap: 10px;
}

.mc-read-time {
  font-size: 0.75rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Load more */
.load-more-wrap {
  text-align: center;
  margin-top: 12px;
}

/* Sidebar */
/* .media-sidebar {
  position: sticky;
  top: 100px;
} */

.sidebar-widget {
  background: var(--white);
  border-radius: 14px;
  padding: 24px;
  border: 1px solid var(--border);
  margin-bottom: 24px;
}

.sw-title {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}

.sw-search {
  position: relative;
}

.sw-search input {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 10px 16px 10px 42px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-dark);
  background: var(--off-white);
  outline: none;
  transition: border-color 0.25s;
}

.sw-search input:focus {
  border-color: var(--gold);
}

.sw-search i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 0.85rem;
}

.sw-cat-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sw-cat-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: color 0.2s;
}

.sw-cat-list li:last-child {
  border-bottom: none;
}

.sw-cat-list li:hover .sw-cat-name {
  color: var(--gold);
}

.sw-cat-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}

.sw-cat-name i {
  color: var(--gold);
  font-size: 0.75rem;
}

.sw-cat-count {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-muted);
  padding: 2px 10px;
}

.sw-recent-item {
  display: flex;
  gap: 14px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

a.sw-recent-item {
  color: inherit;
  text-decoration: none;
}

a.mf-img {
  display: block;
  color: inherit;
}

.sw-recent-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.sw-recent-img {
  width: 64px;
  height: 64px;
  min-width: 64px;
  border-radius: 8px;
  overflow: hidden;
}

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

.sw-recent-title {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.5;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  cursor: pointer;
  transition: color 0.2s;
}

.sw-recent-title:hover {
  color: var(--gold);
}

.sw-recent-date {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* Newsletter box */
.sw-newsletter {
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: 14px;
  padding: 24px;
  color: var(--white);
}

.sw-newsletter .sw-title {
  color: var(--gold-light);
  border-color: var(--gold);
}

.sw-newsletter p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 16px;
}

.sw-nl-input {
  width: 100%;
  border: 1.5px solid rgba(201, 150, 58, 0.35);
  border-radius: 8px;
  padding: 10px 14px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  outline: none;
  margin-bottom: 10px;
  transition: border-color 0.25s;
}

.sw-nl-input:focus {
  border-color: var(--gold);
}

.sw-nl-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.sw-nl-btn {
  width: 100%;
  padding: 10px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  border: none;
  border-radius: 8px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--white);
  cursor: pointer;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.sw-nl-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(201, 150, 58, 0.35);
}

/* Pagination */
.media-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.mp-btn {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 1.5px solid var(--border);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.25s;
  font-family: var(--font-body);
}

.mp-btn:hover,
.mp-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.mp-btn.active {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  border-color: var(--gold);
  color: var(--white);
}

/* Responsive */
@media (max-width: 1199px) {
  .media-featured {
    grid-template-columns: 1fr;
  }
  .mf-img {
    min-height: 240px;
  }
  .mf-body {
    padding: 28px 24px;
  }
  .media-sidebar {
    position: static;
  }
  .media-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .media-grid {
    grid-template-columns: 1fr;
  }
  .mf-title {
    font-size: 1.2rem;
  }
}

/* ── Media Details ─────────────────────────── */
#media-detail-section {
  padding: 80px 0 100px;
  background: var(--off-white);
}

.md-article {
  background: var(--white);
  border-radius: 16px;
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: 0 4px 32px rgba(10, 22, 40, 0.06);
}

.md-featured-img {
  position: relative;
  overflow: hidden;
  max-height: 460px;
}

.md-featured-img img {
  width: 100%;
  height: 460px;
  object-fit: cover;
}

.md-featured-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.md-content {
  padding: 40px 44px 44px;
}

.md-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--border);
}

.md-tag {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: rgba(201, 150, 58, 0.1);
  padding: 4px 12px;
  border-radius: 50px;
}

.md-meta-item {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 7px;
}

.md-meta-item i {
  color: var(--gold);
  font-size: 0.78rem;
}

.md-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.5;
  margin-bottom: 28px;
}

.md-body {
  font-size: 0.95rem;
  color: var(--text-dark);
  line-height: 2;
}

.md-body p {
  margin-bottom: 20px;
  color: var(--text-muted);
}

.md-body h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy);
  margin: 32px 0 14px;
  padding-right: 14px;
  border-right: 3px solid var(--gold);
}

.md-body ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.md-body ul li {
  position: relative;
  padding: 8px 22px 8px 0;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.8;
}

.md-body ul li::before {
  content: "";
  position: absolute;
  right: 0;
  top: 16px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.md-quote {
  background: linear-gradient(
    135deg,
    rgba(10, 22, 40, 0.03) 0%,
    rgba(201, 150, 58, 0.06) 100%
  );
  border-right: 4px solid var(--gold);
  border-radius: 0 2px 2px 0;
  padding: 24px 28px;
  margin: 28px 0;
}

.md-quote p {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.85;
  margin-bottom: 10px !important;
  font-style: italic;
}

.md-quote cite {
  font-size: 0.82rem;
  color: var(--gold);
  font-weight: 700;
  font-style: normal;
}

.md-footer-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.md-tags {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.md-tags-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--navy);
}

.md-tag-pill {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--off-white);
  border: 1px solid var(--border);
  padding: 5px 14px;
  border-radius: 50px;
  transition: all 0.2s;
}

.md-tag-pill:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.md-share {
  display: flex;
  align-items: center;
  gap: 10px;
}

.md-share-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--navy);
}

.md-share-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1.5px solid var(--border);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: all 0.25s;
}

.md-share-btn:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--gold-light);
}

.md-back-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--navy);
  margin-top: 32px;
  transition:
    gap 0.25s,
    color 0.25s;
}

.md-back-link i {
  color: var(--gold);
  font-size: 0.8rem;
  transition: transform 0.25s;
}

.md-back-link:hover {
  color: var(--gold);
  gap: 14px;
}

.md-back-link:hover i {
  transform: translateX(4px);
}

/* Related */
.md-related {
  margin-top: 48px;
}

.md-related-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.media-card {
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}

.media-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(10, 22, 40, 0.1);
}

.mc-img {
  position: relative;
  overflow: hidden;
  height: 180px;
}

.mc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.media-card:hover .mc-img img {
  transform: scale(1.06);
}

.mc-cat {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: var(--navy);
  color: var(--gold-light);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
}

.mc-body {
  padding: 20px 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.mc-date {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.mc-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.55;
  margin-bottom: 14px;
  flex: 1;
}

.mc-read-more {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}

.mc-read-more:hover {
  gap: 10px;
}

/* Sidebar — shared with media.html */
/* .media-sidebar {
  position: sticky;
  top: 100px;
} */

.sidebar-widget {
  background: var(--white);
  border-radius: 14px;
  padding: 24px;
  border: 1px solid var(--border);
  margin-bottom: 24px;
}

.sw-title {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}

.sw-cat-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sw-cat-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: color 0.2s;
}

.sw-cat-list li:last-child {
  border-bottom: none;
}

.sw-cat-list li:hover .sw-cat-name {
  color: var(--gold);
}

.sw-cat-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}

.sw-cat-name i {
  color: var(--gold);
  font-size: 0.75rem;
}

.sw-cat-count {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-muted);
  padding: 2px 10px;
}

.sw-recent-item {
  display: flex;
  gap: 14px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

a.sw-recent-item {
  color: inherit;
  text-decoration: none;
}

.sw-recent-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.sw-recent-img {
  width: 64px;
  height: 64px;
  min-width: 64px;
  border-radius: 8px;
  overflow: hidden;
}

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

.sw-recent-title {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.5;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  cursor: pointer;
  transition: color 0.2s;
}

.sw-recent-title:hover {
  color: var(--gold);
}

.sw-recent-date {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.sw-cta {
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: 14px;
  padding: 24px;
  color: var(--white);
  text-align: center;
}

.sw-cta .sw-title {
  color: var(--gold-light);
  border-color: var(--gold);
}

.sw-cta p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 18px;
}

.sw-cta-btn {
  display: inline-block;
  padding: 10px 24px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  border-radius: 8px;
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--white);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.sw-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(201, 150, 58, 0.35);
  color: var(--white);
}

@media (max-width: 1199px) {
  .media-sidebar {
    position: static;
  }
  .media-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .md-content {
    padding: 28px 22px 32px;
  }
  .md-title {
    font-size: 1.35rem;
  }
  .md-featured-img img {
    height: 280px;
  }
  .media-grid {
    grid-template-columns: 1fr;
  }
  .md-footer-bar {
    flex-direction: column;
    align-items: flex-start;
  }
}
