/* ==========================================================================
   CRISP TV MEDIA - BRAND MOOD BOARD & HERO STYLESHEET
   100% Visual Fidelity to Reference Mood Board Design
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS Custom Properties / Design Tokens
   -------------------------------------------------------------------------- */
:root {
  --color-bg-dark: #000000;
  --color-bg-canvas: #121212;
  --color-surface-card: #000000;
  
  --color-white: #ffffff;
  --color-amber: #DF8A30;
  --color-champagne: #F5C160;
  --color-text-muted: #95959c;
  --color-text-dim: #636366;
  --color-line: #242426;

  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-script: 'Playfair Display', serif;
  --font-mono: 'Space Mono', 'Space Grotesk', monospace;
  --font-heading: 'Montserrat', sans-serif;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-board: 0 40px 100px rgba(0, 0, 0, 0.95), 0 0 1px rgba(255, 255, 255, 0.08);
}

/* --------------------------------------------------------------------------
   2. Global Reset & Base
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  background-color: #7b756d;
  color: var(--color-white);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  min-height: 100vh;
  background: #000000;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

/* --------------------------------------------------------------------------
   3. Header & Navigation
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  background: #ffffff;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding: 0.85rem 2rem;
  transition: var(--transition-fast);
}

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

.brand-logo {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  color: #000000;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

.nav-link {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #555555;
  text-decoration: none;
  position: relative;
  padding: 0.35rem 0;
  transition: color var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
  color: #000000;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #FF2A2A;
}

.nav-btn {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.55rem 1.25rem;
  background: #000000;
  color: #ffffff;
  border-radius: 30px;
  transition: all var(--transition-smooth);
}

.nav-btn:hover {
  transform: translateY(-1px);
  background: #333333;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #000000;
}
.mobile-swipe-indicator {
  display: none;
}

/* --------------------------------------------------------------------------
   4. Main Wrapper & Presentation Board
   -------------------------------------------------------------------------- */
.main-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 0 0 4rem 0;
}

.moodboard-hero {
  width: 100%;
  max-width: 100%;
  margin: 0;
}

