:root {
  --void: #060b13;
  /* Deepest dark space background */
  --deep: #0b1528;
  /* Rich dark navy */
  --surface: #112038;
  /* Primary container backdrop */
  --surface-light: #182d4e;
  /* Hover, active highlight */
  --elevated: #213c66;
  /* High-contrast element borders */
  --primary-blue: #012b63;
  /* Core Royal Blue */
  --accent-orange: #fd5b02;
  /* Vibrant Highlight Orange */
  --accent-orange-bright: #ff7629;
  --white: #ffffff;
  /* Clean text highlights */
  --muted: #a2b4cd;
  /* Highly readable silver-blue slate text */
  --gray: #627896;
  /* Secondary structures */
  --font-serif: "Playfair Display", serif;
  --font-sans: "Plus Jakarta Sans", sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html,
body {
  font-family: var(--font-sans);
  background-color: var(--void);
  color: var(--white);
  height: 100%;
  overflow: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Vibrant ambient background */
.ambient-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(circle at 80% 20%, rgba(1, 43, 99, 0.25) 0%, transparent 50%), radial-gradient(circle at 20% 80%, rgba(253, 91, 2, 0.1) 0%, transparent 60%);
}

.gold-mesh {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 24px 24px;
}

.gold-orb {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 2;
  opacity: 0.15;
}

.gold-orb-1 {
  width: 600px;
  height: 600px;
  background: var(--primary-blue);
  top: -15%;
  right: -10%;
  filter: blur(140px);
  animation: orbFloat 25s infinite ease-in-out;
}

.gold-orb-2 {
  width: 450px;
  height: 450px;
  background: var(--accent-orange);
  bottom: -5%;
  left: -8%;
  filter: blur(120px);
  animation: orbFloat 20s infinite ease-in-out reverse;
}

@keyframes orbFloat {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(-40px, 50px) scale(1.15);
  }
}

/* Slide Scroll Container & Responsiveness */
.slide-scroll-container {
  scrollbar-width: none;
  -ms-overflow-style: none;
  position: absolute;
  inset: 0;
  overflow-y: auto;
  height: 100%;
  width: 100%;
  padding-top: 110px;
  /* Default for mobile/tablet */
  padding-bottom: 90px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

@media (min-width: 1024px) {
  .slide-scroll-container {
    /* padding-top: 140px; */
    /* padding-bottom: 120px; */
    justify-content: center;
    /* Beautiful centering on desktop */
  }
}

.slide-scroll-container::-webkit-scrollbar {
  display: none;
}

/* Accelerated and ultra-snappy reveal animations */
.slide-content-hidden {
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.swiper-slide-active .slide-content-hidden {
  opacity: 1;
  transform: translateY(0);
}

/* Super-compressed delays for swift stagger effect */
.delay-1 {
  transition-delay: 40ms;
}

.delay-2 {
  transition-delay: 80ms;
}

.delay-3 {
  transition-delay: 120ms;
}

.delay-4 {
  transition-delay: 160ms;
}

.delay-5 {
  transition-delay: 200ms;
}

/* Pagination dots */
.swiper-pagination-custom .swiper-pagination-bullet {
  background: var(--gray) !important;
  width: 5px !important;
  height: 24px !important;
  border-radius: 4px !important;
  margin: 6px 0 !important;
  opacity: 0.6 !important;
  transition: all 0.25s var(--ease) !important;
}

.swiper-pagination-custom .swiper-pagination-bullet-active {
  background: var(--accent-orange) !important;
  height: 48px !important;
  opacity: 1 !important;
  box-shadow: 0 0 16px rgba(253, 91, 2, 0.6);
}

/* Header Layout */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  padding: 16px 20px;
  background: linear-gradient(to bottom, rgba(6, 11, 19, 0.95), rgba(6, 11, 19, 0));
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

@media (min-width: 1024px) {
  header {
    padding: 24px 64px;
    background: transparent;
    backdrop-filter: none;
    border-bottom: none;
  }
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  cursor: pointer;
}

.logo-box {
  width: 44px;
  height: 44px;
  border: 2px solid var(--accent-orange);
  background: linear-gradient(135deg, var(--primary-blue), var(--surface-light));
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: transform 0.3s var(--ease);
  box-shadow: 0 0 15px rgba(253, 91, 2, 0.2);
}

.brand-logo:hover .logo-box {
  transform: rotate(45deg) scale(1.05);
  box-shadow: 0 0 25px rgba(253, 91, 2, 0.4);
}

.logo-letter {
  color: var(--white);
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: 1.4rem;
  transition: transform 0.3s var(--ease);
}

.brand-logo:hover .logo-letter {
  transform: rotate(-45deg);
}

.brand-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--white);
}

