/* ============================================
   PV Consultants — Main Stylesheet
   Converted from React/TailwindCSS to Vanilla CSS
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* =====================
   CSS Custom Properties
   ===================== */
:root {
  /* Premium Dark Theme */
  --pv-navy: #0A1128;
  --pv-navy-light: #15224D;
  --pv-navy-dark: #040814;
  /* Premium Sun Gold */
  --pv-orange: #FB8500;
  --pv-orange-light: #FFB703;
  --pv-orange-dark: #E85D04;
  
  --pv-gray-light: #F8FAFC;
  --pv-gray: #64748B;
  --pv-gray-dark: #334155;
  --font-sans: 'Outfit', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  color: var(--pv-gray-dark);
  background: #fff;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  color: var(--pv-navy);
  line-height: 1.2;
}

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

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

ul {
  list-style: none;
  padding: 0;
}

button {
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  background: none;
}

input, textarea, select {
  font-family: var(--font-sans);
}

/* =====================
   Container
   ===================== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container { padding: 0 1.5rem; }
}

@media (min-width: 1024px) {
  .container { padding: 0 2rem; }
}

/* =====================
   Buttons
   ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.375rem;
  font-weight: 500;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  outline: none;
}

.btn:focus-visible {
  outline: 2px solid var(--pv-orange);
  outline-offset: 2px;
}

.btn:disabled {
  opacity: 0.5;
  pointer-events: none;
}

/* Variants */
.btn-primary {
  background: linear-gradient(135deg, var(--pv-orange-light), var(--pv-orange-dark));
  color: #fff;
  box-shadow: 0 4px 14px 0 rgba(245, 124, 0, 0.39);
  border: none;
  transition: all 0.3s ease;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 124, 0, 0.5);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--pv-navy-light), var(--pv-navy-dark));
  color: #fff;
  box-shadow: 0 4px 14px 0 rgba(15, 32, 60, 0.39);
  transition: all 0.3s ease;
}
.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(15, 32, 60, 0.5);
}

.btn-outline {
  border: 2px solid var(--pv-navy);
  color: var(--pv-navy);
  background: transparent;
}
.btn-outline:hover {
  background: var(--pv-gray-light);
}

.btn-outline-white {
  border: 2px solid #fff;
  color: #fff;
  background: transparent;
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
}

/* Sizes */
.btn-sm {
  height: 2.25rem;
  padding: 0 1rem;
  font-size: 0.875rem;
}
.btn-md {
  height: 2.75rem;
  padding: 0 1.5rem;
  font-size: 1rem;
}
.btn-lg {
  height: 3.5rem;
  padding: 0 2rem;
  font-size: 1.125rem;
}
.btn-full { width: 100%; }

/* =====================
   Navbar
   ===================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #fff;
  padding: 1.25rem 0;
}

.navbar.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  border-bottom-color: #f3f4f6;
  padding: 0.75rem 0;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-logo img {
  height: 3rem;
  width: auto;
  object-fit: contain;
}

.navbar-links {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .navbar-links {
    display: flex;
  }
}

.navbar-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--pv-navy-light);
  transition: color 0.2s;
}

.navbar-links a:hover,
.navbar-links a.active {
  color: var(--pv-orange);
}

/* Desktop Services Dropdown */
.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-dropdown-btn {
  background: none;
  border: none;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--pv-navy-light);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: inherit;
  padding: 0;
  transition: color 0.2s;
}

.nav-dropdown-btn:hover,
.nav-dropdown-btn.open,
.nav-dropdown-btn.active {
  color: var(--pv-orange);
}

.dropdown-chevron {
  transition: transform 0.25s ease;
}

.nav-dropdown-btn.open .dropdown-chevron,
.nav-dropdown:hover .dropdown-chevron {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 15px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 580px;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 20px 45px -10px rgba(7, 17, 34, 0.18), 0 0 0 1px rgba(0,0,0,0.05);
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s cubic-bezier(0.16, 1, 0.3, 1), transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.25s;
  z-index: 1000;
}

.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: #fff;
  border-top: 1px solid rgba(0,0,0,0.05);
  border-left: 1px solid rgba(0,0,0,0.05);
}

.nav-dropdown-menu.show,
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.dropdown-item {
  display: flex !important;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
  background: transparent;
  border: 1px solid transparent;
}

.dropdown-item:hover {
  background: #f8fafc !important;
  border-color: rgba(245, 124, 0, 0.15);
  transform: translateX(4px);
}

.dropdown-icon {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: rgba(245, 124, 0, 0.1);
  color: var(--pv-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.25s ease;
}

.dropdown-item:hover .dropdown-icon {
  background: var(--pv-orange);
  color: #fff;
  transform: scale(1.08) rotate(3deg);
  box-shadow: 0 4px 10px rgba(245, 124, 0, 0.3);
}

.dropdown-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--pv-navy);
  line-height: 1.3;
  display: block;
  transition: color 0.2s;
}

.dropdown-item:hover .dropdown-title {
  color: var(--pv-orange);
}

.dropdown-all {
  grid-column: span 2;
  background: rgba(245, 124, 0, 0.04);
  border: 1px dashed rgba(245, 124, 0, 0.3);
  margin-bottom: 4px;
  padding: 12px 14px;
}

.dropdown-all:hover {
  background: rgba(245, 124, 0, 0.08) !important;
  border-style: solid;
  border-color: var(--pv-orange);
}

.dropdown-desc {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  color: #64748b;
  margin-top: 2px;
}

.mobile-menu-btn {
  display: block;
  padding: 0.5rem;
  color: var(--pv-navy);
}

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}

.mobile-menu-btn svg {
  width: 24px;
  height: 24px;
}

/* Mobile Overlay */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(7, 17, 34, 0.5);
  z-index: 40;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.mobile-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

/* Mobile Sidebar */
.mobile-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 75%;
  max-width: 24rem;
  background: #fff;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
  z-index: 50;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.3s ease-in-out;
}

.mobile-sidebar.open {
  transform: translateX(0);
}

@media (min-width: 768px) {
  .mobile-sidebar,
  .mobile-overlay {
    display: none !important;
  }
}

.mobile-sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem;
  border-bottom: 1px solid #f3f4f6;
}

.mobile-sidebar-header img {
  height: 2.5rem;
  width: auto;
  object-fit: contain;
}

.mobile-sidebar-header button {
  color: var(--pv-navy);
  padding: 0.25rem;
}

.mobile-sidebar-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.25rem;
  overflow-y: auto;
}

.mobile-sidebar-links a {
  font-size: 1.125rem;
  font-weight: 500;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  color: var(--pv-navy);
  transition: all 0.2s;
}

.mobile-sidebar-links a:hover {
  background: var(--pv-gray-light);
}

.mobile-sidebar-links a.active {
  background: rgba(245, 124, 0, 0.1);
  color: var(--pv-orange);
}