/* Presentation Frame: Full screen layout */
.board-frame-outer {
  background: #000000;
  padding: 6rem 5%;
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.board-container {
  display: grid;
  grid-template-columns: 0.8fr 1.4fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
  max-width: 1800px;
  margin: 0 auto;
}

/* --------------------------------------------------------------------------
   5. Left Spec & Typography Panel (Exact Match)
   -------------------------------------------------------------------------- */
.spec-panel {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* Top URL */
.spec-top-url a {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  color: #7b7b80;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
}

/* Brand Mood Board Title */
.brand-title-group {
  position: relative;
  margin-top: 0.2rem;
  margin-bottom: 0.4rem;
}

.script-accent {
  display: block;
  font-family: var(--font-script);
  font-size: 3.5rem;
  line-height: 1.1;
  color: #ffffff;
  letter-spacing: 0.02em;
  font-weight: 600;
  font-style: italic;
  margin-bottom: 0.5rem;
}

.text-white {
  color: #ffffff;
}

.text-red {
  color: #FF2A2A; /* A bright, crisp red */
}

.bold-heading {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: 0.01em;
  color: var(--color-white);
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Project Name */
.spec-section {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.spec-label {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-white);
}

.spec-body-text {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  line-height: 1.6;
  letter-spacing: 0.01em;
  color: #a0a0a6;
  text-align: left;
}

/* --------------------------------------------------------------------------
   Hero Neomorphic Buttons
   -------------------------------------------------------------------------- */
.hero-actions {
  display: flex;
  flex-wrap: nowrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.pro-btn {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #FF2A2A;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 4px;
  background: #ffffff;
  border: 1px solid #ffffff;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.pro-btn:hover {
  background: transparent;
  color: #ffffff;
  transform: translateY(-2px);
}

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

/* Color Palette & Specimen */
.spec-mid-row {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 1.5rem;
  align-items: center;
  margin-top: 0.2rem;
  margin-bottom: 0.2rem;
}

.spec-color-block {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.swatches-row {
  display: flex;
  gap: 0.5rem;
}

.swatch-item {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  align-items: center;
  cursor: pointer;
}

.swatch-box {
  width: 40px;
  height: 26px;
  border-radius: 1px;
  transition: transform var(--transition-fast);
}

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

.color-white {
  background-color: #ffffff;
}

.color-amber {
  background-color: #DF8A30;
}

.color-champagne {
  background-color: #F5C160;
}

.swatch-code {
  font-family: var(--font-mono);
  font-size: 0.52rem;
  letter-spacing: 0.04em;
  color: #6c6c70;
  font-weight: 700;
}

/* Typography Character Box */
.spec-typo-block {
  display: flex;
  flex-direction: column;
}

.typo-specimen {
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
  padding: 0.4rem 0.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.typo-line {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  color: #b0b0b5;
  font-weight: 700;
  white-space: nowrap;
}

/* Notes & Metadata */
.spec-bottom-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1.2rem;
  align-items: stretch;
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
  padding: 0.75rem 0;
}

.notes-col {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.spec-label-sub {
  font-family: var(--font-heading);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-white);
}

.spec-mini-text {
  font-family: var(--font-sans);
  font-size: 0.54rem;
  line-height: 1.45;
  letter-spacing: 0.02em;
  color: #727278;
  text-transform: uppercase;
}

.notes-divider {
  width: 1px;
  background-color: var(--color-line);
  height: 100%;
}

/* Footer Credits */
.spec-footer-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.1rem;
}

.author-name {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-white);
}

.tags-group {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.tag-item {
  font-family: var(--font-heading);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #727278;
}

.tag-bullet {
  display: inline-block;
  width: 3px;
  height: 9px;
  background-color: var(--color-amber);
  border-radius: 1px;
}

/* --------------------------------------------------------------------------
   6. Right Column: Exact Geometric Mosaic
   -------------------------------------------------------------------------- */
.mosaic-panel {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mosaic-svg {
  width: 100%;
  height: auto;
  aspect-ratio: 740 / 440;
  overflow: visible;
  display: block;
}

.mosaic-item {
  cursor: pointer;
  transition: transform var(--transition-smooth);
}

.mosaic-img {
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: center;
}

.mosaic-item:hover .mosaic-img {
  filter: brightness(1.08) contrast(1.04);
  transform: scale(1.03);
}

/* --------------------------------------------------------------------------
   7. Features Highlight Section
   -------------------------------------------------------------------------- */
.features-bar {
  max-width: 1440px;
  margin: 3.5rem auto 1rem;
  width: 100%;
  padding: 0 2rem;
}

.features-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

::selection {
  background: #FF2A2A;
  color: #ffffff;
}

.feature-card {
  background: #000000;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.6rem;
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  transition: all var(--transition-smooth);
}

.feature-card:hover {
  transform: translateY(-3px);
  border-color: rgba(223, 138, 48, 0.4);
}

.feature-icon {
  font-size: 1.8rem;
  background: rgba(223, 138, 48, 0.12);
  border: 1px solid rgba(223, 138, 48, 0.25);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  flex-shrink: 0;
}

.feature-info h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 0.3rem;
}

.feature-info p {
  font-size: 0.78rem;
  line-height: 1.5;
  color: #88888f;
}

/* --------------------------------------------------------------------------
   8. Lightbox Modal
   -------------------------------------------------------------------------- */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-smooth);
}

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

.lightbox-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.94);
  backdrop-filter: blur(12px);
}

.lightbox-content {
  position: relative;
  z-index: 2;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-close {
  position: absolute;
  top: -45px;
  right: 0;
  background: none;
  border: none;
  color: var(--color-white);
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
}

.lightbox-close:hover {
  color: var(--color-amber);
}

.lightbox-image {
  max-width: 85vw;
  max-height: 80vh;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
  object-fit: contain;
}

.lightbox-caption {
  margin-top: 1rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--color-champagne);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   NEW DASHBOARD HERO SECTION
   -------------------------------------------------------------------------- */
.dh-section {
  width: 100%;
  display: flex;
}

.dh-container {
  width: 100%;
  min-height: calc(100vh - 75px);
  position: relative;
  display: grid;
  grid-template-columns: 55% 45%;
  overflow: hidden;
}

.dh-container::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 45%;
  height: 100%;
  background-color: #ffffff;
  z-index: 0;
}

/* Slider System */
.dh-slider-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.dh-slide {
  position: absolute;
  transition: all 0.8s cubic-bezier(0.77, 0, 0.175, 1);
  overflow: hidden;
  border-radius: 16px; /* default for thumbnails */
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  background: #000;
}

.dh-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 0.8s ease;
}