@media (min-width: 1024px) {
  .brand-title {
    font-size: 1.4rem;
  }
}

.brand-subtitle {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--accent-orange);
  font-weight: 800;
  margin-top: 2px;
}

.hamburger-btn {
  width: 44px;
  height: 44px;
  border: 1px solid var(--elevated);
  background: var(--surface);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s var(--ease);
  z-index: 100;
}

.hamburger-btn:hover {
  border-color: var(--accent-orange);
  color: var(--accent-orange);
  box-shadow: 0 0 15px rgba(253, 91, 2, 0.2);
}

/* Left Side Navigation (Desktop only) */
.left-vertical-menu {
  position: fixed;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 30;
  flex-direction: column;
  gap: 14px;
}

@media (min-width: 1200px) {
  .left-vertical-menu {
    display: flex;
    left: 32px;
  }
}

.left-nav-item {
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: all 0.3s var(--ease);
  width: 40px;
  height: 40px;
}

.nav-icon-container {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  border: 1px solid var(--elevated);
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--muted);
  transition: all 0.25s var(--ease);
  position: relative;
  z-index: 2;
}

.left-nav-item:hover .nav-icon-container,
.left-nav-item.active .nav-icon-container {
  background: var(--accent-orange);
  color: var(--white);
  border-color: var(--accent-orange);
  box-shadow: 0 0 20px rgba(253, 91, 2, 0.35);
}

/* Hover detail panel on left nav */
.nav-detail-panel {
  position: absolute;
  left: 56px;
  top: 0;
  background: var(--deep);
  border: 1px solid var(--elevated);
  border-radius: 8px;
  padding: 16px;
  width: 280px;
  opacity: 0;
  transform: translateX(-15px) scale(0.95);
  pointer-events: none;
  transition: all 0.25s var(--ease);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(1, 43, 99, 0.2);
  z-index: 1;
}

.left-nav-item:hover .nav-detail-panel {
  opacity: 1;
  transform: translateX(0) scale(1);
  pointer-events: auto;
}

.nav-detail-title {
  font-family: var(--font-serif);
  font-size: 15px;
  color: var(--white);
  margin-bottom: 6px;
  font-weight: 700;
}

.nav-detail-desc {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.5;
}

.nav-detail-tag {
  display: inline-block;
  margin-top: 10px;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-orange);
  font-weight: 700;
  border: 1px solid rgba(253, 91, 2, 0.3);
  padding: 2px 6px;
  border-radius: 4px;
}

.right-pagination-container {
  position: fixed;
  right: 10px;
  top: 50%;
  z-index: 30;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (min-width: 1200px) {
  .right-pagination-container {
    right: 32px;
  }
}

/* Mobile Slide Drawer Menu */
.mobile-menu-drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  max-width: 380px;
  background: var(--void);
  border-left: 1px solid var(--elevated);
  z-index: 40;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.6);
}

.drawer-active {
  transform: translateX(0);
}

.drawer-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 60px;
}

.drawer-category {
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--gray);
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 4px;
}

.drawer-anchor {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--white);
  text-decoration: none;
  transition: all 0.25s var(--ease);
  position: relative;
  padding-left: 20px;
  font-weight: 600;
}

.drawer-anchor::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 2px;
  background: var(--accent-orange);
  transition: width 0.25s var(--ease);
}