/* Mobile Services Dropdown */
.mobile-dropdown-container {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.mobile-dropdown-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  font-size: 1.125rem;
  font-weight: 500;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  color: var(--pv-navy);
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s;
  text-align: left;
}

.mobile-dropdown-btn:hover,
.mobile-dropdown-btn.open,
.mobile-dropdown-btn.active {
  color: var(--pv-orange);
  background: #f8fafc;
}

.mobile-dropdown-list {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 8px 0 8px 8px;
  border-left: 2px solid var(--pv-orange);
  margin-left: 1rem;
  margin-top: 4px;
}

.mobile-dropdown-list.open {
  display: flex;
}

.mobile-dropdown-item {
  display: flex !important;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem !important;
  font-weight: 500 !important;
  padding: 0.6rem 0.8rem !important;
  border-radius: 0.375rem !important;
  color: #334155 !important;
}

.mobile-dropdown-item:hover,
.mobile-dropdown-item.active {
  color: var(--pv-orange) !important;
  background: rgba(245, 124, 0, 0.06) !important;
}

.mobile-dropdown-item .dropdown-icon {
  width: 30px;
  height: 30px;
  border-radius: 6px;
  background: rgba(245, 124, 0, 0.1);
  color: var(--pv-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: none !important;
}

.mobile-dropdown-item:hover .dropdown-icon {
  background: var(--pv-orange);
  color: #fff;
  transform: none;
}

.mobile-sidebar-cta {
  padding-top: 1.5rem;
  margin-top: 1rem;
  border-top: 1px solid #f3f4f6;
}

.mobile-sidebar-cta a {
  padding: 0;
}

.mobile-sidebar-cta a:hover {
  background: transparent;
}

/* =====================
   Main Content
   ===================== */
.main-content {
  flex-grow: 1;
  padding-top: 72px;
}

.page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* =====================
   Video Page & Video Player
   ===================== */

/* Video Page Layout */
.video-page-section {
  padding: 3rem 0 2rem;
  background: var(--pv-navy-dark);
  min-height: calc(100vh - 72px);
}

.video-page-header {
  text-align: center;
  margin-bottom: 2rem;
}

.video-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--pv-gray);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  transition: color 0.2s;
}

.video-back-link:hover {
  color: var(--pv-orange);
}

.video-page-header h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  color: #fff;
  margin-bottom: 0.75rem;
}

.highlight-dark {
  color: var(--pv-orange);
  background: linear-gradient(135deg, var(--pv-orange-light), var(--pv-orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.video-page-header p {
  color: var(--pv-gray);
  font-size: 1.05rem;
  max-width: 36rem;
  margin: 0 auto;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .video-page-section {
    padding: 2rem 0 1.5rem;
  }
  .video-page-header {
    margin-bottom: 1.25rem;
  }
  .video-page-header p {
    font-size: 0.9rem;
  }
}

/* Video Intro (kept for legacy) */
.video-intro {
  background: var(--pv-navy-dark);
  padding: 2rem 0 1.5rem;
}

.video-card {
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  background: #000;
}

.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
}

.video-frame video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
}

/* Play Overlay */
.video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(10, 17, 40, 0.6);
  z-index: 10;
  cursor: pointer;
  transition: opacity 0.4s ease;
}

.video-overlay:hover {
  background: rgba(10, 17, 40, 0.45);
}

.video-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.video-play-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--pv-orange);
  border: 3px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 8px 30px rgba(251, 133, 0, 0.5);
  transition: transform 0.3s, box-shadow 0.3s;
  animation: playPulse 2s infinite;
}

.video-play-circle:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(251, 133, 0, 0.65);
}

.video-play-circle svg {
  width: 32px;
  height: 32px;
  margin-left: 3px;
}

@keyframes playPulse {
  0%, 100% { box-shadow: 0 8px 30px rgba(251, 133, 0, 0.5); }
  50% { box-shadow: 0 8px 50px rgba(251, 133, 0, 0.75), 0 0 0 12px rgba(251, 133, 0, 0.12); }
}

.video-overlay-text {
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  margin-top: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

/* Video Controls Bar */
.video-controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 1rem;
  background: var(--pv-navy);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.vc-btn {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  flex-shrink: 0;
}

.vc-btn:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: scale(1.05);
}

.vc-btn svg {
  width: 18px;
  height: 18px;
}

/* Progress bar */
.vc-progress-wrap {
  flex: 1;
  height: 6px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 3px;
  cursor: pointer;
  overflow: hidden;
  position: relative;
}

.vc-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--pv-orange), var(--pv-orange-light));
  border-radius: 3px;
  transition: width 0.15s linear;
}

.vc-progress-wrap:hover {
  height: 8px;
}

/* Scroll CTA */
.video-scroll-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.25rem 0 0.25rem;
  animation: scrollBounce 2s infinite;
}

.video-scroll-cta svg {
  width: 20px;
  height: 20px;
  color: var(--pv-orange);
}

.video-scroll-cta span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

/* Mobile responsive */
@media (max-width: 768px) {
  .video-intro {
    padding: 1rem 0 1rem;
  }
  .video-card {
    border-radius: 8px;
    border-width: 1.5px;
  }
  .video-play-circle {
    width: 56px;
    height: 56px;
  }
  .video-play-circle svg {
    width: 24px;
    height: 24px;
  }
  .video-overlay-text {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
  }
  .video-controls {
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
  }
  .vc-btn {
    width: 32px;
    height: 32px;
  }
  .vc-btn svg {
    width: 15px;
    height: 15px;
  }
  .video-scroll-cta {
    padding: 1rem 0 0;
  }
  .video-scroll-cta span {
    font-size: 0.65rem;
  }
}

@media (max-width: 480px) {
  .video-intro {
    padding: 0.75rem 0 0.75rem;
  }
  .video-play-circle {
    width: 48px;
    height: 48px;
  }
  .video-play-circle svg {
    width: 20px;
    height: 20px;
  }
  .video-overlay-text {
    font-size: 0.6rem;
    margin-top: 0.5rem;
  }
}

/* =====================
   Hero Section
   ===================== */
.hero {
  position: relative;
  height: 90vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--pv-navy-dark);
}

.hero-slide {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

@keyframes kenBurns {
  0% { transform: scale(1.05) translateZ(0); }
  100% { transform: scale(1.15) translateZ(0); }
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05) translateZ(0);
  will-change: transform;
}

.hero-slide.active img {
  animation: kenBurns 10s ease-out forwards;
}

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 32, 60, 0.75);
  mix-blend-mode: multiply;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 1rem;
  max-width: 64rem;
  margin: 0 auto;
}

