/* ========================================
   AL DURRA SERVICES PAGE
   Premium Enterprise-Level Design
   ======================================== */

/* ========================================
   1. FULL-SCREEN HERO VIDEO SECTION
   ======================================== */
.services-hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.services-hero-video {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.services-hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services-hero-video .video-fallback {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.services-hero-video video:not([src]),
.services-hero-video video[src=""] {
  display: none;
}

.services-hero-video video:not([src]) + .video-fallback,
.services-hero-video video[src=""] + .video-fallback {
  opacity: 1;
}

/* YouTube Background Styles */
.services-hero-video.youtube-bg {
  overflow: hidden;
}

.youtube-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100vw;
  height: 100vh;
  pointer-events: none;
}

.youtube-container iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw; /* 16:9 aspect ratio */
  min-height: 100vh;
  min-width: 177.78vh; /* 100vh * 16/9 */
  transform: translate(-50%, -50%);
  pointer-events: none;
}

/* Show fallback when YouTube fails or on mobile */
.services-hero-video.youtube-bg .video-fallback {
  opacity: 1;
  z-index: 0;
}

.services-hero-video.youtube-bg.video-loaded .video-fallback {
  opacity: 0;
}

/* Dark Gradient Overlay */
.services-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0.3) 40%,
    rgba(0, 0, 0, 0.5) 100%
  );
  z-index: 2;
}

/* Hero Content */
.services-hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 900px;
  padding: 0 var(--container-padding);
}

.hero-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--durra-orange);
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeIn 0.8s ease forwards;
  animation-delay: 0.5s;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 400;
  color: white;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeIn 1s ease forwards;
  animation-delay: 0.7s;
}

.hero-subheading {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeIn 0.8s ease forwards;
  animation-delay: 0.9s;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeIn 0.8s ease forwards;
  animation-delay: 1.1s;
}

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

/* Hero Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: white;
  background: var(--durra-red);
  border-radius: 8px;
  transition: all 0.3s var(--ease-smooth);
}

.btn-primary:hover {
  background: var(--durra-orange);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(165, 42, 42, 0.3);
}

.btn-primary svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s var(--ease-smooth);
}

.btn-primary:hover svg {
  transform: translateX(5px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: white;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  backdrop-filter: blur(10px);
  transition: all 0.3s var(--ease-smooth);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--durra-red);
  background: transparent;
  border: 2px solid var(--durra-red);
  border-radius: 8px;
  transition: all 0.3s var(--ease-smooth);
}

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

/* Video Mute Button */
.video-mute-btn {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  backdrop-filter: blur(10px);
  z-index: 10;
  cursor: pointer;
  transition: all 0.3s var(--ease-smooth);
}

.video-mute-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.video-mute-btn svg {
  width: 22px;
  height: 22px;
  color: white;
}

.video-mute-btn .icon-unmuted {
  display: none;
}

.video-mute-btn.unmuted .icon-muted {
  display: none;
}

.video-mute-btn.unmuted .icon-unmuted {
  display: block;
}

/* Scroll Indicator in Hero */
.services-hero .scroll-indicator {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  opacity: 0;
  animation: heroFadeIn 0.8s ease forwards;
  animation-delay: 1.5s;
}

/* ========================================
   2. SERVICES OVERVIEW SECTION - REDESIGNED
   ======================================== */
.services-overview-new {
  padding: 6rem 0;
  background: var(--bg-light);
  position: relative;
  overflow: hidden;
}

.services-overview-new::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/svgs/waves.svg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100vw;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.06;
  pointer-events: none;
  z-index: 0;
}

.services-overview-new .grid {
  position: relative;
  z-index: 1;
}

.services-overview-new .section-index {
  margin-bottom: 1rem;
}

.services-overview-new .section-index span {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--durra-red);
  letter-spacing: 0.1em;
}

.services-overview-new .section-title {
  margin-bottom: 2rem;
  color: var(--text-dark);
}