/* Thumbnail Positioning (Right Side) */
/* Coordinates calculated to align with the .dh-cards-row placeholder */
.dh-slide.thumb-1 {
  left: var(--thumb-left-base, calc(55% + 4rem)); top: var(--thumb-top, 400px); width: 140px; height: 190px;
}
.dh-slide.thumb-2 {
  left: calc(var(--thumb-left-base, calc(55% + 4rem)) + 156px); top: var(--thumb-top, 400px); width: 140px; height: 190px;
}
.dh-slide.thumb-3 {
  left: calc(var(--thumb-left-base, calc(55% + 4rem)) + 312px); top: var(--thumb-top, 400px); width: 60px; height: 190px;
}
.dh-slide.thumb-hidden {
  left: calc(var(--thumb-left-base, calc(55% + 4rem)) + 468px); top: var(--thumb-top, 400px); width: 140px; height: 190px;
  opacity: 0;
  pointer-events: none;
}

/* Active Slide (Left Side) */
.dh-slide.active {
  left: 0; top: 0; width: 55%; height: 100%;
  border-radius: 0;
  box-shadow: none;
}
.dh-slide.active img {
  filter: brightness(0.65);
}
.dh-slide.active .dh-card-overlay {
  opacity: 0;
  pointer-events: none;
}

/* UI Columns Overlay */
.dh-left, .dh-right {
  position: relative;
  z-index: 2;
  pointer-events: none; /* Let clicks pass through empty space */
  width: 100%;
  height: 100%;
}

/* Re-enable clicks on actual UI content */
.dh-left-content, .dh-left-footer, .dh-top-nav, .dh-search-bar, .dh-discover-section, .dh-mood-section {
  pointer-events: auto;
}

/* Left Column Specifics */
.dh-left {
  color: #ffffff;
}

.dh-left::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.1) 100%);
  z-index: 1;
}

.dh-left-content {
  position: relative;
  z-index: 2;
  padding: 4rem 3rem 4rem max(2rem, calc((100vw - 1360px) / 2 + 2rem));
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.dh-logo {
  position: absolute;
  top: 3rem;
  left: 4rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}

.dh-title {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}

.dh-subtitle {
  font-size: 0.95rem;
  opacity: 0.9;
  margin-bottom: 2.5rem;
  max-width: 80%;
  line-height: 1.5;
}

.dh-btn-primary {
  background-color: #FF2A2A;
  color: #ffffff;
  border: none;
  padding: 16px 40px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  width: max-content;
  transition: opacity 0.3s ease;
}

.dh-btn-primary:hover {
  opacity: 0.9;
}

.dh-left-footer {
  position: absolute;
  bottom: 3rem;
  left: max(2rem, calc((100vw - 1360px) / 2 + 2rem));
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 600;
}

.dh-slider-line {
  width: 80px;
  height: 2px;
  background-color: rgba(255,255,255,0.4);
  position: relative;
}
.dh-slider-line::after {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 30%; height: 100%;
  background-color: #ffffff;
}

.dh-slider-arrow {
  font-size: 1.5rem;
  cursor: pointer;
}

.dh-dashed-path {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

/* Right Column Specifics */
.dh-right {
  color: #000000;
  padding: 2.5rem max(2rem, calc((100vw - 1360px) / 2 + 2rem)) 2.5rem 3rem;
  display: flex;
  flex-direction: column;
}

/* Top Nav */
.dh-top-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.dh-hamburger {
  display: flex;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.dh-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #000000;
}

.dh-hamburger span:last-child {
  width: 16px;
}

.dh-nav-links {
  display: flex;
  gap: 2rem;
}

.dh-nav-links a {
  text-decoration: none;
  color: #000000;
  font-weight: 600;
  font-size: 0.85rem;
}

.dh-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  overflow: hidden;
}

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

/* Search Bar */
.dh-search-bar {
  display: flex;
  align-items: center;
  gap: 15px;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
}

.dh-search-icon {
  color: #999999;
  font-size: 1.2rem;
}

.dh-search-bar input {
  border: none;
  outline: none;
  font-family: var(--font-sans);
  font-size: 1rem;
  width: 100%;
  color: #333333;
}

.dh-search-bar input::placeholder {
  color: #b0b0b0;
}

/* Discover Section */
.dh-discover-section {
  flex: 1;
}

.dh-section-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.dh-tabs {
  display: flex;
  gap: 2rem;
  margin-bottom: 1rem;
}

.dh-tab {
  font-size: 0.9rem;
  color: #b0b0b0;
  font-weight: 600;
  cursor: pointer;
  position: relative;
}

.dh-tab.active {
  color: #000000;
}

.dh-tab.active::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 5px;
  height: 5px;
  background-color: #FF2A2A;
  border-radius: 50%;
}