/* Hero Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--pv-orange-light);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: heroTextIn 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) 0.1s forwards;
}

.hero-badge svg {
  color: var(--pv-orange);
  flex-shrink: 0;
}

.glass-panel {
  background: rgba(10, 17, 40, 0.4);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 4rem 2rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  animation: heroTextIn 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.1s forwards;
  opacity: 0;
  transform: translateY(30px);
}

.hero-content h1 {
  font-size: clamp(2.25rem, 6vw, 4.5rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 1.5rem;
  letter-spacing: -0.025em;
  line-height: 1.1;
  opacity: 0;
  transform: translateY(30px);
  animation: heroTextIn 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.2s forwards;
  text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.hero-content h1 .highlight {
  color: var(--pv-orange);
  background: linear-gradient(135deg, var(--pv-orange-light), var(--pv-orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content p {
  font-size: clamp(1rem, 3vw, 1.35rem);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.75;
  opacity: 0;
  transform: translateY(30px);
  animation: heroTextIn 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.4s forwards;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: translateY(20px);
  animation: heroTextIn 0.5s ease 0.6s forwards;
}

/* Hero Video Link */
.hero-video-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s;
  padding: 0.5rem 0;
}

.hero-video-link:hover {
  color: var(--pv-orange-light);
}

.hero-video-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(251, 133, 0, 0.2);
  border: 2px solid var(--pv-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.hero-video-link:hover .hero-video-icon {
  background: var(--pv-orange);
  transform: scale(1.1);
}

.hero-video-icon svg {
  width: 16px;
  height: 16px;
  margin-left: 2px;
  color: var(--pv-orange);
  fill: var(--pv-orange);
}

.hero-video-link:hover .hero-video-icon svg {
  color: #fff;
  fill: #fff;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
  .hero-buttons .btn {
    width: auto;
  }
}

.hero-buttons .btn { width: 100%; }
@media (min-width: 640px) {
  .hero-buttons .btn { width: auto; }
}

.btn-hero-primary {
  box-shadow: 0 10px 25px -5px rgba(245, 124, 0, 0.4);
}

@keyframes heroTextIn {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Slide Indicators */
.slide-indicators {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  gap: 0.75rem;
}

.slide-dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 9999px;
  background: rgba(255,255,255,0.5);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}

.slide-dot:hover {
  background: #fff;
}

.slide-dot.active {
  background: var(--pv-orange);
  width: 2rem;
}

/* =====================
   About Summary Section
   ===================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--pv-navy-dark);
  margin-bottom: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.about-text p {
  color: #4b5563;
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.about-text .btn {
  margin-top: 1rem;
}

.about-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transform: perspective(1000px) rotateY(-5deg);
  transition: transform 0.5s ease;
}

.about-image-wrapper:hover {
  transform: perspective(1000px) rotateY(0deg);
}

.about-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 450px;
}

.about-image-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(245,124,0,0.1), rgba(15,32,60,0.1));
  z-index: 1;
  mix-blend-mode: multiply;
}

@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .about-image-wrapper {
    order: -1;
    transform: none;
    min-height: 350px;
  }
  
  .about-image-wrapper:hover {
    transform: none;
  }
}

/* =====================
   Stats Section
   ===================== */
#stats-section {
  padding: 5rem 0;
  /* background removed to inherit from .section-navy */
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  text-align: center;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

.stat-item {
  background: #ffffff !important;
  padding: 2.5rem 1.5rem;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.stat-number {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--pv-orange) !important;
  margin-bottom: 0.75rem;
  line-height: 1;
}

.section-navy p.stat-label,
.section-navy-dark p.stat-label,
#stats-section p.stat-label,
.stat-label {
  font-size: 0.95rem;
  font-weight: 700;
  color: #040814 !important;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* =====================
   Home Video Showcase (Below Hero)
   ===================== */
.home-video-showcase {
  position: relative;
  background: radial-gradient(circle at 50% 30%, #111d40 0%, var(--pv-navy-dark) 70%);
  padding: 5rem 0 4.5rem;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Ambient glow background behind the player */
.home-video-showcase::before {
  content: "";
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 650px;
  height: 450px;
  background: radial-gradient(circle, rgba(251, 133, 0, 0.2) 0%, rgba(33, 158, 188, 0.12) 50%, transparent 70%);
  filter: blur(50px);
  z-index: 1;
  pointer-events: none;
  animation: pulseGlow 6s ease-in-out infinite alternate;
}

@keyframes pulseGlow {
  0% { transform: translate(-50%, -50%) scale(0.95); opacity: 0.85; }
  100% { transform: translate(-50%, -50%) scale(1.08); opacity: 1; }
}

.home-video-showcase .container {
  position: relative;
  z-index: 2;
}

.showcase-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3.5rem;
}

.showcase-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(251, 133, 0, 0.12);
  border: 1px solid rgba(251, 133, 0, 0.35);
  color: var(--pv-orange);
  padding: 0.45rem 1.25rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 25px rgba(251, 133, 0, 0.18);
}

.showcase-badge svg {
  width: 16px;
  height: 16px;
  color: var(--pv-orange);
}

.showcase-header h2 {
  font-size: 2.75rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.22;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.showcase-header h2 .highlight {
  color: var(--pv-orange);
  background: linear-gradient(135deg, var(--pv-orange-light), var(--pv-orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.showcase-header p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.75;
  margin: 0;
}

/* Premium Glassmorphic Wrapper for Video Player */
.showcase-player-wrapper {
  max-width: 960px;
  margin: 0 auto 3.5rem;
  padding: 14px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.65), 0 0 40px rgba(251, 133, 0, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.showcase-player-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.75), 0 0 55px rgba(251, 133, 0, 0.18);
  border-color: rgba(251, 133, 0, 0.35);
}

.showcase-player-wrapper .video-card {
  border-radius: 16px;
  border: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Value Proposition Badges underneath Video */
.showcase-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  max-width: 1020px;
  margin: 0 auto;
}

.showcase-feature-card {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  padding: 1.6rem;
  border-radius: 18px;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.showcase-feature-card:hover {
  background: rgba(255, 255, 255, 0.075);
  border-color: rgba(251, 133, 0, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
}

.showcase-feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--pv-orange) 0%, #d96f00 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  flex-shrink: 0;
  box-shadow: 0 6px 22px rgba(251, 133, 0, 0.4);
}

.showcase-feature-icon svg {
  width: 26px;
  height: 26px;
  stroke-width: 2.2px;
}

.showcase-feature-text h4 {
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 0.4rem;
  letter-spacing: -0.01em;
}

.showcase-feature-text p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.925rem;
  line-height: 1.55;
  margin: 0;
}

/* Mobile & Tablet Responsiveness */
@media (max-width: 992px) {
  .showcase-header h2 {
    font-size: 2.35rem;
  }
  .showcase-highlights {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.35rem;
  }
}

@media (max-width: 768px) {
  .home-video-showcase {
    padding: 3.5rem 0 3rem;
  }
  .showcase-header {
    margin-bottom: 2.5rem;
    padding: 0 0.5rem;
  }
  .showcase-header h2 {
    font-size: 1.9rem;
    margin-bottom: 1rem;
  }
  .showcase-header p {
    font-size: 1.025rem;
  }
  .showcase-player-wrapper {
    padding: 8px;
    border-radius: 18px;
    margin-bottom: 2.5rem;
  }
  .showcase-player-wrapper .video-card {
    border-radius: 12px;
  }
  .showcase-highlights {
    grid-template-columns: 1fr;
    gap: 1.15rem;
  }
  .showcase-feature-card {
    padding: 1.35rem;
    gap: 1rem;
  }
  .showcase-feature-icon {
    width: 46px;
    height: 46px;
  }
}

@media (max-width: 480px) {
  .home-video-showcase {
    padding: 2.75rem 0 2.25rem;
  }
  .showcase-badge {
    font-size: 0.75rem;
    padding: 0.35rem 1rem;
  }
  .showcase-header h2 {
    font-size: 1.65rem;
  }
  .showcase-player-wrapper {
    padding: 6px;
    border-radius: 14px;
  }
}

/* =====================
   Trusted Clients
   ===================== */
.trusted-clients {
  background: linear-gradient(180deg, var(--pv-navy-dark), var(--pv-navy));
  padding: 4rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.trusted-clients p {
  text-align: center;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--pv-orange);
  margin-bottom: 2.5rem;
  font-weight: 700;
  opacity: 0.95;
}

.marquee-container {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 1rem 0;
  display: flex;
}

.marquee-container::before,
.marquee-container::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.marquee-container::before {
  left: 0;
  background: linear-gradient(to right, var(--pv-navy-dark), transparent);
}
.marquee-container::after {
  right: 0;
  background: linear-gradient(to left, var(--pv-navy-dark), transparent);
}

.marquee-track {
  display: flex;
  width: fit-content;
  animation: scrollMarquee 20s linear infinite;
  will-change: transform;
  transform: translateZ(0);
}

.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-content {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 4rem;
  padding-right: 4rem;
}

@media (min-width: 768px) {
  .marquee-content {
    gap: 8rem;
    padding-right: 8rem;
  }
}

.marquee-content div {
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--pv-orange);
  opacity: 0.9;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
  text-shadow: 0 0 20px rgba(251, 133, 0, 0.25);
}

.marquee-content div:hover {
  opacity: 1;
  transform: scale(1.12);
  color: var(--pv-orange-light);
  text-shadow: 0 0 30px rgba(255, 183, 3, 0.6);
}

@keyframes scrollMarquee {
  0% { transform: translateX(0) translateZ(0); }
  100% { transform: translateX(-50%) translateZ(0); }
}

/* =====================
   Section Styles
   ===================== */
.section {
  padding: 3.5rem 0;
}

@media (min-width: 768px) {
  .section {
    padding: 6rem 0;
  }
}

.section-sm {
  padding: 2.5rem 0;
}

@media (min-width: 768px) {
  .section-sm {
    padding: 5rem 0;
  }
}

.section-white { background: #fff; }
.section-light { background: var(--pv-gray-light); }
.section-navy { 
  background: var(--pv-navy); 
  color: #fff; 
  position: relative;
  overflow: hidden;
}
.section-navy::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -10%;
  width: 50%;
  height: 50%;
  background: radial-gradient(circle, rgba(245, 124, 0, 0.1) 0%, transparent 60%);
  z-index: 0;
  pointer-events: none;
}
.section-navy::after {
  content: '';
  position: absolute;
  bottom: -20%;
  right: -10%;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(26, 50, 88, 0.4) 0%, transparent 60%);
  z-index: 0;
  pointer-events: none;
}

.section-navy > .container,
.section-navy-dark > .container {
  position: relative;
  z-index: 10;
}

.section-navy-dark { 
  background: var(--pv-navy-dark); 
  color: #fff; 
  position: relative;
  overflow: hidden;
}
.section-orange {
  background: linear-gradient(135deg, var(--pv-orange), var(--pv-orange-dark));
  position: relative;
  overflow: hidden;
}

.section-orange::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.15;
  background: radial-gradient(circle at top right, #fff, transparent 60%);
}

.cta-section {
  text-align: center;
  color: #fff;
}

.cta-section h2 {
  color: #fff;
}

.section-header {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 4rem;
}

.section-header h1,
.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .section-header h1 {
    font-size: 3rem;
  }
}

