/* ==========================================================================
   GLOBAL TEXT SELECTION HIGHLIGHT COLOR
   ========================================================================== */
::selection {
  background-color: #b87333 !important;
  color: #ffffff !important; /* Keeps the highlighted text white for good contrast */
}

::-moz-selection {
  background-color: #b87333 !important;
  color: #ffffff !important;
}

.h-120 {
  height: 120%;
}

/* ==========================================================================
   IMMERSIVE CENTERED HERO SLIDER (POLISHED & LIGHTER)
   ========================================================================== */
.hero-slider-wrapper {
  position: relative;
  width: 100%;
  height: 100vh; /* Full screen height */
  min-height: 600px;
  background-color: #050505;
  overflow: hidden;
}

.hero-slider-inner {
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 1s cubic-bezier(0.4, 0, 0.2, 1),
    visibility 1s;
  z-index: 1;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

/* Background with elegant slow zoom */
.slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  transform: scale(1.1);
  transition: transform 7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 1;
}

.hero-slide.active .slide-bg {
  transform: scale(1);
}

/* LIGHTER gradient overlay to let the image shine through */
.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 23, 60, 0.5) 0%,
    rgba(0, 0, 0, 0.4) 100%
  );
  z-index: 2;
}

.slide-container {
  position: relative;
  height: 100%;
  z-index: 10;
}

.slide-content-wrap {
  max-width: 900px;
  margin: 0 auto;
}

/* Original Typography Fonts + Centered Alignment + Drop Shadow for Contrast */
.slide-title {
  font-family: "Teko", sans-serif;
  font-size: 72px;
  line-height: 1.1;
  font-weight: 500;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 25px;
  letter-spacing: 1px;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4); /* Ensures readability on lighter images */
  opacity: 0;
  transform: translateY(30px);
}

.slide-text {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  line-height: 1.6;
  font-weight: 500;
  color: #f4f4f4;
  margin-bottom: 40px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
  opacity: 0;
  transform: translateY(30px);
}

.slide-btn-group {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  opacity: 0;
  transform: translateY(30px);
}

/* Restoring the ripple play button perfectly */
.slide-btn-group .play-now {
  position: relative;
  width: 65px;
  height: 65px;
  display: block;
}

.slide-btn-group .play-now .icon {
  left: 0;
  top: 0;
  transform: none;
}

.slide-btn-group .play-now .ripple,
.slide-btn-group .play-now .ripple:before,
.slide-btn-group .play-now .ripple:after {
  left: 0;
  top: 0;
  transform: none;
}

/* Staggered text entrance animations */
.hero-slide.active .slide-title {
  transition: all 0.8s ease 0.3s;
  opacity: 1;
  transform: translateY(0);
}
.hero-slide.active .slide-text {
  transition: all 0.8s ease 0.5s;
  opacity: 1;
  transform: translateY(0);
}
.hero-slide.active .slide-btn-group {
  transition: all 0.8s ease 0.7s;
  opacity: 1;
  transform: translateY(0);
}

/* Polished Slider Dots (Pill shape on active) */
.slider-controls {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  justify-content: center;
}

.slider-dots {
  display: flex;
  gap: 10px;
  align-items: center;
}