/* Cards Row Placeholder */
.dh-cards-row {
  display: flex;
  gap: 1rem;
  overflow: hidden;
  margin-bottom: 1rem;
  height: 190px;
}

.dh-card {
  width: 140px;
  height: 190px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  cursor: pointer;
}

.dh-card-cutoff {
  width: 60px;
}

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

.dh-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.2rem 1rem;
  background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
  color: #ffffff;
}

.dh-card-overlay h4 {
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  line-height: 1.3;
}

.dh-card-overlay p {
  font-size: 0.65rem;
  color: #cccccc;
}

.dh-carousel-arrows {
  display: flex;
  gap: 1.5rem;
  color: #000000;
  font-size: 1.2rem;
  cursor: pointer;
  margin-bottom: 1.5rem;
}

/* Mood Section */
.dh-mood-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.dh-section-subtitle {
  font-size: 1.1rem;
  font-weight: 700;
}

.dh-show-all {
  font-size: 0.8rem;
  color: #b0b0b0;
  text-decoration: none;
  font-weight: 600;
}

.dh-category-icons {
  display: flex;
  justify-content: space-between;
}

.dh-icon-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
}

.dh-icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background-color: #fff0f0;
  color: #FF2A2A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  transition: all 0.3s ease;
}

.dh-icon-box:hover .dh-icon-circle {
  background-color: #FF2A2A;
  color: #ffffff;
}

.dh-icon-box span {
  font-size: 0.7rem;
  color: #b0b0b0;
  text-transform: uppercase;
  font-weight: 700;
}

/* --------------------------------------------------------------------------
   8. About Us Section
   -------------------------------------------------------------------------- */
.about-section {
  width: 100%;
  background-color: #050505;
  padding: 6rem 2rem;
  color: #ffffff;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

.about-top-row,
.about-bottom-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-img-col {
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
}

.about-main-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 4px;
}

.about-subhead {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: #a0a0a6;
  margin-bottom: 0.5rem;
}

.about-head {
  font-family: var(--font-heading);
  font-size: 3rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.about-desc, .skills-desc {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  line-height: 1.6;
  color: #a0a0a6;
  margin-bottom: 2.5rem;
}

.about-btn {
  display: inline-flex;
  padding: 12px 32px;
  background-color: #ffffff;
  color: #000000;
  border-radius: 30px;
  font-weight: 600;
  font-family: var(--font-sans);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.about-btn:hover {
  background-color: #e0e0e0;
}

.skills-head {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.skill-bar-group {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.skill-bar-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.skill-info {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.progress-track {
  width: 100%;
  height: 2px;
  background-color: #333333;
}

.progress-fill {
  height: 100%;
  background-color: #ffffff;
}

.about-stats-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 4rem 2rem;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat-num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
}

.stat-label {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: #a0a0a6;
}

/* --------------------------------------------------------------------------
   9. Gallery Section
   -------------------------------------------------------------------------- */
.gallery-section {
  width: 100%;
  background-color: #ffffff;
  padding: 6rem 2rem;
  color: #000000;
  text-align: center;
  overflow: hidden;
}

.gallery-container {
  max-width: 1400px;
  margin: 0 auto;
}

.gallery-header {
  margin-bottom: 2.5rem;
}

.gallery-overline {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: #666666;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.gallery-title {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.gallery-desc {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  color: #555555;
  line-height: 1.5;
}

.gallery-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 4rem;
}

.filter-pill {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  padding: 10px 24px;
  border-radius: 30px;
  background-color: transparent;
  border: 1px solid #333333;
  color: #333333;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-pill.active {
  background-color: #0d1128;
  color: #ffffff;
  border-color: #0d1128;
}

.filter-pill:hover:not(.active) {
  background-color: #f0f0f0;
}

/* 3D Coverflow */
.gallery-coverflow-wrapper {
  position: relative;
  width: 100%;
  height: 500px;
  perspective: 1200px;
  margin-bottom: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.gallery-coverflow {
  position: relative;
  width: 350px;
  height: 450px;
  transform-style: preserve-3d;
}

.coverflow-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  cursor: pointer;
}

.coverflow-item img,
.coverflow-item video,
.coverflow-item iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border: none;
}

.expand-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.4);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}
.expand-btn:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: scale(1.1);
}

