/* ============================================
   SERVICES SECTION — Premium Design
   ============================================ */

/* ---- Services Section ---- */
#services-section {
  position: relative;
  background: var(--dark);
  overflow-x: visible;
}

.services-header {
  text-align: center;
  margin-bottom: 4rem;
}

/* ---- Services Wrapper ---- */
.services-wrapper {
  position: relative;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* ---- Services Carousel / Grid ---- */
.services-carousel {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ---- Service Card ---- */
.service-card {
  position: relative;
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--glass-border-strong);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(201, 168, 76, 0.2),
    inset 0 1px 1px rgba(255, 255, 255, 0.1);
}

/* ---- Service Card Image ---- */
.service-card-image {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card:hover .service-card-image img {
  transform: scale(1.08);
}

.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(11, 15, 20, 0.2) 0%,
    rgba(11, 15, 20, 0.8) 100%
  );
  pointer-events: none;
  transition: background 0.4s ease;
}

.service-card:hover .service-card-overlay {
  background: linear-gradient(
    to bottom,
    rgba(11, 15, 20, 0.1) 0%,
    rgba(11, 15, 20, 0.9) 100%
  );
}

/* ---- Service Card Content ---- */
.service-card-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  background: rgba(11, 15, 20, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.service-card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 10px;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.service-card:hover .service-card-icon {
  background: rgba(201, 168, 76, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(201, 168, 76, 0.2);
}

.service-card-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--light);
  margin-bottom: 0.75rem;
  line-height: 1.3;
  letter-spacing: 0.02em;
}

.service-card-excerpt {
  font-size: 0.85rem;
  color: var(--primary);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex: 1;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  transition: all 0.3s ease;
}

.service-card-link i {
  font-size: 0.7rem;
  transition: transform 0.3s ease;
}

.service-card:hover .service-card-link {
  color: var(--gold-light);
}

.service-card:hover .service-card-link i {
  transform: translateX(4px);
}

/* ---- Navigation Buttons (Mobile Only) ---- */
.service-nav {
  display: none; /* Hidden on desktop by default */
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(11, 15, 20, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border-strong);
  color: var(--light);
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
}

.service-nav:hover {
  background: rgba(201, 168, 76, 0.2);
  border-color: var(--gold);
  color: var(--gold);
  transform: scale(1.1);
}

.service-nav-prev {
  /* Positioned below cards on mobile */
}

.service-nav-next {
  /* Positioned below cards on mobile */
}

/* ---- Tablet (768px and below) ---- */
@media (max-width: 992px) {
  .services-carousel {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .service-nav {
    display: none;
  }

  .service-card-image {
    height: 200px;
  }

  .service-card-title {
    font-size: 1.2rem;
  }

  .service-card-excerpt {
    font-size: 0.8rem;
  }
}

/* ---- Mobile (768px and below) ---- */
@media (max-width: 768px) {
  .services-carousel {
    grid-template-columns: 1fr;
    gap: 1rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x;
    padding: 0;
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    width: 100%;
    position: relative;
    will-change: scroll-position;
  }

  .services-carousel::-webkit-scrollbar {
    display: none;
  }

  .service-card {
    min-width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
    scroll-snap-align: start;
    flex-shrink: 0;
    scroll-margin: 0;
  }

  .service-card-image {
    height: 220px;
  }

  .service-nav {
    display: inline-flex !important;
    opacity: 1;
    pointer-events: all;
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
    position: static;
    transform: none;
    margin: 0 0.5rem;
  }

  .service-nav-prev {
    /* Static positioning below cards */
  }

  .service-nav-next {
    /* Static positioning below cards */
  }

  .services-wrapper {
    overflow: visible;
    display: flex;
    flex-direction: column;
    padding: 0;
  }

  .services-carousel {
    order: 1;
  }

  .service-nav-prev,
  .service-nav-next {
    order: 2;
  }
}

/* ---- Small Mobile (480px and below) ---- */
@media (max-width: 480px) {
  .service-card {
    min-width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
  }

  .service-card-image {
    height: 200px;
  }

  .service-card-content {
    padding: 1.25rem;
  }

  .service-card-title {
    font-size: 1.1rem;
  }

  .service-card-excerpt {
    font-size: 0.78rem;
  }

  .service-card-icon {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .service-nav {
    width: 36px;
    height: 36px;
    font-size: 0.8rem;
  }
}

/* ============================================
   PRODUCT CATALOG & DETAIL PAGE
   ============================================ */

.product-catalog-section {
  background: var(--dark);
  padding: 8rem 0 6rem;
}

.product-hero-banner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  padding: 1.6rem 1.8rem;
  border-radius: 24px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.03)
  );
  border: 1px solid var(--glass-border);
}

.product-hero-copy {
  max-width: 720px;
}

.product-hero-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.product-nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--light);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
}

.product-nav-link.active,
.product-nav-link:hover {
  background: rgba(201, 168, 76, 0.16);
  color: var(--gold);
  border: 1px solid rgba(201, 168, 76, 0.28);
}