.slider-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slider-dots .dot.active {
  background-color: #b87333;
  width: 32px; /* Expands into a premium pill shape */
  border-radius: 10px;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .slide-title {
    font-size: 55px;
  }
  .slide-text {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .hero-slider-wrapper {
    height: 80vh;
  }
  .slide-title {
    font-size: 42px;
  }
  .slide-text {
    font-size: 16px;
  }
  .slide-btn-group {
    flex-direction: row;
    gap: 20px;
  }
  .play-now .ripple {
    left: 10px !important;
    top: 10px !important;
  }
}

/* ==========================================================================
   HIGH-END EDITORIAL ABOUT SECTION (NATIVE CSS, ZERO BOOTSTRAP)
   ========================================================================== */
.creative-about-wrap {
  padding: 120px 20px;
  background-color: #ffffff;
  font-family: "Poppins", sans-serif;
  overflow: hidden;
}

.creative-about-inner {
  max-width: 1250px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* --- Left Side: Typography --- */
.creative-text-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.kicker-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.kicker-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #b87333;
  box-shadow: 0 0 0 4px rgba(255, 94, 21, 0.2);
}

.kicker-text {
  color: #b87333;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.creative-heading {
  font-family: "Teko", sans-serif;
  font-size: 58px;
  line-height: 1.1;
  color: #00173c;
  text-transform: uppercase;
  font-weight: 500;
  margin: 0 0 25px 0;
}

.creative-desc p {
  font-size: 16px;
  line-height: 1.8;
  color: #555555;
  margin: 0 0 20px 0;
}

.creative-desc b {
  color: #00173c;
}

.creative-link {
  color: #b87333;
  font-weight: 600;
  text-decoration: none;
  background-image: linear-gradient(#b87333, #b87333);
  background-position: 0% 100%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  transition: background-size 0.3s;
}

.creative-link:hover {
  background-size: 100% 2px;
  color: #00173c;
}

/* Sleek Hover Button */
.creative-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 15px;
  padding: 16px 36px;
  background-color: #00173c;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px; /* Modern pill shape */
  text-decoration: none;
  transition: all 0.4s ease;
  align-self: flex-start;
}

.creative-btn i {
  transition: transform 0.3s ease;
  color: #b87333;
}

.creative-btn:hover {
  background-color: #b87333;
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(255, 94, 21, 0.3);
  transform: translateY(-3px);
}

.creative-btn:hover i {
  transform: translateX(5px);
  color: #ffffff;
}

/* --- Right Side: Arched & Circular Gallery --- */
.creative-visual-box {
  position: relative;
  width: 100%;
  min-height: 600px; /* Guarantees the container never collapses */
}

/* Subtle background accent */
.visual-backdrop-grid {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 60%;
  height: 70%;
  background-image: radial-gradient(#eaedf2 2px, transparent 2px);
  background-size: 20px 20px;
  z-index: 0;
  border-radius: 20px;
}

/* The Tall Architectural Arch */
.visual-arch {
  position: absolute;
  top: 0;
  right: 0;
  width: 75%;
  height: 90%;
  border-radius: 250px 250px 15px 15px; /* Creates the stunning arch shape */
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 20px 50px rgba(0, 23, 60, 0.1);
}

.visual-arch img,
.visual-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.creative-visual-box:hover .visual-arch img {
  transform: scale(1.05);
}

/* The Overlapping Perfect Circle */
.visual-circle {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50%;
  aspect-ratio: 1 / 1; /* Forces a perfect square/circle */
  border-radius: 50%;
  overflow: hidden;
  border: 12px solid #ffffff; /* Clean white border */
  z-index: 2;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  animation: gentleFloat 6s ease-in-out infinite;
}

/* Floating Precision Badge */
.visual-badge {
  position: absolute;
  top: 15%;
  left: 5%;
  width: 130px;
  height: 130px;
  background-color: #b87333;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  box-shadow: 0 15px 30px rgba(255, 94, 21, 0.3);
  animation: gentleFloat 5s ease-in-out infinite reverse;
}

/* Spinning dashed ring for an engineered look */
.badge-ring {
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border: 1px dashed rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  animation: spinRing 20s linear infinite;
}

.badge-content {
  text-align: center;
  color: #ffffff;
}

.badge-top {
  display: block;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}

.badge-bottom {
  display: block;
  font-family: "Teko", sans-serif;
  font-size: 42px;
  line-height: 1;
  font-weight: 500;
}

/* Animations */
@keyframes gentleFloat {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes spinRing {
  100% {
    transform: rotate(360deg);
  }
}

/* --- Responsive Rules --- */
@media (max-width: 1024px) {
  .creative-about-inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .creative-visual-box {
    max-width: 550px;
    margin: 0 auto;
    min-height: 550px;
  }
}

@media (max-width: 575px) {
  .creative-about-wrap {
    padding: 70px 15px;
  }
  .creative-heading {
    font-size: 42px;
  }

  .creative-visual-box {
    min-height: 400px;
  }

  .visual-arch {
    border-radius: 150px 150px 10px 10px;
  }

  .visual-badge {
    width: 100px;
    height: 100px;
    top: 5%;
    left: -5%;
  }

  .badge-bottom {
    font-size: 32px;
  }
}

/* ==========================================================================
   ELEVATED TRUSTED BRANDS SECTION (NATIVE CSS, ZERO BOOTSTRAP)
   ========================================================================== */
.creative-brands-section {
  padding: 80px 20px;
  background-color: #f8f9fc; /* Soft studio backdrop matching the flow */
  border-top: 1px solid #eaedf2;
  border-bottom: 1px solid #eaedf2;
}

.creative-brands-container {
  max-width: 1250px;
  margin: 0 auto;
  width: 100%;
}

/* Header Styling */
.brands-section-header {
  text-align: center;
  margin-bottom: 45px;
}

.brands-subtitle {
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  color: #b87333;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 700;
  margin-bottom: 10px;
}

.brands-title {
  font-family: "Teko", sans-serif;
  font-size: 48px;
  line-height: 1.1;
  color: #00173c;
  text-transform: uppercase;
  font-weight: 500;
  margin: 0;
}

.brands-title .highlight-text {
  color: #b87333;
}

/* Native CSS Grid Layout */
.creative-brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  align-items: stretch;
}

/* Individual Brand Card */
.brand-card {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 30px 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 4px 12px rgba(0, 23, 60, 0.03);
}

.brand-card img {
  max-width: 100%;
  max-height: 100px;
  object-fit: contain;
  /* filter: grayscale(100%) opacity(0.5); */
  transition: all 0.4s ease;
}

/* Hover State */
.brand-card:hover {
  background-color: #ffffff;
  border-color: #b87333;
  box-shadow: 0 12px 30px rgba(255, 94, 21, 0.12);
  transform: translateY(-4px);
}

.brand-card:hover img {
  filter: grayscale(0%) opacity(1); /* Snaps to full vivid color */
  transform: scale(1.06);
}

/* Responsive Adaptations */
@media (max-width: 767px) {
  .creative-brands-section {
    padding: 60px 15px;
  }
  .brands-title {
    font-size: 38px;
  }
  .creative-brands-grid {
    grid-template-columns: repeat(
      2,
      1fr
    ); /* 2 columns on mobile for readability */
    gap: 15px;
  }
  .brand-card {
    padding: 20px 10px;
  }
}
/* ==========================================================================
   CONTINUOUS GLASSMORPHISM STATS SECTION (NO BOOTSTRAP)
   ========================================================================== */
.stats-infinity-section {
  position: relative;
  padding: 120px 20px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* Creates a premium parallax effect */
}

/* Very subtle overlay to ensure the background image shines through */
.stats-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 23, 60, 0.4) 0%,
    rgba(0, 0, 0, 0.3) 100%
  );
  z-index: 1;
}

.stats-infinity-container {
  position: relative;
  z-index: 2;
  max-width: 1250px;
  margin: 0 auto;
  width: 100%;
}

/* The Frosted Glass Panel */
.stats-glass-panel {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(0, 23, 60, 0.65); /* Semi-transparent navy */
  backdrop-filter: blur(12px); /* Creates the frosted glass effect */
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

/* Individual Stat Blocks */
.stat-block {
  padding: 50px 20px;
  text-align: center;
  position: relative;
  transition: background 0.4s ease;
}

/* Internal Dividers */
.stat-block:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 20%;
  right: 0;
  width: 1px;
  height: 60%;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0.2),
    rgba(255, 255, 255, 0)
  );
}

.stat-block:hover {
  background: rgba(255, 255, 255, 0.05);
}

/* Glowing Icon Styling */
.stat-icon {
  font-size: 36px;
  color: #b87333;
  margin-bottom: 15px;
  transition:
    transform 0.4s ease,
    text-shadow 0.4s ease;
}

.stat-block:hover .stat-icon {
  transform: translateY(-5px) scale(1.1);
  text-shadow: 0 10px 20px rgba(255, 94, 21, 0.6);
}

/* Typography */
.stat-number {
  font-family: "Teko", sans-serif;
  font-size: 65px;
  line-height: 1;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 5px 0;
}

.stat-number .plus {
  color: #b87333;
  font-size: 55px;
  vertical-align: top;
}

.stat-label {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #d1d8e0;
  margin: 0;
}

/* --- Responsive Adjustments --- */
@media (max-width: 991px) {
  .stats-infinity-section {
    padding: 80px 15px;
  }

  .stats-glass-panel {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Adjust dividers for 2-column layout */
  .stat-block:nth-child(2)::after {
    display: none;
  }
  .stat-block:nth-child(1),
  .stat-block:nth-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
}

@media (max-width: 575px) {
  .stats-infinity-section {
    padding: 60px 15px;
  }
  .stats-glass-panel {
    grid-template-columns: 1fr;
  }
  .stat-block {
    padding: 35px 20px;
  }

  /* Remove all vertical dividers, add horizontal borders */
  .stat-block::after {
    display: none !important;
  }
  .stat-block:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .stat-number {
    font-size: 55px;
  }
}

/* ==========================================================================
   ELEGANT INTERACTIVE SERVICES SECTION (NATIVE CSS, ZERO BOOTSTRAP)
   ========================================================================== */
.services-interactive-section {
  padding: 120px 20px;
  background-color: #f8f9fc; /* Soft gray maintains a clean, premium flow */
}

.services-interactive-container {
  max-width: 1250px;
  margin: 0 auto;
  width: 100%;
}

/* --- Header Styling --- */
.services-header-wrapper {
  text-align: center;
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.services-kicker {
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #b87333;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 700;
  margin-bottom: 15px;
}

.services-headline {
  font-family: "Teko", sans-serif;
  font-size: 56px;
  line-height: 1.1;
  color: #00173c;
  text-transform: uppercase;
  font-weight: 500;
  margin: 0 0 20px 0;
}

.services-headline .text-orange {
  color: #b87333;
}

.services-subtext {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  color: #6c7a87;
  line-height: 1.6;
  margin: 0;
}

/* --- Native CSS Grid --- */
.services-reveal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* --- Interactive Reveal Cards --- */
.service-reveal-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 480px; /* Tall, elegant card ratio */
  cursor: pointer;
  box-shadow: 0 15px 35px rgba(0, 23, 60, 0.08);
}

.service-image-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.service-image-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Base dark gradient overlay for text readability */
.service-image-bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 23, 60, 0) 30%,
    rgba(0, 23, 60, 0.9) 100%
  );
  transition: background 0.5s ease;
}