/* Coverflow States */
.item-active {
  transform: translateX(0) scale(1) translateZ(0);
  z-index: 5;
  opacity: 1;
}

.item-prev-1 {
  transform: translateX(-55%) scale(0.85) translateZ(-100px);
  z-index: 4;
  opacity: 0.9;
}

.item-next-1 {
  transform: translateX(55%) scale(0.85) translateZ(-100px);
  z-index: 4;
  opacity: 0.9;
}

.item-prev-2 {
  transform: translateX(-100%) scale(0.7) translateZ(-200px);
  z-index: 3;
  opacity: 0.8;
}

.item-next-2 {
  transform: translateX(100%) scale(0.7) translateZ(-200px);
  z-index: 3;
  opacity: 0.8;
}

.item-hidden {
  transform: translateX(0) scale(0.5) translateZ(-300px);
  z-index: 1;
  opacity: 0;
  pointer-events: none;
}

.gallery-controls {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.control-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid #333333;
  background-color: transparent;
  color: #333333;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.control-btn:hover {
  background-color: #0d1128;
  color: #ffffff;
  border-color: #0d1128;
}

/* ==========================================================================
   Services Section
   ========================================================================== */
.services-section {
  background-color: #1a1a1a;
  color: #ffffff;
  padding: 6rem 2rem;
  text-align: center;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
}

.services-header {
  margin-bottom: 4rem;
}

.services-overline {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}

.services-title {
  font-family: var(--font-sans);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 2rem;
}

.services-awards {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
}

.services-awards svg {
  width: 50px;
  height: 50px;
  color: rgba(255, 255, 255, 0.7);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  text-align: left;
}

.service-card {
  display: flex;
  flex-direction: column;
}