.section-header p {
  font-size: 1.125rem;
  color: var(--pv-gray);
}

.section-navy .section-header h2,
.section-navy-dark .section-header h2,
.section-navy h1, .section-navy h2, .section-navy h3, .section-navy h4, .section-navy h5, .section-navy h6,
.section-navy-dark h1, .section-navy-dark h2, .section-navy-dark h3, .section-navy-dark h4, .section-navy-dark h5, .section-navy-dark h6,
.section-navy .about-details h2, .section-navy-dark .about-details h2,
.section-navy .about-details h3, .section-navy-dark .about-details h3 {
  color: #ffffff !important;
}

.section-navy .section-header p,
.section-navy-dark .section-header p,
.section-navy p, .section-navy-dark p,
.section-navy li, .section-navy-dark li,
.section-navy .about-details p, .section-navy-dark .about-details p {
  color: rgba(248, 250, 252, 0.88) !important;
}

/* =====================
   About Summary (Modern)
   ===================== */
.about-modern-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-modern-grid {
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
  }
}

.about-modern-image {
  position: relative;
  border-radius: 20px;
}

.about-modern-image img {
  border-radius: 20px;
  width: 100%;
  height: auto;
  box-shadow: 0 25px 50px -12px rgba(10, 17, 40, 0.3);
  position: relative;
  z-index: 1;
}

.about-experience-badge {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background: linear-gradient(135deg, var(--pv-orange), var(--pv-orange-dark));
  color: #fff;
  padding: 2rem;
  border-radius: 16px;
  z-index: 2;
  box-shadow: 0 20px 40px -10px rgba(232, 93, 4, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.about-experience-badge .badge-number {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
}

.about-experience-badge .badge-text {
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.5rem;
}

.about-modern-text .premium-heading {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--pv-navy);
  margin-bottom: 2rem;
  line-height: 1.2;
}

.about-modern-text p {
  font-size: 1.125rem;
  color: var(--pv-gray-dark);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.about-modern-text p:last-of-type {
  margin-bottom: 2.5rem;
}

/* =====================
   Problems Section
   ===================== */
.problems-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .problems-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.problem-card {
  padding: 3rem 2.5rem;
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 20px;
  background: rgba(10, 17, 40, 0.4);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.problem-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.05), transparent);
  transform: skewX(-20deg);
  transition: all 0.6s ease;
}

.problem-card:hover::before {
  left: 200%;
}

.problem-card:hover {
  background: rgba(10, 17, 40, 0.7);
  border-color: rgba(251, 133, 0, 0.5);
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(251, 133, 0, 0.15);
}