.drawer-anchor:hover {
  color: var(--accent-orange);
  padding-left: 30px;
}

.drawer-anchor:hover::before {
  width: 18px;
}

.drawer-anchor.highlighted {
  color: var(--accent-orange);
}

.drawer-footer {
  border-top: 1px solid var(--elevated);
  padding-top: 24px;
}

.drawer-footer-title {
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--gray);
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 8px;
}

.drawer-footer-address {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 16px;
  line-height: 1.5;
}

.drawer-socials {
  display: flex;
  gap: 16px;
}

.drawer-social-icon {
  color: var(--muted);
  font-size: 1.15rem;
  transition: all 0.25s;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--elevated);
  display: flex;
  align-items: center;
  justify-content: center;
}

.drawer-social-icon:hover {
  color: var(--accent-orange);
  border-color: var(--accent-orange);
  transform: translateY(-2px);
  background: rgba(253, 91, 2, 0.05);
}

/* Swiper Foundation */
.mainSwiper {
  width: 100vw;
  height: 100vh;
  z-index: 20;
}

.swiper-slide {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Master Content Grid */
.slide-split-grid {
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding-left: 40px;
  padding-right: 25px;
  gap: 32px;
  align-items: center;
}

@media (min-width: 1024px) {
  .slide-split-grid {
    grid-template-columns: 1fr 1.1fr;
    gap: 56px;
    padding-right: 0px;
    padding-left: 0px;
  }
}

/* ============================================
               REDEFINED ACCENT CARDS — HIGH CONTRAST
               ============================================ */
/* Card Type A: Solid orange top indicator, high-contrast dark navy slate */
.card-a {
  background: var(--surface);
  border-top: 4px solid var(--accent-orange);
  border-radius: 6px;
  padding: 24px;
  transition: all 0.3s var(--ease);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border-left: 1px solid rgba(255, 255, 255, 0.03);
  border-right: 1px solid rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.card-a:hover {
  transform: translateY(-4px);
  background: var(--surface-light);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 20px rgba(253, 91, 2, 0.1);
}

/* Card Type B: Dashed Orange border, transparent bg, glowing orange tag */
.card-b {
  background: rgba(253, 91, 2, 0.02);
  border: 1.5px dashed rgba(253, 91, 2, 0.3);
  border-radius: 10px;
  padding: 24px;
  transition: all 0.3s var(--ease);
  position: relative;
}

.card-b:hover {
  border-color: var(--accent-orange);
  background: rgba(253, 91, 2, 0.05);
  transform: scale(1.02);
}

/* Card Type C: Deep Navy Solid Background, Orange highlights, Highly readable */
.card-c {
  background: linear-gradient(135deg, var(--primary-blue), #031c3c);
  color: var(--white);
  border-radius: 8px;
  padding: 24px;
  border: 1px solid rgba(253, 91, 2, 0.25);
  transition: all 0.3s var(--ease);
  box-shadow: 0 8px 24px rgba(1, 43, 99, 0.3);
}

.card-c:hover {
  transform: scale(1.01);
  border-color: var(--accent-orange);
  box-shadow: 0 12px 30px rgba(253, 91, 2, 0.2);
}

/* Card Type D: Sleek Left Accent border */
.card-d {
  background: var(--surface);
  border-left: 4px solid var(--accent-orange);
  border-radius: 0 8px 8px 0;
  padding: 20px 24px;
  transition: all 0.3s var(--ease);
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  border-right: 1px solid rgba(255, 255, 255, 0.03);
}

.card-d:hover {
  border-left-width: 6px;
  background: var(--surface-light);
  padding-left: 28px;
}

/* Card Type E: Double-border retro executive aesthetic */
.card-e {
  background: var(--surface);
  border: 1px solid var(--elevated);
  outline: 2px solid transparent;
  border-radius: 6px;
  padding: 20px;
  transition: all 0.3s var(--ease);
}

.card-e:hover {
  border-color: var(--accent-orange);
  background: var(--surface-light);
}

/* Card Type F: Sleek horizontal pill for features */
.card-f {
  display: flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(90deg, var(--surface), rgba(17, 32, 56, 0.2));
  border: 1px solid var(--elevated);
  border-radius: 12px;
  padding: 16px 20px;
  transition: all 0.3s var(--ease);
}

.card-f:hover {
  border-color: var(--accent-orange);
  padding-left: 26px;
  background: linear-gradient(90deg, var(--surface-light), rgba(24, 45, 78, 0.3));
}

/* Card Type G: Stat counter node */
.card-g {
  text-align: center;
  padding: 24px 16px;
  background: var(--surface);
  border: 1px solid var(--elevated);
  border-radius: 8px;
  transition: all 0.3s var(--ease);
  position: relative;
}

.card-g::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-blue), var(--accent-orange));
}