/* Content Container */
.service-overlay-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 40px 30px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.service-visible-top {
  transition: transform 0.4s ease;
}

.service-index {
  font-family: "Teko", sans-serif;
  font-size: 48px;
  line-height: 1;
  color: #b87333;
  display: block;
  margin-bottom: 10px;
  opacity: 0.8;
}

.service-card-title {
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
  line-height: 1.3;
}

/* The Hidden Section that reveals on hover */
.service-hidden-bottom {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card-desc {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #d1d8e0;
  line-height: 1.6;
  margin: 20px 0;
}

.service-action-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #b87333;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.service-action-link i {
  transition: transform 0.3s ease;
}

/* --- Hover Interactivity --- */
.service-reveal-card:hover .service-image-bg img {
  transform: scale(1.08); /* Slow zoom */
}

.service-reveal-card:hover .service-image-bg::after {
  background: linear-gradient(
    to bottom,
    rgba(0, 23, 60, 0.6) 0%,
    rgba(0, 23, 60, 0.95) 100%
  );
}

.service-reveal-card:hover .service-visible-top {
  transform: translateY(0); /* Shifts title slightly */
}

.service-reveal-card:hover .service-hidden-bottom {
  max-height: 250px; /* Expands to show text */
  opacity: 1;
  transform: translateY(0);
}

.service-action-link:hover {
  color: #ffffff;
}

.service-action-link:hover i {
  transform: translateX(5px);
}

/* --- Responsive Adjustments --- */
@media (max-width: 1024px) {
  .services-reveal-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .services-interactive-section {
    padding: 80px 15px;
  }
  .services-headline {
    font-size: 42px;
  }
  .services-reveal-grid {
    grid-template-columns: 1fr;
  }
  .service-reveal-card {
    height: 400px;
  }
  /* On mobile, we automatically show the hidden text since there is no 'hover' on touchscreens */
  .service-hidden-bottom {
    max-height: 250px;
    opacity: 1;
    transform: translateY(0);
  }
  .service-image-bg::after {
    background: linear-gradient(
      to bottom,
      rgba(0, 23, 60, 0.2) 0%,
      rgba(0, 23, 60, 0.9) 100%
    );
  }
}

/* ==========================================================================
   ARCHITECTURAL TABBED SLIDER (REBALANCED PROPORTIONS & MAXIMIZED IMAGES)
   ========================================================================== */
.premium-spotlight-section {
  padding: 80px 0;
  background-color: #f4f7fa;
  position: relative;
  overflow: hidden;
}

/* Subtle dot-grid pattern for an "engineered" blueprint feel */
.section-grid-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(#d1d8e0 2px, transparent 2px);
  background-size: 30px 30px;
  opacity: 0.5;
  z-index: 0;
  pointer-events: none;
}

/* --- Header --- */
.spotlight-header {
  text-align: center;
  margin-bottom: 70px;
  position: relative;
  z-index: 2;
}

.spotlight-kicker {
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #b87333;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: 700;
  margin-bottom: 15px;
}

.spotlight-headline {
  font-family: "Teko", sans-serif;
  font-size: 64px;
  line-height: 1.1;
  color: #00173c;
  text-transform: uppercase;
  font-weight: 600;
  margin: 0;
}

.spotlight-headline .text-orange {
  color: #b87333;
}

/* --- Slider Wrapper & Navigation --- */
.spotlight-slider-wrapper {
  position: relative;
  max-width: 1600px;
  margin: 0 auto;
  z-index: 2;
}

.spotlight-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 70px;
  height: 70px;
  background: #ffffff;
  color: #00173c;
  border: none;
  border-radius: 50%;
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 15px 40px rgba(0, 23, 60, 0.1);
  z-index: 10;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.spotlight-nav:hover {
  background: #00173c;
  color: #ffffff;
  transform: translateY(-50%) scale(1.1);
}

.prev-spotlight {
  left: 20px;
}
.next-spotlight {
  right: 20px;
}