.product-catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.product-catalog-card {
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.04),
    rgba(255, 255, 255, 0.02)
  );
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.35s ease;
}

.product-catalog-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 168, 76, 0.45);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.3);
}

.product-catalog-link {
  text-decoration: none;
  color: inherit;
}

.product-card-image {
  border-radius: 16px;
  overflow: hidden;
  min-height: 210px;
  margin-bottom: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.product-card-image img {
  width: 100%;
  height: 100%;
  min-height: 210px;
  object-fit: cover;
}

.product-catalog-card .product-category {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.product-catalog-card .product-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--light);
  line-height: 1.35;
}

.product-subtitle {
  color: var(--primary);
  font-size: 0.95rem;
  line-height: 1.7;
}

.product-brand-row {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem 0.9rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
}

.product-brand-logo {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.2);
}

.product-brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-brand-name {
  font-weight: 600;
  color: var(--light);
}

.product-catalog-card .btn-primary-gold {
  margin-top: auto;
  justify-content: center;
}

.product-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-wrap: wrap;
  margin-bottom: 1.6rem;
  color: var(--primary);
  font-size: 0.9rem;
}

.product-breadcrumb a {
  color: var(--primary);
  text-decoration: none;
}

.product-breadcrumb a:hover {
  color: var(--gold);
}

.product-breadcrumb .current {
  color: var(--gold);
}

.product-detail-section {
  background: var(--dark);
  padding: 8rem 0 6rem;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 2rem;
  align-items: start;
}

.product-detail-sidebar {
  position: sticky;
  top: 100px;
  padding: 1.25rem;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.04),
    rgba(255, 255, 255, 0.02)
  );
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
}

.product-side-list {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.product-side-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.85rem 0.95rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--light);
  text-decoration: none;
  transition: all 0.3s ease;
}

.product-side-item:hover {
  background: rgba(201, 168, 76, 0.12);
  border-color: rgba(201, 168, 76, 0.25);
  transform: translateX(4px);
}

.product-main-card {
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.04),
    rgba(255, 255, 255, 0.02)
  );
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.product-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
  align-items: start;
}

.product-hero-media {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  min-height: 320px;
}

.product-hero-media img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.product-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 10, 14, 0.8), transparent 60%);
}

.product-brand-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.product-brand-card .product-hero-badge {
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.product-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.product-gallery-grid img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.product-feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.product-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 0.9rem 1rem;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  color: var(--primary);
}

.product-feature-item i {
  color: var(--gold);
  margin-top: 0.2rem;
}

.product-contact-card {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-radius: 16px;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.2);
}

.product-contact-card a {
  color: var(--light);
  text-decoration: none;
}

.product-contact-card a:hover {
  color: var(--gold);
}

/* ---- Product Images Grid (3 images like service details) ---- */
.product-images-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.product-image-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 320px;
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
}

.product-image-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.product-image-item:hover img {
  transform: scale(1.05);
}

@media (max-width: 992px) {
  .product-catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-hero-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .product-detail-grid {
    grid-template-columns: 1fr;
  }

  .product-detail-sidebar {
    position: relative;
    top: 0;
  }

  .product-hero-grid {
    grid-template-columns: 1fr;
  }

  .product-images-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-image-item {
    height: 260px;
  }
}

@media (max-width: 768px) {
  .product-catalog-grid {
    grid-template-columns: 1fr;
  }

  .product-hero-banner {
    padding: 1.2rem;
  }

  .product-card-image,
  .product-card-image img {
    min-height: 180px;
  }

  .product-gallery-grid,
  .product-feature-list {
    grid-template-columns: 1fr;
  }

  .product-main-card {
    padding: 1.25rem;
  }

  .product-contact-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .product-images-grid {
    grid-template-columns: 1fr;
  }

  .product-image-item {
    height: 240px;
  }
}

.service-detail-section {
  background: var(--dark);
  padding-top: 8rem;
  padding-bottom: 6rem;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 3rem;
  align-items: start;
}

/* ---- Breadcrumb ---- */
.service-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.service-breadcrumb a {
  color: var(--primary);
  transition: color 0.3s ease;
}

.service-breadcrumb a:hover {
  color: var(--gold);
}

.service-breadcrumb span {
  color: var(--secondary);
  font-size: 0.8rem;
}

.service-breadcrumb .current {
  color: var(--gold);
  font-weight: 500;
}

/* ---- Service Detail Image ---- */
.service-detail-image-wrap {
  position: relative;
  width: 100%;
  height: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 2.5rem;
}

.service-detail-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  transition: transform 0.6s ease;
}

.service-detail-image-wrap:hover img {
  transform: scale(1.05);
}

.service-detail-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(11, 15, 20, 0.3) 0%,
    rgba(11, 15, 20, 0.1) 50%,
    rgba(11, 15, 20, 0.6) 100%
  );
  pointer-events: none;
}

/* ---- Service Detail Info ---- */
.service-detail-info {
  max-width: 800px;
}

.service-detail-info .section-label {
  display: block;
  margin-bottom: 1rem;
}