.card-g:hover {
  border-color: var(--accent-orange);
  transform: translateY(-4px);
}

/* Card Type H: Image overlay system */
.card-h {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--elevated);
  height: 140px;
  transition: all 0.3s var(--ease);
}

.card-h img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
  filter: brightness(0.65);
}

.card-h:hover {
  border-color: var(--accent-orange);
}

.card-h:hover img {
  transform: scale(1.08);
  filter: brightness(0.85);
}

.card-h-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(6, 11, 19, 0.95), transparent);
  padding: 16px;
}

/* Core Typography */
.card-icon {
  font-size: 1.4rem;
  margin-bottom: 10px;
  display: inline-block;
  color: var(--accent-orange);
}

.card-c .card-icon {
  color: var(--white);
}

.card-title {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--white);
}

.card-desc {
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--muted);
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--white), var(--accent-orange));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.stat-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted);
  margin-top: 8px;
  font-weight: 700;
}

/* Slide Content Wrappers */
.slide-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.eyebrow-line {
  height: 1px;
  width: 32px;
  background: linear-gradient(90deg, var(--accent-orange), transparent);
}

.eyebrow-line-right {
  height: 1px;
  width: 32px;
  background: linear-gradient(90deg, transparent, var(--accent-orange));
}

.eyebrow-text {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--accent-orange);
}

.slide-headline {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

@media (min-width: 640px) {
  .slide-headline {
    font-size: 2.8rem;
  }
}

@media (min-width: 1200px) {
  .slide-headline {
    font-size: 3.4rem;
  }
}

/* Highly energetic and active text shimmer (2s cycle) */
.gold-gradient-text {
  background: linear-gradient(267deg, var(--white) 0%, var(--accent-orange) 50%, #ff0000 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 2s linear infinite;
}

@keyframes shimmer {
  0% {
    background-position: 0% center;
  }

  100% {
    background-position: 200% center;
  }
}

.slide-description {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--muted);
  font-weight: 400;
  max-width: 540px;
}

.slide-actions-row {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 8px;
}

@media (min-width: 640px) {
  .slide-actions-row {
    flex-direction: row;
  }
}

/* High Visibility Buttons */
.primary-btn {
  padding: 16px 32px;
  font-size: 11px;
  border-radius: 6px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border: none;
  cursor: pointer;
  color: var(--white);
  background: var(--accent-orange);
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.25s var(--ease);
  box-shadow: 0 6px 20px rgba(253, 91, 2, 0.3);
}

.primary-btn::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: 0.4s;
}

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

.primary-btn:hover {
  background: var(--accent-orange-bright);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(253, 91, 2, 0.5);
}

.secondary-btn {
  padding: 16px 32px;
  font-size: 11px;
  border-radius: 6px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--elevated);
  color: var(--white);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.25s var(--ease);
}

.secondary-btn:hover {
  border-color: var(--accent-orange);
  background: rgba(253, 91, 2, 0.08);
  color: var(--accent-orange);
}

/* Image Orientations and Containers */
.img-landscape-wide {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--elevated);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.img-landscape-wide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.1) brightness(0.8);
  transition: transform 5s ease;
}