/* Left Column - Content */
.overview-left-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.services-overview-new .overview-lead {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.services-overview-new .overview-body {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-muted);
}

/* Right Column - Stats Cards */
.overview-right-col {
  display: flex;
  align-items: center;
}

.stats-cards-row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}

@media (min-width: 1024px) {
  .stats-cards-row {
    flex-direction: row;
    gap: 1.25rem;
  }
}

/* Individual Stat Card */
.stat-card {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.4s var(--ease-smooth);
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.stat-card-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(165, 42, 42, 0.08);
  border-radius: 12px;
  flex-shrink: 0;
}

.stat-card-icon svg {
  width: 24px;
  height: 24px;
  color: var(--durra-red);
}

.stat-card-content {
  display: flex;
  flex-direction: column;
}

.stat-card-number {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 400;
  color: var(--durra-red);
  line-height: 1;
}

.stat-card-plus {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--durra-orange);
}

.stat-card-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

/* Responsive for Overview */
@media (max-width: 1023px) {
  .services-overview-new {
    padding: 4rem 0;
  }

  .overview-right-col {
    margin-top: 2.5rem;
  }

  .stats-cards-row {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .stat-card {
    flex: 1 1 calc(50% - 0.5rem);
    min-width: 140px;
  }
}

@media (max-width: 640px) {
  .stat-card {
    flex: 1 1 100%;
    padding: 1.25rem;
  }

  .stat-card-number {
    font-size: 2rem;
  }

  .stat-card-icon {
    width: 44px;
    height: 44px;
  }

  .stat-card-icon svg {
    width: 20px;
    height: 20px;
  }
}

/* ========================================
   3. CORE SERVICES GRID SECTION
   ======================================== */
.services-grid-section {
  padding: 6rem 0 8rem;
  background: #f7f7f2;
}

.services-grid-section .section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.services-grid-section .section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--durra-red);
  margin-bottom: 1rem;
}

.services-grid-section .section-subtitle {
  color: var(--text-dark);
  margin-bottom: 0;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

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

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

/* Service Card */
.service-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
  transition: all 0.4s var(--ease-smooth);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.service-card-inner {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(165, 42, 42, 0.08);
  border-radius: 16px;
  margin-bottom: 1.5rem;
  transition: all 0.3s var(--ease-smooth);
}

.service-card:hover .service-icon {
  background: var(--durra-red);
}

.service-icon svg {
  width: 36px;
  height: 36px;
  color: var(--durra-red);
  transition: color 0.3s var(--ease-smooth);
}

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

/* ── Company logo chips (associates / subsidiaries) ──────────────
   The icon box grows to fit the logo and gets a clean backdrop.
   Light/transparent logos get a dark contrasting background. */
.service-icon:has(.company-logo) {
  width: auto;
  min-width: 70px;
  max-width: 100%;
  height: auto;
  min-height: 70px;
  padding: 14px 18px;
  background: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.07);
}
.service-card:hover .service-icon:has(.company-logo) {
  background: #ffffff;
}
.service-icon:has(.company-logo--light) {
  background: #1f2024;
  box-shadow: none;
}
.service-card:hover .service-icon:has(.company-logo--light) {
  background: #1f2024;
}
/* Empty placeholder (companies with no logo) — white chip like the logo boxes */
.service-icon:empty {
  background: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.07);
}
.service-card:hover .service-icon:empty {
  background: #ffffff;
}
.company-logo {
  display: block;
}

.service-content {
  flex: 1;
}

.service-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.service-excerpt {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

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

.service-features li {
  position: relative;
  font-size: 0.85rem;
  color: var(--text-dark);
  padding-left: 1.25rem;
  margin-bottom: 0.5rem;
}

.service-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 6px;
  height: 6px;
  background: var(--durra-orange);
  border-radius: 50%;
}

.service-expand-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--durra-red);
  padding: 0;
  margin-top: auto;
  transition: all 0.3s var(--ease-smooth);
}