.service-detail-info .section-heading {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--light);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.service-detail-info .gold-line {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin-bottom: 2rem;
}

.service-detail-info .section-body {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--primary);
  margin-bottom: 2.5rem;
}

/* ---- Features Grid ---- */
.service-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 3rem;
}

.service-feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  transition: all 0.3s ease;
}

.service-feature-item:hover {
  background: rgba(201, 168, 76, 0.05);
  border-color: rgba(201, 168, 76, 0.3);
  transform: translateX(4px);
}

.service-feature-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 168, 76, 0.15);
  color: var(--gold);
  border-radius: 50%;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.service-feature-text {
  font-size: 0.9rem;
  color: var(--light);
  font-weight: 500;
}

/* ---- CTA Buttons ---- */
.service-detail-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ---- Sidebar: Other Services ---- */
.service-detail-sidebar {
  position: sticky;
  /* top: 100px; */
  max-height: calc(100vh - 120px);
  overflow-y: auto;
  padding-right: 0.5rem;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
}

.service-detail-sidebar::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

.sidebar-sticky {
  position: sticky;
  top: 0;
}

.service-detail-sidebar .section-label {
  display: block;
  margin-bottom: 2rem;
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--glass-border);
}

.other-services-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.other-service-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  text-decoration: none;
  color: inherit;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.other-service-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: transparent;
  transition: all 0.3s ease;
}

.other-service-card:hover {
  background: rgba(201, 168, 76, 0.08);
  border-color: rgba(201, 168, 76, 0.4);
  transform: translateX(6px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.other-service-card:hover::before {
  background: var(--gold);
  box-shadow: 0 0 12px rgba(201, 168, 76, 0.6);
}

.other-service-img {
  display: none;
}

.other-service-info {
  flex: 1;
  min-width: 0;
  text-align: left;
}

.other-service-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: var(--gold);
  font-size: 0.7rem;
  transition: all 0.3s ease;
  flex-shrink: 0;
  opacity: 0.7;
}

.other-service-card:hover .other-service-arrow {
  transform: translateX(4px);
  opacity: 1;
  color: var(--gold-light);
}

.other-service-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--light);
  margin-bottom: 0.25rem;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.other-service-link {
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  transition: gap 0.3s ease;
}

.other-service-card:hover .other-service-link {
  gap: 0.6rem;
  color: var(--gold-light);
}

/* ---- Tablet (992px and below) ---- */
@media (max-width: 992px) {
  .service-detail-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .service-detail-sidebar {
    position: relative;
    top: 0;
    max-height: none;
    overflow-y: visible;
  }

  .other-services-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
}

/* ---- Mobile (768px and below) ---- */
@media (max-width: 768px) {
  .service-detail-section {
    padding-top: 6rem;
    padding-bottom: 4rem;
  }

  .service-detail-image-wrap {
    height: 280px;
  }

  .service-features-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .service-detail-cta {
    flex-direction: column;
  }

  .service-detail-cta a {
    width: 100%;
    justify-content: center;
  }

  .other-services-list {
    grid-template-columns: 1fr;
  }

  /* Reverse order: main content first, other services second on mobile */
  .service-detail-grid {
    display: flex;
    flex-direction: column;
  }

  .service-detail-sidebar {
    order: 2;
  }

  .service-detail-main {
    order: 1;
  }
}

/* ---- Small Mobile (480px and below) ---- */
@media (max-width: 480px) {
  .service-detail-image-wrap {
    height: 240px;
  }

  .service-card-image {
    height: 200px;
  }

  .service-detail-info .section-heading {
    font-size: 2rem;
  }

  .service-detail-info .section-body {
    font-size: 0.95rem;
  }
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-card {
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

.service-card:nth-child(1) {
  animation-delay: 0.05s;
}
.service-card:nth-child(2) {
  animation-delay: 0.1s;
}
.service-card:nth-child(3) {
  animation-delay: 0.15s;
}
.service-card:nth-child(4) {
  animation-delay: 0.2s;
}
.service-card:nth-child(5) {
  animation-delay: 0.25s;
}
.service-card:nth-child(6) {
  animation-delay: 0.3s;
}
.service-card:nth-child(7) {
  animation-delay: 0.35s;
}
.service-card:nth-child(8) {
  animation-delay: 0.4s;
}
.service-card:nth-child(9) {
  animation-delay: 0.45s;
}
.service-card:nth-child(10) {
  animation-delay: 0.5s;
}
.service-card:nth-child(11) {
  animation-delay: 0.55s;
}
.service-card:nth-child(12) {
  animation-delay: 0.6s;
}

/* ---- Custom Scrollbar for Sidebar (completely hidden on desktop) ---- */
.service-detail-sidebar {
  scrollbar-width: none !important; /* Firefox */
  -ms-overflow-style: none !important; /* IE/Edge */
}

.service-detail-sidebar::-webkit-scrollbar {
  width: 0 !important;
  height: 0 !important;
  display: none !important; /* Chrome/Safari/Opera */
}