.swiper-slide-active .img-landscape-wide img {
  transform: scale(1.05);
}

.img-grid-squares {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.img-square-box {
  aspect-ratio: 1/1;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--elevated);
  position: relative;
  transition: all 0.3s var(--ease);
}

.img-square-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
  transition: all 0.3s var(--ease);
}

.img-square-box:hover {
  border-color: var(--accent-orange);
  z-index: 2;
}

.img-square-box:hover img {
  filter: brightness(0.95);
  transform: scale(1.06);
}

.img-portrait-tall {
  position: relative;
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
  aspect-ratio: 2/3;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--elevated);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.img-portrait-tall img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
}

.portrait-caption {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  z-index: 2;
}

.img-panorama-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.img-panoramic {
  width: 100%;
  aspect-ratio: 21/9;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--elevated);
  position: relative;
}

.img-panoramic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
}

.img-accent-square {
  width: 100px;
  height: 100px;
  border-radius: 6px;
  overflow: hidden;
  border: 1.5px solid var(--accent-orange);
  position: absolute;
  bottom: -20px;
  right: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
  z-index: 2;
}

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

.img-vertical-column {
  position: relative;
  width: 100%;
  max-width: 310px;
  margin-left: auto;
  aspect-ratio: 9/13;
  border-radius: 8px;
  overflow: hidden;
  border-left: 3px solid var(--accent-orange);
  border-top: 1px solid var(--elevated);
  border-bottom: 1px solid var(--elevated);
  border-right: 1px solid var(--elevated);
}

.img-vertical-column img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.75);
}

.img-circle-combo {
  display: flex;
  align-items: center;
  gap: 20px;
}

.img-circle {
  width: 160px;
  height: 160px;
  min-width: 160px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--accent-orange);
  box-shadow: 0 0 25px rgba(253, 91, 2, 0.2);
  position: relative;
}

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

.img-circle-badge {
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-orange);
  color: var(--white);
  font-size: 8px;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 10px;
  white-space: nowrap;
}

.img-wide-side {
  flex: 1;
  height: 130px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--elevated);
}

.img-wide-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.75);
}

.img-offset-frame {
  position: relative;
  width: 100%;
  margin-bottom: 50px;
}

.img-offset-main {
  width: 85%;
  aspect-ratio: 4/3;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--elevated);
  position: relative;
  z-index: 2;
}

.img-offset-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85);
}

.img-offset-deco {
  position: absolute;
  bottom: -20px;
  right: 0;
  width: 50%;
  aspect-ratio: 16/9;
  border-radius: 6px;
  overflow: hidden;
  border: 1.5px solid var(--accent-orange);
  z-index: 1;
}

.img-offset-deco img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}

.img-cinematic {
  width: 100%;
  aspect-ratio: 2.2/1;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  border-bottom: 3px solid var(--accent-orange);
  border-top: 1px solid var(--elevated);
  border-left: 1px solid var(--elevated);
  border-right: 1px solid var(--elevated);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.img-cinematic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.65);
}

/* Generic Visual badge on images */
.slide-visual-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: var(--primary-blue);
  color: var(--white);
  border: 1px solid var(--accent-orange);
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 800;
  z-index: 20;
  box-shadow: 0 4px 15px rgba(1, 43, 99, 0.4);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.image-overlay-warmth {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 11, 19, 0.9) 0%, rgba(6, 11, 19, 0.1) 60%);
  pointer-events: none;
  z-index: 15;
}

/* Testimonials / Quotes */
.quote-block {
  font-style: italic;
  border-left: 3px solid var(--accent-orange);
  padding: 20px 24px;
  margin-top: 6px;
  color: var(--white);
  font-size: 1.05rem;
  line-height: 1.7;
  font-family: var(--font-serif);
  background: var(--surface);
  border-radius: 0 8px 8px 0;
}

.quote-author {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent-orange);
  font-weight: 800;
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.quote-author::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--accent-orange);
}