.problem-card .icon {
  color: var(--pv-orange);
  margin-bottom: 1rem;
  width: 32px;
  height: 32px;
}

.problem-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
}

.problem-card p {
  color: rgba(248, 250, 252, 0.7);
}

/* =====================
   Services / 8-Phase Grid
   ===================== */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.service-card {
  background: #fff;
  padding: 2.5rem 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px -10px rgba(10, 17, 40, 0.05);
  border: 1px solid rgba(10, 17, 40, 0.03);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px -12px rgba(10, 17, 40, 0.15);
  border-color: rgba(251, 133, 0, 0.3);
}

.service-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

.service-card-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: var(--pv-gray-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.service-card:hover .service-card-icon {
  background: linear-gradient(135deg, var(--pv-orange), var(--pv-orange-dark));
}

.service-card-icon svg {
  width: 28px;
  height: 28px;
  color: var(--pv-navy);
  transition: color 0.4s ease;
}

.service-card:hover .service-card-icon svg {
  color: #fff;
}

.service-card-num {
  position: absolute;
  top: -10px;
  right: -10px;
  font-size: 6rem;
  font-weight: 800;
  color: rgba(10, 17, 40, 0.03);
  transition: all 0.5s ease;
  line-height: 1;
  z-index: 0;
  pointer-events: none;
}

.service-card:hover .service-card-num {
  color: rgba(251, 133, 0, 0.05);
  transform: scale(1.1) translate(-10px, 10px);
}

.service-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--pv-navy);
  margin-bottom: 0.5rem;
}

.service-card p {
  font-size: 0.875rem;
  color: var(--pv-gray);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Services Page (Full cards) */
.services-grid-full .service-card {
  padding: 2rem;
}

.services-grid-full .service-card-icon {
  background: rgba(245, 124, 0, 0.1);
  margin-bottom: 1.5rem;
}

.services-grid-full .service-card-icon svg {
  color: var(--pv-orange);
}

.services-grid-full .service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.services-grid-full .service-card p {
  font-size: 0.875rem;
  line-height: 1.75;
  -webkit-line-clamp: unset;
  flex-grow: 1;
}

/* =====================
   Stats Section
   ===================== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  text-align: center;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-item {
  padding: 3rem 1.5rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 20px;
  box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.02);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}

.stat-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.5), inset 0 0 20px rgba(251, 133, 0, 0.1);
  border-color: rgba(251, 133, 0, 0.3);
  background: rgba(255, 255, 255, 0.04);
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--pv-orange-light), var(--pv-orange-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 30px rgba(251, 133, 0, 0.3);
}

@media (min-width: 768px) {
  .stat-number {
    font-size: 4rem;
  }
}

.section-navy p.stat-label,
.section-navy-dark p.stat-label,
#stats-section p.stat-label,
.stat-label {
  font-size: 0.95rem;
  font-weight: 700;
  color: #040814 !important;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* =====================
   Projects Section
   ===================== */
.projects-header {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .projects-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
}

.projects-header-text {
  max-width: 42rem;
}

.projects-header-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.5rem;
}

.projects-header-text p {
  font-size: 1.125rem;
  color: rgba(248, 250, 252, 0.8);
}

.projects-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .projects-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.project-card-dark {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.project-card-dark:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.6);
  border-color: rgba(251, 133, 0, 0.4);
}

.project-card-dark .project-image {
  height: 18rem;
  overflow: hidden;
  position: relative;
}

.project-card-dark .project-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, var(--pv-navy-dark));
  opacity: 0.8;
  transition: opacity 0.5s ease;
}

.project-card-dark:hover .project-image::after {
  opacity: 0.4;
}

.project-card-dark .project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s ease;
}

.project-card-dark:hover .project-image img {
  opacity: 1;
  transform: scale(1.15);
}

.project-card-dark .project-info {
  padding: 1.5rem;
}

.project-card-dark .project-industry {
  color: var(--pv-orange);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.project-card-dark .project-client {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}

.project-card-dark .project-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  color: rgba(248, 250, 252, 0.7);
}

/* Project Card (Projects Page — light bg) */
.project-card {
  background: #fff;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  transition: all 0.3s;
}

.project-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
}

.project-card .project-image {
  height: 12rem;
  overflow: hidden;
  position: relative;
}

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

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

.project-status {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 9999px;
}

.status-completed {
  background: #dcfce7;
  color: #166534;
}

.status-progress {
  background: #fef3c7;
  color: #92400e;
}

.project-card .project-info {
  padding: 1.5rem;
}

.project-card .project-industry {
  color: var(--pv-orange);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.project-card .project-client {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--pv-navy);
  margin-bottom: 0.5rem;
}

.project-card .project-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  color: var(--pv-gray);
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #f3f4f6;
}

.project-card .project-meta .capacity {
  font-weight: 600;
  color: var(--pv-navy);
}

.project-card .project-year {
  font-size: 0.875rem;
  color: var(--pv-gray);
  margin-top: 0.5rem;
}

/* Filter Buttons */
.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.filter-btn {
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.2s;
  cursor: pointer;
  border: 1px solid #e5e7eb;
  background: #fff;
  color: var(--pv-navy);
}

.filter-btn:hover {
  border-color: var(--pv-orange);
  color: var(--pv-orange);
}

.filter-btn.active {
  background: var(--pv-orange);
  color: #fff;
  border-color: var(--pv-orange);
}

/* =====================
   Industries
   ===================== */
.industries-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .industries-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.industry-card {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  aspect-ratio: 4 / 3;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}

.industry-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}

.industry-card:hover img {
  transform: scale(1.1);
}

.industry-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--pv-navy-dark), rgba(15, 32, 60, 0.6), transparent);
  opacity: 0.8;
  transition: opacity 0.3s;
}

.industry-card:hover .industry-card-overlay {
  opacity: 0.9;
}

.industry-card-content {
  position: absolute;
  inset: 0;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.industry-card-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
}

.industry-card-content p {
  color: rgba(248, 250, 252, 0.9);
  font-size: 0.875rem;
  transform: translateY(1rem);
  opacity: 0;
  transition: all 0.3s;
}

.industry-card:hover .industry-card-content p {
  transform: translateY(0);
  opacity: 1;
}

/* =====================
   Training
   ===================== */
.training-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 768px) {
  .training-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.training-card {
  background: #fff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  border: 1px solid var(--pv-gray-light);
  height: 100%;
}

.training-card h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--pv-navy);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e5e7eb;
}

.training-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.training-item {
  display: flex;
  gap: 1rem;
}

.training-year {
  font-weight: 700;
  color: var(--pv-orange);
  min-width: 50px;
}

.training-desc {
  color: var(--pv-gray);
}