.service-expand-btn:hover {
  color: var(--durra-orange);
  gap: 0.75rem;
}

.service-expand-btn svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s var(--ease-smooth);
}

.service-expand-btn:hover svg {
  transform: translateX(5px);
}

/* ========================================
   4. PROCESS & METHODOLOGY SECTION
   ======================================== */
.services-process {
  padding: 8rem 0;
  background: var(--durra-pearl);
}

.services-process .section-index span {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--durra-red);
  letter-spacing: 0.1em;
}

.services-process .section-title {
  color: var(--text-dark);
  margin-bottom: 2rem;
}

.services-process .section-intro {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 4rem;
}

/* Process Timeline */
.process-timeline {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  position: relative;
}

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

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

.process-step {
  position: relative;
  padding: 2rem;
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  transition: all 0.4s var(--ease-smooth);
}

.process-step:hover {
  background: white;
  border-color: rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.process-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 400;
  color: rgba(165, 42, 42, 0.2);
  line-height: 1;
  margin-bottom: 1rem;
}

.process-step:hover .process-number {
  color: var(--durra-red);
}

.process-content {
  margin-bottom: 1.5rem;
}

.process-title {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.process-description {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.process-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(165, 42, 42, 0.08);
  border-radius: 12px;
}

.process-icon svg {
  width: 26px;
  height: 26px;
  color: var(--durra-red);
}

/* ========================================
   5. WHY CHOOSE AL DURRA SECTION
   ======================================== */
.services-why-us {
  padding: 8rem 0;
  background: var(--bg-light);
}

.services-why-us .section-index span {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--durra-red);
  letter-spacing: 0.1em;
}

.services-why-us .section-title {
  color: var(--text-dark);
  margin-bottom: 4rem;
}

/* Why Us Grid */
.why-us-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

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

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

.why-card {
  padding: 2rem;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  text-align: center;
  transition: all 0.4s var(--ease-smooth);
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.why-card .why-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(165, 42, 42, 0.08);
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  transition: all 0.3s var(--ease-smooth);
}

.why-card:hover .why-icon {
  background: var(--durra-red);
}

.why-card .why-icon svg {
  width: 32px;
  height: 32px;
  color: var(--durra-red);
  transition: color 0.3s var(--ease-smooth);
}

.why-card:hover .why-icon svg {
  color: white;
}

.why-card .why-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.why-card .why-description {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-muted);
}

/* ========================================
   6. SECTORS SERVED SECTION
   ======================================== */
.services-sectors {
  padding: 6rem 0 8rem;
  background: #f7f7f2;
}

.services-sectors .section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.services-sectors .section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--durra-red);
  margin-bottom: 1rem;
}

.services-sectors .section-subtitle {
  color: var(--text-dark);
  margin-bottom: 0;
}

/* Sectors Showcase */
.sectors-showcase {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

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

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

.sector-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 280px;
  cursor: pointer;
}

@media (min-width: 1024px) {
  .sector-card {
    height: 350px;
  }
}

.sector-image {
  position: absolute;
  inset: 0;
}

.sector-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out-expo);
}

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

.sector-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.2) 50%,
    rgba(0, 0, 0, 0.1) 100%
  );
  transition: background 0.4s var(--ease-smooth);
}

.sector-card:hover .sector-overlay {
  background: linear-gradient(
    to top,
    rgba(165, 42, 42, 0.9) 0%,
    rgba(165, 42, 42, 0.4) 50%,
    rgba(165, 42, 42, 0.2) 100%
  );
}

.sector-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  z-index: 2;
}

.sector-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.5rem;
}

.sector-description {
  font-size: 0.85rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s var(--ease-smooth);
}

.sector-card:hover .sector-description {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   7. KEY METRICS & ACHIEVEMENTS SECTION
   ======================================== */
.services-metrics {
  padding: 6rem 0;
  background: var(--durra-pearl);
}

.metrics-content {
  text-align: center;
}

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

.metrics-header .section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--durra-red);
  margin-bottom: 1rem;
}