/* Static Bottom Footer bar */
.bottom-metadata-bar {
  position: absolute;
  bottom: 30px;
  left: 20px;
  z-index: 30;
  display: flex;
  align-items: center;
  gap: 24px;
  max-width: 600px;
}

@media (min-width: 1200px) {
  .bottom-metadata-bar {
    left: 40px;
  }
}

.metadata-divider {
  display: none;
  border-left: 2px solid rgba(253, 91, 2, 0.3);
  padding-left: 20px;
  padding-top: 2px;
  padding-bottom: 2px;
}

@media (min-width: 640px) {
  .metadata-divider {
    display: block;
  }
}

.meta-eyebrow {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gray);
  font-weight: 800;
}

.meta-value {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  margin-top: 2px;
}

/* Sliding direction navigation */
.navigation-arrows-container {
  position: fixed;
  bottom: 30px;
  right: 20px;
  z-index: 30;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (min-width: 1200px) {
  .navigation-arrows-container {
    right: 40px;
  }
}

.arrow-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--elevated);
  background: var(--surface);
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s var(--ease);
}

.arrow-nav-btn:hover {
  background: var(--accent-orange);
  color: var(--white);
  border-color: var(--accent-orange);
  box-shadow: 0 0 15px rgba(253, 91, 2, 0.3);
}

.arrow-nav-btn.primary {
  background: var(--accent-orange);
  color: var(--white);
  border: none;
  box-shadow: 0 4px 15px rgba(253, 91, 2, 0.3);
}

/* Detail Modal Popup styles */
.details-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background-color: rgba(6, 11, 19, 0.96);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s var(--ease);
  backdrop-filter: blur(8px);
}

.modal-shown {
  opacity: 1;
  pointer-events: auto;
}

.modal-frame {
  background: var(--deep);
  border: 1px solid var(--accent-orange);
  border-radius: 8px;
  max-width: 700px;
  width: 100%;
  padding: 24px;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 30px rgba(253, 91, 2, 0.1);
  max-height: 90vh;
  overflow-y: auto;
}

.modal-frame::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-blue), var(--accent-orange));
}

@media (min-width: 768px) {
  .modal-frame {
    padding: 40px;
  }
}

.close-modal-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 6px;
  border: 1px solid var(--elevated);
  background: var(--surface);
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 1rem;
}

.close-modal-btn:hover {
  background: var(--accent-orange);
  color: var(--white);
  border-color: var(--accent-orange);
}

/* Interactive diagnostic widget on contact slide */
.diagnostic-card {
  background: var(--surface);
  border: 1px solid var(--elevated);
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 16px;
}

.diagnostic-option {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  cursor: pointer;
  user-select: none;
}

.diagnostic-option:last-child {
  margin-bottom: 0;
}

.custom-checkbox {
  width: 20px;
  height: 20px;
  border: 1.5px solid var(--accent-orange);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  color: transparent;
  font-size: 10px;
}

.diagnostic-option input {
  display: none;
}

.diagnostic-option input:checked+.custom-checkbox {
  background: var(--accent-orange);
  color: var(--white);
}

.progress-bar-container {
  width: 100%;
  height: 6px;
  background: var(--void);
  border-radius: 3px;
  margin-top: 16px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--primary-blue), var(--accent-orange));
  transition: width 0.3s ease;
}

/* Lead Gen Form Styling */
.audit-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-input-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-input-group label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  font-weight: 700;
}

.form-field {
  background: var(--void);
  border: 1px solid var(--elevated);
  color: var(--white);
  padding: 12px 16px;
  border-radius: 6px;
  font-size: 13px;
  font-family: var(--font-sans);
  outline: none;
  transition: border-color 0.2s;
}

.form-field:focus {
  border-color: var(--accent-orange);
}


/* POWERED BY */

.powered-by {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  font-size: 10px;
  margin-top: 50px;
  position: absolute;
  bottom: 5px;
  left: 0px;
  right: 0px;
}

.powered-by-relative {
  position: relative;
}

.powered-by>img {
  height: 18px;
}