/* =====================
   Contact
   ===================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-form-card {
  background: #fff;
  padding: 3rem 2rem;
  border-radius: 1.5rem;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.1);
  border: 1px solid #f3f4f6;
  position: relative;
  overflow: hidden;
}

.contact-form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(135deg, var(--pv-orange-light), var(--pv-orange-dark));
}

.contact-form-card h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--pv-navy);
  margin-bottom: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .form-row-2 {
    grid-template-columns: 1fr 1fr;
  }
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--pv-gray-dark);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  border-radius: 0.75rem;
  border: 1px solid #e5e7eb;
  background: #f9fafb;
  outline: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 1rem;
}

.form-group textarea {
  resize: vertical;
  max-height: 16rem;
  min-height: 120px;
}

.form-group input:focus,
.form-group textarea:focus {
  background: #fff;
  border-color: rgba(245, 124, 0, 0.5);
  box-shadow: 0 0 0 4px rgba(245, 124, 0, 0.1);
  transform: translateY(-2px);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info-card {
  background: #fff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
  border: 1px solid #f3f4f6;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-info-card:hover {
  transform: translateX(10px);
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
  border-color: rgba(245, 124, 0, 0.3);
}

.contact-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(245, 124, 0, 0.1), rgba(245, 124, 0, 0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.4s ease;
}

.contact-info-card:hover .contact-icon {
  background: linear-gradient(135deg, var(--pv-orange-light), var(--pv-orange-dark));
}

.contact-icon svg {
  width: 28px;
  height: 28px;
  color: var(--pv-orange);
  transition: all 0.4s ease;
}

.contact-info-card:hover .contact-icon svg {
  color: #fff;
  transform: scale(1.1);
}

.contact-info-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--pv-navy);
  margin-bottom: 0.5rem;
}

.contact-info-card p,
.contact-info-card a {
  color: var(--pv-gray);
}

.contact-info-card a:hover {
  color: var(--pv-orange);
}

/* =====================
   About Page
   ===================== */
.about-grid-page {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 6rem;
}

@media (min-width: 768px) {
  .about-grid-page {
    grid-template-columns: 1fr 1fr;
  }
}

.about-image-rounded {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
  aspect-ratio: 1;
}

@media (min-width: 768px) {
  .about-image-rounded {
    aspect-ratio: auto;
    height: 600px;
  }
}

.about-image-rounded img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image-rounded::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(15, 32, 60, 0.1);
}

.about-details h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--pv-navy);
  margin-bottom: 1.5rem;
}

.about-details p {
  color: var(--pv-gray);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.why-choose {
  padding-top: 1.5rem;
  border-top: 1px solid #e5e7eb;
}

.why-choose h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--pv-navy);
  margin-bottom: 1rem;
}

.why-choose-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.why-choose-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.check-icon {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: rgba(245, 124, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.check-icon span {
  color: var(--pv-orange);
  font-weight: 700;
  font-size: 0.875rem;
}

.why-choose-item p {
  color: var(--pv-gray);
  margin-bottom: 0;
}

/* =====================
   CTA Section
   ===================== */
.cta-section {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-section .container {
  position: relative;
  z-index: 10;
  max-width: 56rem;
}

.cta-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .cta-section h2 {
    font-size: 3rem;
  }
}

.cta-section p {
  font-size: 1.25rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 2.5rem;
}

.cta-section .btn {
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
}

/* =====================
   Footer
   ===================== */
.footer {
  background: var(--pv-navy-dark);
  color: #F8FAFC;
  padding-top: 4rem;
  padding-bottom: 2rem;
  border-top: 1px solid rgba(15, 32, 60, 0.5);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.7;
}

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

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 2rem;
  }
}

.footer-brand p {
  color: rgba(248, 250, 252, 0.95);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.footer-brand .logo-img {
  height: 3rem;
  width: auto;
  object-fit: contain;
  background: #fff;
  border-radius: 0.375rem;
  padding: 0.25rem;
  margin-bottom: 1.5rem;
}

.footer-brand a {
  color: rgba(248, 250, 252, 0.9);
  transition: color 0.2s;
  font-weight: 500;
}

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

.footer h3 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-links a {
  font-size: 0.95rem;
  color: rgba(248, 250, 252, 0.92);
  transition: color 0.2s;
  font-weight: 400;
}

.footer-links a:hover {
  color: var(--pv-orange);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: rgba(248, 250, 252, 0.95);
  font-weight: 400;
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  color: var(--pv-orange);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-item a {
  color: rgba(248, 250, 252, 0.95);
  transition: color 0.2s;
  font-weight: 400;
}

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

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.15);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  font-size: 0.875rem;
  color: rgba(248, 250, 252, 0.85);
  font-weight: 400;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-bottom-links {
  display: flex;
  gap: 1rem;
}

.footer-bottom-links a {
  color: rgba(248, 250, 252, 0.85);
  transition: color 0.2s;
  font-weight: 400;
}

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

/* =====================
   WhatsApp Widget
   ===================== */
.whatsapp-widget {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 50;
  background: #25D366;
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
  transition: all 0.3s;
  transform: scale(0);
  opacity: 0;
}

.whatsapp-widget.visible {
  transform: scale(1);
  opacity: 1;
}

.whatsapp-widget:hover {
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
  transform: scale(1.1);
}

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

/* =====================
   Fade-In Animations
   ===================== */
.fade-in {
  opacity: 0;
  transform: translateY(30px) translateZ(0);
  transition: opacity 0.5s cubic-bezier(0.2, 0.8, 0.2, 1),
              transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform, opacity;
}

.fade-in.from-left {
  transform: translateX(30px) translateZ(0);
}

.fade-in.from-right {
  transform: translateX(-30px) translateZ(0);
}

.fade-in.from-none {
  transform: none;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0) translateX(0) translateZ(0);
}

/* Delay helpers */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }
.delay-7 { transition-delay: 0.7s; }

/* =====================
   Page Top Padding
   ===================== */
.page-section {
  padding: 5rem 0;
}

.page-bg-light {
  background: var(--pv-gray-light);
  min-height: 100vh;
}

/* =====================
   Contact Page
   ===================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-top: 1rem;
}

@media (min-width: 992px) {
  .contact-grid {
    grid-template-columns: 1.4fr 1fr;
    gap: 3.5rem;
  }
}

.contact-form-card {
  background: #fff;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 15px 40px rgba(10, 17, 40, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.06);
  font-family: var(--font-sans);
}

.contact-form-card h2 {
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--pv-navy);
  margin-bottom: 2rem;
  line-height: 1.3;
}

/* Form Elements */
.form-row {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 0;
}

.form-row-2 {
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .form-row-2 {
    grid-template-columns: 1fr 1fr;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  font-family: var(--font-sans);
}

.form-group label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--pv-navy);
  letter-spacing: 0.01em;
}