.metrics-title {
  color: var(--text-dark);
}

/* Metrics Grid */
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

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

.metric-card {
  padding: 2rem 1rem;
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  transition: all 0.4s var(--ease-smooth);
}

.metric-card:hover {
  border-color: rgba(0, 0, 0, 0.15);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.metric-currency,
.metric-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  color: var(--durra-red);
  line-height: 1;
}

.metric-plus,
.metric-suffix {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--durra-red);
}

.metric-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 1rem;
}

/* ========================================
   8. CALL TO ACTION SECTION
   ======================================== */
.services-cta {
  padding: 8rem 0;
  background: var(--durra-cream);
}

.services-cta .cta-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 800px;
  margin: 0 auto;
}

.services-cta .section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--durra-red);
  margin-bottom: 1rem;
}

.cta-headline {
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  max-width: 800px;
  width: 100%;
}

.cta-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* ========================================
   9. RESPONSIVE ADJUSTMENTS
   ======================================== */
@media (max-width: 1023px) {
  .services-hero {
    min-height: 600px;
  }

  .hero-headline {
    font-size: clamp(2rem, 6vw, 3.5rem);
  }

  .services-overview {
    padding: 5rem 0;
  }

  .overview-stats {
    margin-top: 2rem;
  }

  .services-process {
    padding: 5rem 0;
  }

  .services-why-us {
    padding: 5rem 0;
  }

  .services-cta {
    padding: 5rem 0;
  }
}

@media (max-width: 767px) {
  .services-hero {
    min-height: 550px;
  }

  .hero-cta-group {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary,
  .btn-secondary,
  .btn-outline {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .video-mute-btn {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 44px;
    height: 44px;
  }

  .overview-stats {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    padding: 1.5rem;
  }

  .overview-stats .stat-item {
    flex: 1 1 45%;
    border-bottom: none;
    padding: 0.75rem;
  }

  .overview-stats .stat-number {
    font-size: 2.5rem;
  }

  .services-grid-section {
    padding: 4rem 0 5rem;
  }

  .service-card-inner {
    padding: 2rem;
  }

  .sectors-showcase {
    gap: 1rem;
  }

  .sector-card {
    height: 220px;
  }

  .metrics-grid {
    gap: 1rem;
  }

  .metric-card {
    padding: 1.5rem 1rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .hero-headline {
    font-size: 2rem;
  }

  .hero-subheading {
    font-size: 0.95rem;
  }

  .service-icon {
    width: 60px;
    height: 60px;
  }

  .service-icon svg {
    width: 30px;
    height: 30px;
  }

  .process-number {
    font-size: 2.5rem;
  }

  .why-card {
    padding: 1.5rem;
  }

  .metric-currency,
  .metric-number {
    font-size: 2.5rem;
  }
}

/* ========================================
   10. ANIMATIONS & EFFECTS
   ======================================== */

/* Counter Animation */
.metric-number {
  transition: all 0.3s ease;
}

/* Video loading state */
.services-hero-video video {
  opacity: 0;
  transition: opacity 0.5s ease;
}

.services-hero-video video.loaded {
  opacity: 1;
}

/* Service Card Hover Effects */
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--durra-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-smooth);
}

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

/* Process Step Connector (Desktop) */
@media (min-width: 1200px) {
  .process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -1rem;
    width: calc(2rem);
    height: 2px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.2), transparent);
    transform: translateY(-50%);
  }
}

/* Smooth Scroll Behavior */
html {
  scroll-behavior: smooth;
}

/* Focus States for Accessibility */
.btn-primary:focus,
.btn-secondary:focus,
.btn-outline:focus,
.service-expand-btn:focus,
.video-mute-btn:focus {
  outline: 2px solid var(--durra-orange);
  outline-offset: 2px;
}

/* Reduced Motion Preference */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