.service-img-wrapper {
  width: 100%;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.service-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.service-card-title {
  font-family: var(--font-sans);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: #ffffff;
}

.service-card-desc {
  font-size: 0.85rem;
  line-height: 1.6;
  color: #a1a1a6;
}


/* ==========================================================================
   Clients / Team Section
   ========================================================================== */
.clients-section {
  background-color: #FAF6F0;
  color: #1a1a1a;
  padding: 6rem 2rem;
  overflow: hidden;
}

.clients-container {
  max-width: 1400px;
  margin: 0 auto;
}

.clients-header {
  text-align: center;
  margin-bottom: 5rem;
}

.clients-title {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #1a1a1a;
}

.clients-title span {
  font-family: var(--font-sans);
  font-weight: 700;
}

.clients-desc {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.clients-btn {
  display: inline-block;
  background-color: #1a1a1a;
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.3s ease;
}

.clients-btn:hover {
  opacity: 0.8;
}

.clients-panorama {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 6rem;
  perspective: 1200px;
  overflow: visible;
}

.panorama-track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  transform-style: preserve-3d;
}

.panorama-item {
  width: 160px;
  height: auto;
  transition: transform 0.5s ease;
  position: relative;
  cursor: pointer;
}

.panorama-item:hover {
  z-index: 10 !important;
}

.panorama-item img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.overlay-name {
  width: 100%;
  padding-top: 0.8rem;
  color: var(--text-color);
  text-align: center;
  font-weight: 600;
  font-size: 0.95rem;
  font-family: 'Syne', sans-serif;
}

/* 3D Positioning */
.p-center {
  transform: rotateY(0deg) translateZ(50px) scale(1.1);
  z-index: 4;
}

.p-left-1 {
  transform: rotateY(12deg) translateZ(-20px) translateX(10px) scale(1.05);
  z-index: 3;
}
.p-right-1 {
  transform: rotateY(-12deg) translateZ(-20px) translateX(-10px) scale(1.05);
  z-index: 3;
}

.p-left-2 {
  transform: rotateY(24deg) translateZ(-80px) translateX(30px) scale(0.95);
  z-index: 2;
}
.p-right-2 {
  transform: rotateY(-24deg) translateZ(-80px) translateX(-30px) scale(0.95);
  z-index: 2;
}

.p-left-3 {
  transform: rotateY(36deg) translateZ(-160px) translateX(60px) scale(0.85);
  z-index: 1;
}
.p-right-3 {
  transform: rotateY(-36deg) translateZ(-160px) translateX(-60px) scale(0.85);
  z-index: 1;
}

.clients-features {
  display: flex;
  justify-content: center;
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.c-feature {
  flex: 1;
}

.c-feature h4 {
  font-family: var(--font-sans);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #333;
}

.c-feature p {
  font-size: 0.9rem;
  color: #777;
  line-height: 1.6;
}

.c-feature-divider {
  width: 1px;
  background-color: rgba(0,0,0,0.1);
  height: auto;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background-color: #000000;
  color: #ffffff;
  padding: 5rem 2rem 2rem;
  border-top: 1px solid #222;
}

.footer-container {
  max-width: 1360px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-brand h2 {
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: 1.8rem;
  letter-spacing: -0.5px;
  margin-bottom: 1rem;
}

.footer-brand span {
  color: var(--color-primary);
}

.footer-brand p {
  color: #a1a1a6;
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 300px;
}

.footer-links-col h4,
.footer-social-col h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.footer-links-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links-col li {
  margin-bottom: 0.8rem;
}

.footer-links-col a {
  color: #a1a1a6;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links-col a:hover {
  color: var(--color-primary);
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #1a1a1a;
  color: #fff;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background-color: var(--color-primary);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #222;
  color: #666;
  font-size: 0.85rem;
}

/* ==========================================================================
   Auth Modal (Login / Register)
   ========================================================================== */
.auth-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 10000;
  display: flex;
  justify-content: center; /* Center the card */
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

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

.auth-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
}

.auth-content {
  position: relative;
  width: 900px;
  max-width: 90%;
  height: 550px;
  background-color: #111;
  background-image: url('../assets/images/hero_on_air.jpg');
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: flex-end;
  align-items: center;
  transform: translateY(30px) scale(0.95);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 1;
}

.auth-modal.show .auth-content {
  transform: translateY(0) scale(1);
}

.auth-close {
  position: absolute;
  top: -15px;
  right: -15px;
  background: #333;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 10001;
  transition: background 0.3s;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

.auth-close:hover {
  background: var(--color-primary);
}

.auth-form-col {
  width: 400px;
  max-width: 90%;
  margin-right: 3rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  background: rgba(40, 40, 45, 0.6);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
}

.auth-modal-content {
  background: var(--glass-bg);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid var(--glass-border);
  padding: 3rem;
  border-radius: 20px;
  width: 90%;
  max-width: 900px;
  display: flex;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  animation: modalFadeIn 0.4s ease forwards;
}

/* ==================== PROFILE DROPDOWN MENU ==================== */
.profile-dropdown-menu {
  position: absolute;
  top: 120%;
  right: 0;
  background: var(--glass-bg);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  min-width: 150px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: all 0.3s ease;
}
.profile-dropdown-menu.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.profile-dropdown-menu button {
  background: transparent;
  border: none;
  color: var(--text-light);
  padding: 0.8rem 1rem;
  text-align: left;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
  font-family: inherit;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.profile-dropdown-menu button:hover {
  background: rgba(255,255,255,0.1);
  color: var(--primary-accent);
}

.auth-top-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  font-size: 0.85rem;
  color: #a1a1a6;
}

.auth-tabs {
  display: flex;
  gap: 1.5rem;
}

.auth-tab {
  cursor: pointer;
  padding-bottom: 0.3rem;
  transition: color 0.3s;
}

.auth-tab.active {
  color: #fff;
  border-bottom: 2px solid var(--color-primary);
}

.auth-tab:not(.active):hover {
  color: #fff;
}

.auth-form-view {
  display: none;
  flex-direction: column;
  flex: 1;
  animation: fadeInForm 0.4s ease forwards;
}

.auth-form-view.active {
  display: flex;
}

@keyframes fadeInForm {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.auth-form-view h2 {
  font-family: var(--font-sans);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #fff;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.input-group {
  position: relative;
}

.input-group input {
  width: 100%;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  padding: 1rem 1.2rem;
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  color: #111;
  outline: none;
}

.input-group input::placeholder {
  color: #555;
}

.eye-icon {
  position: absolute;
  right: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  color: #666;
  cursor: pointer;
  font-size: 1.1rem;
}

.forgot-pwd {
  text-align: right;
  font-size: 0.85rem;
  color: #a1a1a6;
  text-decoration: none;
  margin-top: -0.5rem;
  margin-bottom: 0.5rem;
}

.forgot-pwd:hover {
  color: #fff;
}

.auth-submit-btn {
  background: #fff;
  color: #111;
  border: none;
  padding: 1rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.3s;
}

.auth-submit-btn:hover {
  opacity: 0.9;
}

.auth-divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 1.5rem 0 1rem;
}

.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}

.auth-divider span {
  padding: 0 1rem;
  color: #a1a1a6;
  font-size: 0.85rem;
}

.auth-socials {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: auto;
}

.social-btn {
  width: 60px;
  height: 45px;
  background: #fff;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1.1rem;
  color: #333;
  cursor: pointer;
  transition: transform 0.2s;
}

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

.auth-switch-prompt {
  text-align: center;
  font-size: 0.9rem;
  color: #a1a1a6;
  margin-top: 2rem;
}

.auth-switch-prompt span {
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

/* --------------------------------------------------------------------------
   10. Responsive Breakpoints
   -------------------------------------------------------------------------- */
@media (max-width: 1100px) {
  .board-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .board-frame-outer {
    padding: 3rem 2rem;
  }

  .about-top-row,
  .about-bottom-row {
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .features-container {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .script-accent {
    font-size: 3rem;
  }

  .bold-heading {
    font-size: 2.1rem;
  }

  .spec-mid-row {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .spec-bottom-grid {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .notes-divider {
    display: none;
  }

  html, body {
    width: 100vw;
    max-width: 100vw;
    overflow-x: hidden;
    position: relative;
  }
  .hero-section {
    padding-top: 6rem;
  }
  .about-section {
    padding: 4rem 1.5rem;
  }
  .about-container {
    gap: 3.5rem;
  }
  .about-top-row,
  .about-bottom-row {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-head {
    font-size: 2.2rem;
  }
  .services-section {
    padding: 4rem 1.5rem;
  }
  .services-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .dh-container {
    grid-template-columns: 1fr;
    min-height: auto;
    position: relative;
  }
  .dh-container::before {
    display: none;
  }
  .dh-slider-wrapper {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 70vh;
    min-height: 450px;
    z-index: 0;
  }
  .dh-slider-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.8) 100%);
    z-index: 1;
    pointer-events: none;
  }
  .dh-left {
    padding: 2rem 1.5rem;
    height: 70vh;
    min-height: 450px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
  }
  .dh-right {
    padding: 2rem 1.5rem;
    position: relative;
    z-index: 2;
    background: #000;
  }
  .dh-card {
    width: 90px;
    height: 120px;
  }
  .dh-cards-row {
    height: 120px;
    gap: 10px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .dh-cards-row::-webkit-scrollbar {
    display: none;
  }
  .dh-icons-row {
    flex-wrap: wrap;
    justify-content: center;
  }
  .dh-slide.thumb-1, .dh-slide.thumb-2, .dh-slide.thumb-3 {
    width: 90px !important;
    height: 120px !important;
  }
  .dh-slide:not(.active) {
    z-index: 3 !important;
    top: auto !important;
    bottom: 1.5rem !important;
  }
  .dh-slide.active {
    z-index: 0 !important;
  }
  .dh-slide.thumb-2 {
    left: calc(var(--thumb-left-base, 2rem) + 100px) !important;
  }
  .dh-slide.thumb-3 {
    left: calc(var(--thumb-left-base, 2rem) + 200px) !important;
  }
  .dh-left .dh-logo {
    display: none;
  }
  .armoury-container, .contact-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  .footer-top {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }
  .footer-col {
    align-items: center;
  }
  .footer-social-col .social-icons {
    justify-content: center;
  }
  .gallery-coverflow-wrapper {
    height: 380px;
    margin-bottom: 1rem;
  }
  .gallery-coverflow {
    width: 250px;
    height: 320px;
  }
  .gallery-filters {
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 2rem;
  }
  .dh-title {
    font-size: 1.8rem;
    margin-top: 1rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
  }
  .dh-subtitle {
    font-size: 0.9rem;
    max-width: 100%;
    margin-bottom: 1.5rem;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
  }
  .dh-left-footer {
    display: none;
  }
  .dh-dashed-path {
    display: none;
  }
  .dh-discover-section {
    display: none;
  }
  .mobile-swipe-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.85rem;
    margin-top: 1.5rem;
    animation: swipeAnim 1.5s infinite;
  }
  @keyframes swipeAnim {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(5px); }
  }
  .clients-section {
    width: 100vw;
    max-width: 100vw;
    overflow: hidden;
    padding-left: 0 !important;
    padding-right: 0 !important;
    box-sizing: border-box;
  }
  .clients-header {
    width: 100vw;
    max-width: 100vw;
    box-sizing: border-box;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .clients-title {
    font-size: 1.6rem;
  }
  .clients-desc {
    font-size: 0.85rem;
    br { display: none; }
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .clients-features {
    flex-direction: column;
    gap: 1.5rem;
    padding: 0 1rem;
    width: 100vw;
    max-width: 100vw;
    box-sizing: border-box;
  }
  .c-feature-divider {
    display: none;
  }
  .clients-panorama {
    display: block;
    width: 100vw;
    max-width: 100vw;
    box-sizing: border-box;
    margin-bottom: 2rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    padding-bottom: 1rem;
    -ms-overflow-style: none;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .clients-panorama::-webkit-scrollbar {
    display: none;
  }
  .panorama-track {
    display: flex;
    transform: none !important;
    justify-content: flex-start;
    width: max-content;
    padding: 0 1rem;
  }
  .panorama-item {
    flex: 0 0 42vw;
    width: 42vw !important;
    scroll-snap-align: start;
    transform: none !important;
    margin-right: 1rem;
  }
  .panorama-item img {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    object-fit: cover;
  }
  .dh-slide.active {
    width: 100% !important;
  }
  .dh-slide .dh-card-overlay h4 {
    font-size: 0.7rem;
    margin-bottom: 2px;
  }
  .dh-slide .dh-card-overlay p {
    font-size: 0.6rem;
  }
}

/* ==================== Floating Review Button ==================== */
.floating-review-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #FF2A2A; /* Red background */
  color: #ffffff; /* White text */
  border: none;
  width: 70px;
  height: 70px;
  border-radius: 50%; /* Circular */
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
  z-index: 1000;
  transition: all 0.3s ease;
  text-align: center;
  line-height: 1.1;
}

.floating-review-btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 30px rgba(0,0,0,0.4);
}

/* ==================== Notification Badge ==================== */
.notif-dot {
  position: absolute;
  top: -5px;
  right: -5px;
  background-color: var(--accent-red, #ff3b30);
  color: white;
  border-radius: 50%;
  padding: 2px 6px;
  font-size: 0.7rem;
  font-weight: bold;
  display: none;
}
.notif-btn {
  position: relative;
  cursor: pointer;
}
/* Simple Review Modal */
.review-simple-modal { display: none; position: fixed; inset: 0; z-index: 10000; align-items: center; justify-content: center; }
.review-simple-modal.show { display: flex; }
.review-simple-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.4); backdrop-filter: blur(4px); }
.review-simple-content { position: relative; background: #fff; border-radius: 24px; padding: 4rem 2rem 2rem; width: 90%; max-width: 400px; text-align: center; box-shadow: 0 20px 40px rgba(0,0,0,0.2); z-index: 10001; font-family: 'Plus Jakarta Sans', sans-serif; display: flex; flex-direction: column; align-items: center; }
.review-simple-close { position: absolute; top: 1rem; right: 1rem; width: 32px; height: 32px; border-radius: 50%; background: #e5e7eb; color: #6b7280; border: none; font-size: 1.2rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.3s ease; }
.review-simple-close:hover { background: #d1d5db; color: #374151; }
.review-simple-logo { width: 100px; height: 100px; position: absolute; top: -50px; left: 50%; transform: translateX(-50%); border-radius: 50%; box-shadow: 0 4px 10px rgba(0,0,0,0.1); background: transparent; object-fit: contain; }
.review-simple-title { font-size: 2rem; font-weight: 800; color: #000; margin-bottom: 0.5rem; text-transform: uppercase; letter-spacing: -1px; }
.review-simple-desc { font-size: 1rem; color: #4b5563; margin-bottom: 1.5rem; font-weight: 600; line-height: 1.4; }
.review-simple-input { width: 100%; padding: 0.8rem 1rem; border: 1px solid #e5e7eb; border-radius: 8px; margin-bottom: 1rem; font-family: inherit; font-size: 0.95rem; outline: none; transition: border-color 0.3s; color: #000; background: #fff; }
.review-simple-input:focus { border-color: #000; }
.review-simple-submit { width: 100%; background: #000; color: #fff; border: none; border-radius: 8px; padding: 1rem; font-size: 1rem; font-weight: 600; cursor: pointer; transition: background 0.3s ease; margin-bottom: 1rem; }
.review-simple-submit:hover { background: #333; }
.review-simple-cancel { color: #9ca3af; font-size: 0.9rem; text-decoration: none; font-weight: 600; cursor: pointer; background: none; border: none; }
.review-simple-cancel:hover { color: #6b7280; }