.form-group input,
.form-group textarea,
.form-group select {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 400;
  color: var(--pv-navy);
  background: var(--pv-gray-light);
  border: 1.5px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  transition: all 0.25s ease;
  outline: none;
  width: 100%;
  line-height: 1.5;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--pv-gray);
  font-weight: 400;
  opacity: 0.7;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--pv-orange);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(251, 133, 0, 0.12);
}

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

/* Contact Info Side */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 1.15rem;
  background: #fff;
  border-radius: 16px;
  padding: 1.75rem;
  box-shadow: 0 8px 25px rgba(10, 17, 40, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  font-family: var(--font-sans);
}

.contact-info-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(10, 17, 40, 0.1);
  border-color: rgba(251, 133, 0, 0.2);
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--pv-orange), var(--pv-orange-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(251, 133, 0, 0.3);
}

.contact-icon svg {
  width: 22px;
  height: 22px;
  color: #fff;
}

.contact-info-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--pv-navy);
  margin-bottom: 0.35rem;
  line-height: 1.3;
}

.contact-info-card p {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--pv-gray-dark);
  line-height: 1.7;
  margin: 0;
}

/* Contact page dark section overrides */
.section-navy-dark .contact-info-card {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}

.section-navy-dark .contact-info-card h3 {
  color: #fff;
}

.section-navy-dark .contact-info-card p {
  color: rgba(248, 250, 252, 0.88);
}

@media (max-width: 768px) {
  .contact-form-card {
    padding: 1.75rem;
  }
  .contact-info-card {
    padding: 1.35rem;
  }
}

/* =====================
   Utility helpers
   ===================== */
.text-center { text-align: center; }
.text-white { color: #fff; }
.text-orange { color: var(--pv-orange); }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* =====================
   Service Detail Pages & Clickable Cards
   ===================== */
a.service-card {
  text-decoration: none !important;
  color: inherit !important;
  display: flex;
  flex-direction: column;
}

.service-card-link-text {
  margin-top: auto;
  padding-top: 1.25rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--pv-orange);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: transform 0.3s ease;
}

.service-card:hover .service-card-link-text {
  transform: translateX(6px);
}

.service-detail-section {
  padding: 5rem 0;
  background-color: var(--pv-navy-dark);
  color: #fff;
  min-height: 75vh;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: start;
}

@media (min-width: 992px) {
  .service-detail-grid {
    grid-template-columns: 2.2fr 1fr;
    gap: 4.5rem;
  }
}

.service-main-content h2 {
  font-size: 1.85rem;
  font-weight: 800;
  color: #fff;
  margin-top: 2.5rem;
  margin-bottom: 1.25rem;
  line-height: 1.3;
}

.service-main-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(248, 250, 252, 0.88);
  margin-bottom: 1.5rem;
}

.service-hero-img {
  width: 100%;
  height: auto;
  max-height: 460px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.15);
  margin-bottom: 2.5rem;
  display: block;
}

.service-deliverables-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 2.5rem 0;
}

.service-deliverables-list li {
  position: relative;
  padding-left: 2.2rem;
  margin-bottom: 1.2rem;
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(248, 250, 252, 0.9);
}

.service-deliverables-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--pv-orange);
  font-weight: 900;
  font-size: 1.3rem;
}

.service-sidebar {
  position: -webkit-sticky;
  position: sticky;
  top: 110px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.service-nav-box,
.service-cta-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 2rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(12px);
}

.service-nav-box h3,
.service-cta-box h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--pv-orange);
}

.service-nav-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.service-nav-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.15rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.02);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.service-nav-item:hover,
.service-nav-item.active {
  background: linear-gradient(135deg, var(--pv-orange), var(--pv-orange-dark));
  color: #ffffff !important;
  font-weight: 700;
  transform: translateX(5px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 25px rgba(251, 133, 0, 0.35);
}

.service-cta-box p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

/* =====================
   Filerwaale-Inspired Modern Styles 
   ===================== */
.text-primary { color: var(--pv-orange) !important; }

/* Hero Modern */
.hero-modern {
  background: var(--pv-gray-light);
  padding: 8rem 0 4rem;
  min-height: auto;
  position: relative;
  overflow: hidden;
}
.hero-modern-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.hero-modern-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  background: rgba(251, 133, 0, 0.1);
  color: var(--pv-orange-dark);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.hero-modern-badge svg { color: var(--pv-orange); }
.hero-modern-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--pv-navy);
  line-height: 1.15;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.hero-modern-subtitle {
  font-size: 1.125rem;
  color: var(--pv-gray);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 90%;
}
.hero-modern-btns {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
}
.hero-modern-stats {
  display: flex;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.hm-stat {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.hm-stat-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(251, 133, 0, 0.1);
  color: var(--pv-orange);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hm-stat-icon svg { width: 22px; height: 22px; }
.hm-stat-text {
  display: flex;
  flex-direction: column;
}
.hm-stat-text strong {
  font-size: 1.15rem;
  color: var(--pv-navy);
  line-height: 1.2;
}
.hm-stat-text span {
  font-size: 0.85rem;
  color: var(--pv-gray);
}
.hm-image-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.15);
}
.hm-image-wrapper img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* Features Row */
.hm-features-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
  background: #fff;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}
.hm-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.hm-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(251, 133, 0, 0.08);
  color: var(--pv-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hm-feature-icon svg { width: 24px; height: 24px; }
.hm-feature-text strong {
  display: block;
  font-size: 1.05rem;
  color: var(--pv-navy);
  margin-bottom: 0.25rem;
}
.hm-feature-text span {
  font-size: 0.875rem;
  color: var(--pv-gray);
  line-height: 1.5;
}

/* Trusted Clients Modern */
.trusted-clients-modern {
  background: #fff;
  padding: 3rem 0;
  border-top: 1px solid rgba(0,0,0,0.05);
}
.trusted-clients-modern p {
  text-align: center;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--pv-gray);
  margin-bottom: 2rem;
  font-weight: 700;
}

/* Section Header Modern */
.section-header-modern {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}
.section-header-modern h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--pv-navy);
  margin-bottom: 1rem;
}
.section-header-modern p {
  font-size: 1.125rem;
  color: var(--pv-gray);
}

/* Services Grid Modern */
.services-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.service-card-modern {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
  display: block;
  box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}