/* --- The Track --- */
.spotlight-track {
  display: flex;
  gap: 30px;
  padding: 30px 60px; /* Reduced side padding to fit wider cards perfectly */
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.spotlight-track::-webkit-scrollbar {
  display: none;
}

/* --- The Architectural Card (Rebalanced) --- */
.spotlight-card {
  display: flex;
  flex: 0 0 400px; /* Widened base card to give images more room */
  height: 420px; /* Sleeker, shorter height */
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 15px 35px rgba(0, 23, 60, 0.06);
  border: 1px solid #ffffff;
  scroll-snap-align: center;
  will-change: flex-basis, transform, box-shadow;
  transition:
    flex 0.7s cubic-bezier(0.25, 1, 0.5, 1),
    transform 0.7s cubic-bezier(0.25, 1, 0.5, 1),
    box-shadow 0.7s ease;
}

.spotlight-card.active {
  flex: 0 0 850px; /* Tighter total width since text is shorter */
  cursor: default;
  box-shadow: 0 30px 60px rgba(0, 23, 60, 0.15);
  transform: translateY(-8px);
}

/* 1. The Navy Spine */
.card-spine {
  width: 60px;
  height: 100%;
  background-color: #00173c;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 30px 0;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.card-spine::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: #b87333;
}

.spine-number {
  font-family: "Teko", sans-serif;
  font-size: 36px;
  line-height: 1;
  color: #b87333;
  font-weight: 500;
}

.spine-text {
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  white-space: nowrap;
  transform: rotate(-90deg);
  margin-bottom: 60px;
  opacity: 0.5;
}

/* 2. Visual Side (Maximized Image Area) */
.spotlight-visual {
  width: 340px; /* Expanded image container */
  height: 100%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0; /* Zero padding maximizes product size */
  background: #ffffff;
  position: relative;
  border-right: 1px solid #eaedf2;
  overflow: hidden;
}

/* Subtle studio spotlight glow behind the product */
.spotlight-visual::before {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  background: radial-gradient(
    circle,
    rgba(255, 94, 21, 0.06) 0%,
    rgba(255, 255, 255, 0) 70%
  );
  border-radius: 50%;
  z-index: 0;
  transition: transform 0.8s ease;
}

.spotlight-card.active .spotlight-visual::before {
  transform: scale(1.5); /* Glow expands smoothly */
}

.spotlight-visual img {
  width: 85%; /* Perfectly sizes image to the box without thick padding */
  height: 85%;
  object-fit: contain;
  position: relative;
  z-index: 1;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.spotlight-card.active .spotlight-visual img {
  transform: scale(1.1); /* Gentle zoom */
}

.expand-action {
  position: absolute;
  bottom: 25px;
  right: 25px;
  width: 40px;
  height: 40px;
  background: #f4f7fa;
  color: #00173c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: all 0.4s ease;
  z-index: 2;
}

.spotlight-card:hover .expand-action {
  background: #b87333;
  color: #ffffff;
}

.spotlight-card.active .expand-action {
  opacity: 0;
  transform: scale(0.5);
}

/* 3. Details Side (Tightened for Short Text) */
.spotlight-info {
  width: 450px; /* Shrunk width since descriptions are brief */
  height: 100%;
  flex-shrink: 0;
  background: #fafbfc;
  position: relative;
  overflow: hidden;
}

/* The Deep Watermark */
.info-watermark {
  position: absolute;
  bottom: -10%;
  right: -5%;
  font-family: "Teko", sans-serif;
  font-size: 350px;
  line-height: 1;
  color: #eaedf2;
  z-index: 1;
  pointer-events: none;
  user-select: none;
  transform: scale(0.8);
  opacity: 0;
  transition: all 0.7s ease;
}

.spotlight-card.active .info-watermark {
  transform: scale(1);
  opacity: 1;
  transition-delay: 0.3s;
}

.spotlight-info-inner {
  padding: 40px 50px; /* Tighter padding to keep text substantial */
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.spotlight-card.active .spotlight-info-inner {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.25s;
}

.info-subtitle {
  display: block;
  color: #b87333;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.spotlight-name {
  font-family: "Poppins", sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #00173c;
  margin: 0 0 20px 0;
  line-height: 1.2;
}

.spotlight-desc {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  color: #555555;
  line-height: 1.7;
  margin: 0 0 30px 0;
}

/* Engineered Line Button */
.btn-engineered {
  display: inline-flex;
  align-items: center;
  color: #00173c;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-line {
  display: inline-block;
  width: 30px;
  height: 2px;
  background-color: #b87333;
  margin: 0 15px;
  transition: width 0.3s ease;
}

.btn-engineered:hover {
  color: #b87333;
}

.btn-engineered:hover .btn-line {
  width: 50px;
}

/* --- Responsive Behavior --- */
@media (max-width: 1200px) {
  .spotlight-card.active {
    flex: 0 0 780px;
  }
  .spotlight-info {
    width: 380px;
  }
  .spotlight-name {
    font-size: 28px;
  }
}

@media (max-width: 991px) {
  .spotlight-nav {
    display: none;
  }
  .spotlight-track {
    padding: 40px 20px;
    gap: 20px;
  }

  .spotlight-card,
  .spotlight-card.active {
    flex: 0 0 85vw;
    height: auto;
    flex-direction: column;
    transform: none;
  }

  .card-spine {
    width: 100%;
    height: 60px;
    flex-direction: row;
    padding: 0 30px;
  }
  .spine-text {
    transform: none;
    margin: 0;
  }

  .spotlight-visual {
    width: 100%;
    height: 320px;
    border-right: none;
    border-bottom: 1px solid #eaedf2;
  }

  .expand-action {
    display: none;
  }

  .spotlight-info {
    width: 100%;
    height: auto;
  }

  .spotlight-info-inner {
    padding: 40px 30px;
    opacity: 1;
    transform: none;
  }
  .info-watermark {
    display: none;
  }
}

/* ==========================================================================
   PREMIUM UNIFORM BLOGS SECTION (NATIVE CSS, ZERO BOOTSTRAP)
   ========================================================================== */
.blog-premium-section {
  padding: 120px 20px;
  background-color: #f8f9fc;
  font-family: "Poppins", sans-serif;
}

.blog-premium-container {
  max-width: 1300px;
  margin: 0 auto;
  width: 100%;
}

/* --- Header --- */
.blog-header-wrapper {
  text-align: center;
  margin-bottom: 60px;
}

.blog-kicker {
  display: inline-block;
  font-size: 14px;
  color: #b87333;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 700;
  margin-bottom: 12px;
}

.blog-headline {
  font-family: "Teko", sans-serif;
  font-size: 56px;
  line-height: 1.1;
  color: #00173c;
  text-transform: uppercase;
  font-weight: 600;
  margin: 0;
}

.blog-headline .text-orange {
  color: #b87333;
}

/* --- Uniform Grid Layout --- */
.blog-uniform-grid {
  display: grid;
  /* Forces exactly 3 equal columns on desktop */
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: stretch;
}

/* --- Premium Card Styling --- */
.blog-premium-card {
  background-color: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid #eaedf2;
  box-shadow: 0 10px 30px rgba(0, 23, 60, 0.03);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.blog-premium-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 23, 60, 0.1);
  border-color: #b87333; /* Frame highlights in orange on hover */
}

/* Image Area */
.blog-visual {
  position: relative;
  height: 260px;
  overflow: hidden;
}

.blog-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.blog-premium-card:hover .blog-visual img {
  transform: scale(1.08);
}

/* Floating Date Badge */
.blog-date-badge {
  position: absolute;
  bottom: -1px; /* Touches the border seamlessly */
  right: 25px;
  background-color: #00173c;
  color: #ffffff;
  padding: 15px 20px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  text-align: center;
  transition: background-color 0.4s ease;
}

.blog-premium-card:hover .blog-date-badge {
  background-color: #b87333;
}

.date-d {
  display: block;
  font-family: "Teko", sans-serif;
  font-size: 34px;
  line-height: 1;
  font-weight: 500;
}

.date-m {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}

/* Details Area */
.blog-details {
  padding: 35px 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-tag {
  display: inline-block;
  color: #b87333;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.blog-title {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 15px 0;
}

.blog-title a {
  color: #00173c;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-title a:hover {
  color: #b87333;
}

.blog-excerpt {
  font-size: 15px;
  color: #6c7a87;
  line-height: 1.7;
  margin: 0 0 30px 0;
  flex-grow: 1; /* Pushes the action row exactly to the bottom */
}

/* Engineered Action Row */
.blog-action-row {
  border-top: 1px solid #eaedf2;
  padding-top: 25px;
}

.blog-engineered-link {
  display: inline-flex;
  align-items: center;
  color: #00173c;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.link-line {
  display: inline-block;
  width: 20px;
  height: 2px;
  background-color: #b87333;
  margin: 0 10px;
  transition: width 0.3s ease;
}

.blog-premium-card:hover .blog-engineered-link {
  color: #b87333;
}

.blog-premium-card:hover .link-line {
  width: 40px; /* Line expands on hover */
}

/* --- Responsive Adjustments --- */
@media (max-width: 1024px) {
  .blog-uniform-grid {
    /* Drops to 2 columns on tablets */
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .blog-premium-section {
    padding: 80px 15px;
  }
  .blog-headline {
    font-size: 42px;
  }
  .blog-uniform-grid {
    /* Drops to 1 column on mobile */
    grid-template-columns: 1fr;
  }
  .blog-visual {
    height: 220px;
  }
  .blog-details {
    padding: 30px 20px;
  }
}

/* ==========================================================================
   PREMIUM TESTIMONIALS SLIDER (SPLIT-LAYOUT + JS CONTROLS)
   ========================================================================== */
.premium-testimonials-section {
  padding: 120px 20px;
  background-color: #ffffff;
  font-family: "Poppins", sans-serif;
  overflow: hidden;
}

.testimonials-container {
  max-width: 1300px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}

/* --- Left Side: Sticky Header --- */
.testimonials-header-col {
  position: sticky;
  top: 120px;
}

.testi-kicker {
  display: inline-block;
  font-size: 14px;
  color: #b87333;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 700;
  margin-bottom: 15px;
}

.testi-headline {
  font-family: "Teko", sans-serif;
  font-size: 64px;
  line-height: 1.1;
  color: #00173c;
  text-transform: uppercase;
  font-weight: 600;
  margin: 0 0 20px 0;
}

.testi-headline .text-orange {
  color: #b87333;
}

.testi-subtext {
  font-size: 16px;
  color: #6c7a87;
  line-height: 1.7;
  margin: 0 0 40px 0;
  max-width: 400px;
}

/* Controls & Trust Flexbox */
.trust-and-controls {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  max-width: 400px;
  padding-top: 10px;
  border-top: 1px solid #eaedf2;
}

.trust-rating {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.trust-rating .stars {
  color: #ffb400;
  font-size: 20px;
  letter-spacing: 2px;
}

.trust-rating span {
  font-size: 13px;
  font-weight: 600;
  color: #00173c;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Elegant Slider Arrows */
.testi-slider-controls {
  display: flex;
  gap: 15px;
}

.testi-nav {
  width: 50px;
  height: 50px;
  background: #ffffff;
  color: #00173c;
  border: 1px solid #eaedf2;
  border-radius: 50%;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 23, 60, 0.05);
  transition: all 0.3s ease;
}

.testi-nav:hover {
  background: #b87333;
  color: #ffffff;
  border-color: #b87333;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 94, 21, 0.2);
}

/* --- Right Side: Scrollable Track --- */
.testimonials-scroll-col {
  width: 100%;
  overflow: hidden;
}

.testi-scroll-track {
  display: flex;
  gap: 30px;
  padding-bottom: 40px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.testi-scroll-track::-webkit-scrollbar {
  display: none;
}

/* --- Premium Testimonial Card --- */
.testi-premium-card {
  flex: 0 0 400px;
  background: #f8f9fc;
  border-radius: 16px;
  padding: 50px 40px;
  position: relative;
  scroll-snap-align: start;
  border: 1px solid #eaedf2;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
}

.testi-premium-card:hover {
  background: #ffffff;
  box-shadow: 0 20px 50px rgba(0, 23, 60, 0.08);
  transform: translateY(-5px);
  border-color: #ffffff;
}

/* Massive Quote Watermark */
.quote-watermark {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 80px;
  color: #eaedf2;
  opacity: 0.5;
  z-index: 0;
  transition: color 0.4s ease;
}

.testi-premium-card:hover .quote-watermark {
  color: rgba(255, 94, 21, 0.1);
}

.testi-stars {
  color: #ffb400;
  font-size: 14px;
  margin-bottom: 20px;
  z-index: 1;
  position: relative;
}

.testi-text {
  font-size: 15px;
  color: #4a5568;
  line-height: 1.8;
  margin: 0 0 40px 0;
  font-style: italic;
  z-index: 1;
  position: relative;
  flex-grow: 1;
}

/* Author Section */
.testi-author {
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 1;
  position: relative;
  border-top: 1px solid #eaedf2;
  padding-top: 25px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  background: #00173c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-family: "Teko", sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
}

.author-info h4 {
  font-size: 16px;
  font-weight: 700;
  color: #00173c;
  margin: 0 0 3px 0;
}

.author-info span {
  font-size: 12px;
  color: #888888;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

/* --- Responsive Layout --- */
@media (max-width: 1024px) {
  .testimonials-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .testimonials-header-col {
    position: relative;
    top: 0;
    text-align: center;
  }
  .testi-subtext {
    margin: 0 auto 30px auto;
  }
  .trust-and-controls {
    margin: 0 auto;
    padding-top: 25px;
    align-items: center;
    flex-direction: column;
    gap: 20px;
  }
}

@media (max-width: 767px) {
  .premium-testimonials-section {
    padding: 80px 15px;
  }
  .testi-headline {
    font-size: 46px;
  }
  .testi-premium-card {
    flex: 0 0 85vw;
    padding: 40px 25px;
  }
  .testi-slider-controls {
    display: none;
  } /* Mobile users natively swipe */
}
/* --- Drag-to-Scroll Cursor States --- */
.testi-scroll-track {
  cursor: grab;
}

.testi-scroll-track:active {
  cursor: grabbing;
}

/* Temporarily disables CSS snapping while the user is actively dragging */
.testi-scroll-track.dragging {
  scroll-snap-type: none;
  scroll-behavior: auto;
}

/* Prevents highlighting text inside the cards while dragging */
.testi-scroll-track.dragging .testi-premium-card {
  user-select: none;
  pointer-events: none;
}

/* ==========================================================================
   PREMIUM CEO / LEADERSHIP SECTION (EDITORIAL LAYOUT)
   ========================================================================== */
.ceo-premium-section {
  padding: 120px 20px;
  background-color: #f8f9fc; /* Soft contrasting backdrop */
  overflow: hidden;
}

.ceo-premium-container {
  max-width: 1250px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr; /* Portrait column is slightly narrower */
  gap: 80px;
  align-items: center;
}

/* --- Left Side: Architectural Image --- */
.ceo-image-wrapper {
  position: relative;
  z-index: 1;
}

/* The orange offset box that gives the premium "layered" look */
.ceo-image-accent {
  position: absolute;
  bottom: -25px;
  left: -25px;
  width: 60%;
  height: 70%;
  background-color: #b87333;
  border-radius: 12px;
  z-index: 0;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.ceo-portrait {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 23, 60, 0.15);
  object-fit: cover;
  transition: transform 0.5s ease;
}

.ceo-image-wrapper:hover .ceo-image-accent {
  transform: translate(-10px, 10px); /* Accent expands smoothly on hover */
}

/* --- Right Side: Text & Signature --- */
.ceo-message-wrapper {
  position: relative;
  padding-top: 20px;
}

/* Massive background quote mark */
.ceo-quote-watermark {
  position: absolute;
  top: -40px;
  left: -20px;
  font-size: 120px;
  color: #eaedf2;
  z-index: 0;
  opacity: 0.6;
}

.ceo-kicker {
  display: inline-block;
  position: relative;
  z-index: 1;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #b87333;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 700;
  margin-bottom: 15px;
}

.ceo-headline {
  position: relative;
  z-index: 1;
  font-family: "Teko", sans-serif;
  font-size: 56px;
  line-height: 1.1;
  color: #00173c;
  text-transform: uppercase;
  font-weight: 500;
  margin: 0 0 30px 0;
}

.ceo-headline .text-orange {
  color: #b87333;
}

.ceo-text {
  position: relative;
  z-index: 1;
  font-family: "Poppins", sans-serif;
  font-size: 17px;
  color: #555555;
  line-height: 1.8;
  margin: 0 0 40px 0;
  font-style: italic; /* Italics give it a personal "letter" feel */
}

/* Signature Block */
.ceo-signature-block {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 30px;
  border-top: 1px solid #eaedf2;
}

.ceo-details {
  display: flex;
  flex-direction: column;
}

.ceo-name {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #00173c;
  margin: 0 0 5px 0;
}

.ceo-title {
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  color: #888888;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

/* Simulated Cursive Signature */
.ceo-signature-visual {
  font-family: "Brush Script MT", "Alex Brush", "Great Vibes", cursive, serif;
  font-size: 42px;
  color: #00173c;
  opacity: 0.8;
  transform: rotate(-3deg); /* Slight angle for realism */
}

/* --- Responsive Adjustments --- */
@media (max-width: 1024px) {
  .ceo-premium-container {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }
  .ceo-headline {
    font-size: 48px;
  }
}

@media (max-width: 767px) {
  .ceo-premium-section {
    padding: 80px 15px;
  }

  .ceo-premium-container {
    grid-template-columns: 1fr; /* Stacks image on top of text */
    gap: 60px;
  }

  .ceo-image-wrapper {
    max-width: 400px;
    margin: 0 auto;
  }

  .ceo-image-accent {
    bottom: -15px;
    left: -15px;
  }

  .ceo-headline {
    font-size: 42px;
  }
  .ceo-text {
    font-size: 15px;
  }

  .ceo-signature-block {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ==========================================================================
   PREMIUM MACHINE OVERVIEW SECTION (DATA PANEL + EDITORIAL)
   ========================================================================== */
.machine-overview-section {
  padding: 100px 20px;
  background-color: #ffffff;
  font-family: "Poppins", sans-serif;
}

.machine-overview-container {
  max-width: 1250px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
}

/* --- Left Side: High-Tech Metrics Panel --- */
.metrics-panel-wrapper {
  background-color: #00173c;
  border-radius: 12px;
  padding: 60px 50px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 23, 60, 0.15);
}

.metrics-dot-grid {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.25) 2px,
    transparent 2px
  );
  background-size: 20px 20px;
  z-index: 0;
  mask-image: linear-gradient(to right, transparent 0%, black 50%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 50%);
}

.metrics-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.metric-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 12px;
}

.metric-label {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.metric-value {
  color: #b87333;
  font-family: "Teko", sans-serif;
  font-size: 26px;
  line-height: 1;
  font-weight: 500;
}

.metric-track {
  width: 100%;
  height: 6px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: visible;
  position: relative;
}

.metric-fill {
  height: 100%;
  background-color: #b87333;
  border-radius: 10px;
  position: relative;
  animation: loadBar 1.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
  transform-origin: left;
}

.metric-glow {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background-color: #ffffff;
  border-radius: 50%;
  box-shadow: 0 0 15px 4px rgba(255, 94, 21, 0.8);
}

@keyframes loadBar {
  0% {
    transform: scaleX(0);
  }
  100% {
    transform: scaleX(1);
  }
}

/* --- Right Side: Editorial Content --- */
.machine-content-wrapper {
  display: flex;
  flex-direction: column;
}

.machine-headline-box {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

.machine-headline {
  font-family: "Teko", sans-serif;
  font-size: 52px;
  line-height: 1.1;
  color: #00173c;
  margin: 0;
  font-weight: 500;
  white-space: nowrap;
}

.machine-headline .text-orange {
  color: #b87333;
}

.headline-accent-line {
  flex-grow: 1;
  height: 2px;
  background-color: #d1d8e0;
  max-width: 80px;
}

.machine-text p {
  font-size: 16px;
  color: #555555;
  line-height: 1.8;
  margin: 0 0 25px 0;
}

.text-highlight {
  color: #b87333;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  border-bottom: 1px solid rgba(255, 94, 21, 0.3);
}

.text-highlight:hover {
  color: #00173c;
  border-bottom-color: #00173c;
}

/* Buttons (Using consistent Brand Orange and Navy) */
.machine-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

.btn-navy,
.btn-orange {
  padding: 16px 32px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.4s ease;
  text-align: center;
}

.btn-navy {
  background-color: #00173c;
  color: #ffffff;
  border: 1px solid #00173c;
}

.btn-navy:hover {
  background-color: #b87333;
  border-color: #b87333;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 94, 21, 0.2);
}

.btn-orange {
  background-color: #b87333; /* Updated to pure brand orange */
  color: #ffffff;
  border: 1px solid #b87333;
}

.btn-orange:hover {
  background-color: #00173c;
  border-color: #00173c;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 23, 60, 0.15);
}

/* --- Responsive Adjustments --- */
@media (max-width: 1024px) {
  .machine-overview-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .metrics-panel-wrapper {
    padding: 50px 40px;
  }
}

@media (max-width: 767px) {
  .machine-overview-section {
    padding: 80px 15px;
  }
  .metrics-panel-wrapper {
    padding: 40px 25px;
  }
  .machine-headline {
    font-size: 42px;
    white-space: normal;
  }
  .headline-accent-line {
    display: none;
  }
  .machine-action-row {
    flex-direction: column;
    width: 100%;
  }
  .btn-navy,
  .btn-orange {
    width: 100%;
  }
}

/* ==========================================================================
   PREMIUM GET IN TOUCH SECTION (UNIFIED & BALANCED)
   ========================================================================== */
.premium-contact-section {
  padding: 120px 20px;
  background-color: #f4f7fa;
  font-family: "Poppins", sans-serif;
}

.contact-premium-container {
  max-width: 1350px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.2fr 1fr; /* Left side is wider to fit the side-by-side units */
  gap: 50px;
  align-items: stretch; /* Forces both columns to balance their heights beautifully */
}

/* --- Left Side: Info & Unified Locations --- */
.contact-info-col {
  display: flex;
  flex-direction: column;
}

.contact-header {
  margin-bottom: 40px;
}

.contact-kicker {
  display: inline-block;
  font-size: 14px;
  color: #b87333;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 700;
  margin-bottom: 12px;
}

.contact-headline {
  font-family: "Teko", sans-serif;
  font-size: 60px;
  line-height: 1.1;
  color: #00173c;
  text-transform: uppercase;
  font-weight: 600;
  margin: 0 0 20px 0;
}

.contact-headline .text-orange {
  color: #b87333;
}

.contact-intro {
  font-size: 15px;
  color: #555555;
  line-height: 1.8;
  margin: 0;
  max-width: 90%;
}

/* Unified Locations Card */
.unified-locations-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr auto 1fr; /* Two halves separated by a divider */
  gap: 30px;
  box-shadow: 0 15px 40px rgba(0, 23, 60, 0.05);
  flex-grow: 1; /* Stretches to fill any remaining space perfectly */
}

.card-divider {
  width: 1px;
  background-color: #eaedf2;
  height: 100%;
}

.location-half {
  display: flex;
  flex-direction: column;
}

.loc-title-row {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.loc-title-row i {
  font-size: 24px;
  background: rgba(255, 94, 21, 0.1);
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}

.loc-title-row h3 {
  font-size: 20px;
  font-weight: 700;
  color: #00173c;
  margin: 0;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.contact-list i {
  color: #b87333;
  font-size: 16px;
  margin-top: 4px; /* Perfectly aligns icon with top row of text */
  flex-shrink: 0;
  width: 16px;
  text-align: center;
}

.contact-list span,
.contact-list a {
  font-size: 13.5px;
  color: #6c7a87;
  line-height: 1.6;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-list a:hover {
  color: #b87333;
}

/* --- Right Side: High-End Navy Form --- */
.contact-form-col {
  display: flex;
}

.premium-form-box {
  background-color: #00173c;
  border-radius: 16px;
  padding: 50px;
  box-shadow: 0 25px 50px rgba(0, 23, 60, 0.15);
  position: relative;
  overflow: hidden;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Subtle corner accent inside the form box */
.premium-form-box::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 250px;
  height: 250px;
  background: radial-gradient(
    circle,
    rgba(255, 94, 21, 0.15) 0%,
    rgba(0, 23, 60, 0) 70%
  );
  pointer-events: none;
}

.form-box-header {
  margin-bottom: 35px;
  position: relative;
  z-index: 1;
}

.form-box-header h3 {
  color: #b87333;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  margin: 0 0 8px 0;
}

.form-box-header h2 {
  font-family: "Teko", sans-serif;
  font-size: 46px;
  line-height: 1.1;
  color: #ffffff;
  font-weight: 500;
  margin: 0;
}

/* Form Fields Setup */
.engineered-contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  z-index: 1;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.input-group {
  width: 100%;
}

.input-group input,
.input-group textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 16px 20px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #ffffff;
  outline: none;
  transition: all 0.3s ease;
}

.input-group textarea {
  resize: vertical;
  min-height: 110px;
}

.input-group input::placeholder,
.input-group textarea::placeholder {
  color: #8895a7;
  opacity: 1;
}

.input-group input:focus,
.input-group textarea:focus {
  border-color: #b87333;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 15px rgba(255, 94, 21, 0.1);
}

/* Submit Button - Full Width */
.btn-submit-full {
  width: 100%;
  background-color: #b87333;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 18px;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: all 0.4s ease;
  margin-top: 5px;
}

.btn-submit-full i {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.btn-submit-full:hover {
  background-color: #ffffff;
  color: #00173c;
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(255, 94, 21, 0.25);
}

.btn-submit-full:hover i {
  transform: translate(4px, -4px);
}

/* --- Responsive Adjustments --- */
@media (max-width: 1100px) {
  .contact-premium-container {
    grid-template-columns: 1fr; /* Stacks layout on tablet */
    gap: 50px;
  }
}

@media (max-width: 767px) {
  .premium-contact-section {
    padding: 80px 15px;
  }
  .contact-headline {
    font-size: 42px;
  }
  .contact-intro {
    max-width: 100%;
  }

  .unified-locations-card {
    grid-template-columns: 1fr; /* Stacks the two units vertically inside the card */
    gap: 40px;
    padding: 30px 20px;
  }

  .card-divider {
    width: 100%;
    height: 1px;
  }

  .premium-form-box {
    padding: 40px 25px;
  }
  .form-box-header h2 {
    font-size: 38px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

/* ==========================================================================
   MINIMALIST AWARDS (WITH LIGHTBOX)
   ========================================================================== */
.minimal-awards-section {
  padding: 80px 20px;
  background-color: #ffffff;
}

.minimal-awards-container {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.minimal-label {
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  color: #b87333;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: 700;
  margin-bottom: 40px;
}

/* --- The Slider Track --- */
.awards-slider-track {
  display: flex;
  gap: 30px;
  flex-wrap: nowrap;
  justify-content: space-between;
  padding: 10px 0 40px 0;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.awards-slider-track::-webkit-scrollbar {
  display: none;
}

/* --- The Image Frame --- */
.award-item {
  flex: 0 0 calc(20% - 24px);
  aspect-ratio: 1 / 1.35;
  background: #ffffff;
  border: 1px solid #eaedf2;
  padding: 12px;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 23, 60, 0.03);
  scroll-snap-align: center;
  position: relative;
  cursor: zoom-in; /* Changes cursor to a magnifying glass */
  transition: all 0.4s ease;
}

.award-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 23, 60, 0.08);
  border-color: #b87333;
}

.award-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  border: 1px solid #f4f7fa;
  border-radius: 4px;
}

/* Hover Zoom Icon Overlay */
.zoom-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.5);
  background: #b87333b9;
  color: #ffffff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
}

.award-item:hover .zoom-overlay {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* --- LIGHTBOX OVERLAY CSS --- */
.cert-lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 23, 60, 0.95); /* Deep dark navy background */
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
  cursor: zoom-out;
}

.cert-lightbox-overlay.active {
  opacity: 1;
  visibility: visible;
}

.cert-lightbox-overlay img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 8px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  transform: scale(0.8);
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.cert-lightbox-overlay.active img {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  color: #ffffff;
  font-size: 50px;
  font-weight: 300;
  cursor: pointer;
  transition: color 0.3s ease;
}

.lightbox-close:hover {
  color: #b87333;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
  .award-item {
    flex: 0 0 260px;
  }
  .awards-slider-track {
    justify-content: flex-start;
  }
}

@media (max-width: 767px) {
  .minimal-awards-section {
    padding: 60px 15px;
  }
  .award-item {
    flex: 0 0 75vw;
  }
  .lightbox-close {
    top: 15px;
    right: 20px;
    font-size: 40px;
  }
}

/* ==========================================================================
   PREMIUM FAQ SECTION (SPLIT LAYOUT & GRID ANIMATION)
   ========================================================================== */
.premium-faq-section {
  padding: 120px 20px;
  background-color: #f8f9fc; /* Soft studio background */
  font-family: "Poppins", sans-serif;
  border-top: 1px solid #eaedf2;
}

.faq-premium-container {
  max-width: 1300px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1.5fr; /* Left side smaller, right side wider */
  gap: 80px;
  align-items: start;
}

/* --- Left Side: Sticky Header --- */
.faq-header-col {
  position: sticky;
  top: 120px; /* Stays fixed while user scrolls questions */
}

.faq-kicker {
  display: inline-block;
  font-size: 14px;
  color: #b87333;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 700;
  margin-bottom: 12px;
}

.faq-headline {
  font-family: "Teko", sans-serif;
  font-size: 60px;
  line-height: 1.1;
  color: #00173c;
  text-transform: uppercase;
  font-weight: 600;
  margin: 0 0 20px 0;
}

.faq-headline .text-orange {
  color: #b87333;
}

.faq-intro {
  font-size: 16px;
  color: #6c7a87;
  line-height: 1.8;
  margin: 0 0 40px 0;
  max-width: 400px;
}

/* Elegant Support Box */
.faq-support-box {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0, 23, 60, 0.04);
  border-left: 4px solid #b87333;
}

.faq-support-box span {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: #00173c;
  margin-bottom: 10px;
}

.support-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #b87333;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.support-link i {
  transition: transform 0.3s ease;
}

.support-link:hover {
  color: #00173c;
}

.support-link:hover i {
  transform: translateX(5px);
}

/* --- Right Side: The Accordion --- */
.faq-accordion-col {
  display: flex;
  flex-direction: column;
}

/* FAQ Item Base */
.faq-item {
  border-bottom: 1px solid #eaedf2;
}

.faq-item:first-child {
  border-top: 1px solid #eaedf2;
}

/* The Clickable Question Button */
.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 35px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #00173c;
  cursor: pointer;
  transition: color 0.3s ease;
  outline: none;
}

.faq-question:hover {
  color: #b87333;
}

.faq-item.active .faq-question {
  color: #b87333;
}

/* Pure CSS Plus/Minus Icon */
.faq-icon {
  position: relative;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-left: 20px;
}

.icon-line {
  position: absolute;
  background-color: #00173c;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.icon-line.horizontal {
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  transform: translateY(-50%);
}

.icon-line.vertical {
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  transform: translateX(-50%);
}

.faq-question:hover .icon-line {
  background-color: #b87333;
}

.faq-item.active .icon-line {
  background-color: #b87333;
}

/* Animates the Plus into a Minus */
.faq-item.active .icon-line.vertical {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}
.faq-item.active .icon-line.horizontal {
  transform: translateY(-50%) rotate(180deg);
}

/* --- Advanced CSS Grid Animation for the Answer --- */
.faq-answer-wrapper {
  display: grid;
  grid-template-rows: 0fr; /* Collapsed state */
  transition: grid-template-rows 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.faq-answer-inner {
  overflow: hidden; /* Hides content when collapsed */
}

.faq-item.active .faq-answer-wrapper {
  grid-template-rows: 1fr; /* Expanded state */
}

.faq-answer-inner p {
  font-size: 15px;
  color: #555555;
  line-height: 1.8;
  margin: 0 0 35px 0;
  padding-right: 40px; /* Keeps text from hitting the icon area */
}

/* --- Responsive Adjustments --- */
@media (max-width: 1024px) {
  .faq-premium-container {
    grid-template-columns: 1fr; /* Stacks columns */
    gap: 50px;
  }
  .faq-header-col {
    position: relative;
    top: 0;
  }
}

@media (max-width: 767px) {
  .premium-faq-section {
    padding: 80px 15px;
  }
  .faq-headline {
    font-size: 46px;
  }
  .faq-question {
    font-size: 18px;
    padding: 25px 0;
  }
  .faq-answer-inner p {
    font-size: 14px;
    padding-right: 20px;
  }
}

/* ==========================================================================
   DYNAMIC TABBED GALLERY & UNIVERSAL LIGHTBOX
   ========================================================================== */
.premium-gallery-section {
  padding: 120px 20px;
  background-color: #ffffff;
  font-family: "Poppins", sans-serif;
  border-top: 1px solid #eaedf2;
}

.gallery-container {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.text-orange {
  color: #b87333 !important;
}

/* --- Header --- */
.gallery-header {
  text-align: center;
  margin-bottom: 50px;
}

.gallery-kicker {
  display: inline-block;
  font-size: 13px;
  color: #b87333;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: 700;
  margin-bottom: 12px;
}

.gallery-headline {
  font-family: "Teko", sans-serif;
  font-size: 56px;
  line-height: 1.1;
  color: #00173c;
  text-transform: uppercase;
  font-weight: 500;
  margin: 0 0 15px 0;
}

.gallery-intro {
  font-size: 15px;
  color: #6c7a87;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.7;
}

/* --- Filter Tabs --- */
.gallery-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 50px;
}

.filter-btn {
  background: transparent;
  border: 1px solid #c0c9d6;
  color: #00173c;
  padding: 10px 25px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  outline: none;
}

.filter-btn:hover {
  border-color: #b87333;
  color: #b87333;
}

.filter-btn.active {
  background: #b87333;
  border-color: #b87333;
  color: #ffffff;
  box-shadow: 0 10px 20px rgba(255, 94, 21, 0.2);
}

/* --- Media Grid --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 25px;
}

.gallery-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  background: #ffffff;
  box-shadow: 0 10px 25px rgba(0, 23, 60, 0.04);
  transform: scale(1);
  opacity: 1;
  transition: all 0.4s ease;
}

.gallery-item.hide {
  display: none;
}

@keyframes popIn {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.gallery-item.show {
  animation: popIn 0.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.gallery-item img,
.gallery-item video {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

/* --- Hover Overlay --- */
.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 23, 60, 0.85);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-overlay i {
  color: #b87333;
  font-size: 35px;
  margin-bottom: 15px;
  transform: translateY(20px);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.gallery-overlay span {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transform: translateY(20px);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1) 0.1s;
}

.gallery-item:hover img,
.gallery-item:hover video {
  transform: scale(1.05);
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.gallery-item:hover .gallery-overlay i,
.gallery-item:hover .gallery-overlay span {
  transform: translateY(0);
}

/* ==========================================================================
   UNIVERSAL LIGHTBOX (IMAGES & VIDEOS)
   ========================================================================== */
.premium-lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 12, 36, 0.95);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
  cursor: zoom-out;
}

.premium-lightbox-overlay.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-media-container {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: auto; /* Prevent zooming out when clicking the media itself */
}

/* Image Styling */
#lightbox-img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: 8px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  transform: scale(0.8);
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.premium-lightbox-overlay.active #lightbox-img {
  transform: scale(1);
}

/* Video Styling */
#lightbox-video {
  width: 100%;
  max-width: 1000px;
  max-height: 90vh;
  border-radius: 8px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  background: #000000;
  outline: none;
}

/* Close Button */
.lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  color: #ffffff;
  font-size: 50px;
  font-weight: 300;
  cursor: pointer;
  transition: color 0.3s ease;
  z-index: 100000;
}

.lightbox-close:hover {
  color: #b87333;
}

/* --- Responsive Adjustments --- */
@media (max-width: 767px) {
  .premium-gallery-section {
    padding: 80px 15px;
  }
  .gallery-headline {
    font-size: 42px;
  }
  .gallery-filters {
    gap: 10px;
  }
  .filter-btn {
    padding: 8px 18px;
    font-size: 12px;
  }
  .gallery-item img {
    height: 250px;
  }
  .lightbox-close {
    top: 15px;
    right: 20px;
    font-size: 40px;
  }
}