.service-card-modern:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  border-color: rgba(251, 133, 0, 0.3);
}
.scm-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(251, 133, 0, 0.1);
  color: var(--pv-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.scm-icon svg { width: 28px; height: 28px; }
.service-card-modern h3 {
  font-size: 1.25rem;
  color: var(--pv-navy);
  margin-bottom: 0.75rem;
  font-weight: 700;
}
.service-card-modern p {
  color: var(--pv-gray);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* About Grid Modern */
.about-grid-modern {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-image-wrapper-modern {
  position: relative;
  border-radius: 24px;
  overflow: visible;
}
.about-image-wrapper-modern img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  display: block;
}
.floating-stat-card {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: #fff;
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 10;
}
.fsc-icon {
  width: 48px;
  height: 48px;
  background: var(--pv-orange);
  color: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fsc-text strong { display: block; font-size: 1.25rem; color: var(--pv-navy); }
.fsc-text span { font-size: 0.875rem; color: var(--pv-gray); }

/* Problems Grid Modern */
.problems-grid-modern {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.problem-card-modern {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
}
.pcm-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: rgba(251, 133, 0, 0.15);
  color: var(--pv-orange);
  display: flex;
  align-items: center;
  justify-content: center;
}
.pcm-icon svg { width: 32px; height: 32px; }
.problem-card-modern h3 { color: #fff; margin-bottom: 1rem; font-size: 1.25rem; }
.problem-card-modern p { color: rgba(255,255,255,0.7); font-size: 0.95rem; }

/* Projects Modern */
.projects-header-modern {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
}
.projects-header-text h2 { font-size: 2.5rem; font-weight: 800; color: var(--pv-navy); }
.projects-header-text p { color: var(--pv-gray); font-size: 1.125rem; margin-top: 0.5rem; }
.projects-grid-modern {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.project-card-modern {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.04);
}
.project-image-modern { position: relative; height: 240px; }
.project-image-modern img { width: 100%; height: 100%; object-fit: cover; }
.project-badge-modern {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #fff;
  color: var(--pv-navy);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.project-info-modern { padding: 1.5rem; }
.project-info-modern h3 { font-size: 1.25rem; color: var(--pv-navy); margin-bottom: 1rem; }
.project-meta-modern {
  display: flex;
  justify-content: space-between;
  color: var(--pv-gray);
  font-size: 0.875rem;
}
.project-meta-modern span { display: flex; align-items: center; gap: 0.4rem; }
.project-meta-modern svg { width: 16px; height: 16px; color: var(--pv-orange); }

/* CTA Modern */
.section-orange-modern {
  background: linear-gradient(135deg, var(--pv-orange-light), var(--pv-orange-dark));
  padding: 6rem 0;
  text-align: center;
}
.cta-section-modern h2 { color: #fff; font-size: 2.5rem; font-weight: 800; margin-bottom: 1rem; }
.cta-section-modern p { color: rgba(255,255,255,0.9); font-size: 1.125rem; max-width: 600px; margin: 0 auto 2rem; }

/* Responsive adjustments */
@media(max-width: 1024px) {
  .hero-modern-grid, .about-grid-modern { grid-template-columns: 1fr; }
  .hm-features-row { grid-template-columns: repeat(2, 1fr); }
  .projects-grid-modern { grid-template-columns: repeat(2, 1fr); }
}
@media(max-width: 768px) {
  .hm-features-row { grid-template-columns: 1fr; }
  .hero-modern-stats { flex-direction: column; gap: 1rem; }
  .problems-grid-modern, .projects-grid-modern { grid-template-columns: 1fr; }
  .projects-header-modern { flex-direction: column; align-items: flex-start; gap: 1rem; }
}

/* =====================
   Project Gallery Page
   ===================== */
.gallery-section {
  padding: 5rem 0 4rem;
  background: var(--pv-gray-light);
  min-height: 100vh;
}

.gallery-header {
  text-align: center;
  margin-bottom: 3rem;
}

.gallery-header h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--pv-navy);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.gallery-header p {
  color: var(--pv-gray);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  box-shadow: 0 8px 25px rgba(10, 17, 40, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease;
}

.gallery-item:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 20px 50px rgba(10, 17, 40, 0.15);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 17, 40, 0.7) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-overlay span {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.gallery-item-zoom {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.6);
  width: 52px;
  height: 52px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.gallery-item:hover .gallery-item-zoom {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.gallery-item-zoom svg {
  width: 22px;
  height: 22px;
  color: var(--pv-navy);
}

/* Featured gallery items (span 2 columns) */
.gallery-item.featured {
  grid-column: span 2;
  aspect-ratio: 16/9;
}

/* Lightbox */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.gallery-lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
}

.lightbox-content img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-lightbox.active .lightbox-content img {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: -50px;
  right: 0;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, transform 0.3s ease;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #fff;
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, transform 0.3s ease;
}

.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.3);
}

.lightbox-prev {
  left: -70px;
}

.lightbox-next {
  right: -70px;
}

.lightbox-counter {
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin-top: 1rem;
  font-weight: 500;
}

/* Gallery Responsive */
@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-item.featured {
    grid-column: span 2;
  }
}

@media (max-width: 640px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .gallery-item.featured {
    grid-column: span 1;
  }
  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }
  .lightbox-close { top: 10px; right: 10px; }
}

/* =====================
   Video Gallery Page
   ===================== */
.video-gallery-section {
  padding: 5rem 0 4rem;
  background: var(--pv-gray-light);
  min-height: 100vh;
}

.video-gallery-header {
  text-align: center;
  margin-bottom: 3rem;
}

.video-gallery-header h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--pv-navy);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.video-gallery-header p {
  color: var(--pv-gray);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.video-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.video-gallery-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 35px rgba(10, 17, 40, 0.07);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease;
}

.video-gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(10, 17, 40, 0.12);
}

.video-gallery-card.featured-video {
  grid-column: span 2;
}

.video-gallery-thumb {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--pv-navy);
  overflow: hidden;
}

.video-gallery-thumb video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-gallery-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.video-gallery-card:hover .video-gallery-play {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.video-gallery-play svg {
  width: 28px;
  height: 28px;
  color: var(--pv-orange);
  margin-left: 3px;
}

.video-gallery-info {
  padding: 1.5rem 2rem;
}

.video-gallery-info h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--pv-navy);
  margin-bottom: 0.5rem;
}

.video-gallery-info p {
  color: var(--pv-gray);
  font-size: 0.95rem;
  line-height: 1.6;
}

.video-gallery-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(242, 101, 34, 0.08);
  color: var(--pv-orange);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
  margin-bottom: 0.75rem;
}

/* Placeholder cards */
.video-gallery-card.placeholder-card {
  opacity: 0.6;
  cursor: default;
}

.video-gallery-card.placeholder-card:hover {
  transform: none;
  box-shadow: 0 10px 35px rgba(10, 17, 40, 0.07);
}

.video-placeholder-thumb {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #e8ecf1 0%, #d1d8e3 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.75rem;
}

.video-placeholder-thumb svg {
  width: 48px;
  height: 48px;
  color: #a0aec0;
}

.video-placeholder-thumb span {
  color: #a0aec0;
  font-size: 0.9rem;
  font-weight: 600;
}

/* Video Gallery Responsive */
@media (max-width: 768px) {
  .video-gallery-grid {
    grid-template-columns: 1fr;
  }
  .video-gallery-card.featured-video {
    grid-column: span 1;
  }
  .video-gallery-info {
    padding: 1.25rem 1.5rem;
  }
}
