/* =============================================
   SERVICES PAGE — services.css
   ============================================= */

/* Active nav link */
.nav-active {
  position: relative;
}
.nav-active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: currentColor;
  transform: scaleX(1) !important;
  transform-origin: left !important;
}

/* ─── SERVICES HERO ─── */
.svc-hero {
  min-height: 70vh;
  padding: 200px 60px 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.svc-hero-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.svc-float {
  position: absolute;
  opacity: 0.35;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.1));
}

.svc-float-1 { top: 12%; left: 5%;  width: clamp(80px, 12vw, 180px); animation: svcFloat1 8s ease-in-out infinite; }
.svc-float-2 { bottom: 15%; left: 18%; width: clamp(70px, 10vw, 150px); animation: svcFloat2 10s ease-in-out infinite; }
.svc-float-3 { top: 20%; right: 8%; width: clamp(90px, 14vw, 200px); animation: svcFloat3 9s ease-in-out infinite; }
.svc-float-4 { bottom: 10%; right: 15%; width: clamp(60px, 9vw, 140px); animation: svcFloat1 11s ease-in-out infinite; }

@keyframes svcFloat1 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50%      { transform: translate(18px, -22px) rotate(6deg); }
}
@keyframes svcFloat2 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50%      { transform: translate(-14px, 20px) rotate(-5deg); }
}
@keyframes svcFloat3 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50%      { transform: translate(12px, 16px) rotate(4deg); }
}

.svc-hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.svc-hero-label {
  display: inline-block;
  background: var(--accent-red);
  color: white;
  padding: 10px 28px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 50px;
  margin-bottom: 30px;
}

.svc-hero h1 {
  font-size: clamp(56px, 10vw, 130px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -3px;
  text-transform: uppercase;
  color: var(--text-main);
  margin-bottom: 25px;
}

.svc-hero-desc {
  font-size: clamp(16px, 1.8vw, 22px);
  line-height: 1.6;
  color: var(--text-main);
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto;
}

/* ─── SERVICE CATEGORY TABS ─── */
.svc-tabs {
  padding: 0 60px;
  margin-bottom: 60px;
  display: flex;
  justify-content: center;
}

.svc-tabs-inner {
  display: flex;
  gap: 12px;
  background: rgba(0, 0, 0, 0.04);
  padding: 8px;
  border-radius: 50px;
}

.svc-tab {
  padding: 14px 32px;
  border: none;
  background: transparent;
  font-size: 15px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  border-radius: 50px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  color: var(--text-main);
  position: relative;
}

.svc-tab:hover {
  background: rgba(177, 31, 35, 0.08);
  color: var(--accent-red);
}

.svc-tab.active {
  background: var(--accent-red);
  color: white;
  box-shadow: 0 4px 20px rgba(177, 31, 35, 0.3);
}

/* ─── SERVICE CARDS GRID ─── */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  padding: 0 60px 120px;
  max-width: 1300px;
  margin: 0 auto;
}

.svc-card {
  background: #fff;
  border-radius: 24px;
  padding: 45px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.svc-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--accent-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.svc-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.1);
  border-color: transparent;
}

.svc-card:hover::before {
  transform: scaleX(1);
}

.svc-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
}

.svc-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.svc-badge-custom {
  background: rgba(177, 31, 35, 0.1);
  color: var(--accent-red);
}

.svc-badge-product {
  background: rgba(30, 100, 80, 0.1);
  color: #1e6450;
}

.svc-badge-events {
  background: rgba(60, 60, 160, 0.1);
  color: #3c3ca0;
}

.svc-price {
  font-size: 13px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.5);
  font-style: italic;
}

.svc-card h2 {
  font-size: 28px;
  font-weight: 900;
  color: var(--text-main);
  margin-bottom: 8px;
  line-height: 1.1;
}

.svc-card h3 {
  font-size: 16px;
  font-weight: 500;
  color: var(--accent-red);
  margin-bottom: 18px;
  font-style: italic;
}

.svc-card-desc {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(0, 0, 0, 0.65);
  margin-bottom: 25px;
}

.svc-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
  margin-bottom: 30px;
  flex: 1;
}

.svc-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-main);
}

.svc-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-red);
  border-radius: 50%;
  flex-shrink: 0;
}

.svc-card-cta {
  display: inline-block;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  color: var(--accent-red);
  transition: all 0.3s ease;
  padding-top: 15px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.svc-card-cta:hover {
  letter-spacing: 3px;
}

/* Card hide/show animation for filtering */
.svc-card.hidden {
  display: none;
}

.svc-card.fade-in {
  animation: svcFadeIn 0.5s ease forwards;
}

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

/* ─── 30-DAY PACKAGE ─── */
.svc-package {
  background: var(--accent-red);
  color: white;
  border-radius: 40px;
  margin: 0 20px 120px;
  padding: 120px 80px;
  position: relative;
  overflow: hidden;
}

.svc-package-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.svc-pkg-shape {
  position: absolute;
  opacity: 0.15;
  filter: brightness(2);
}

.pkg-s1 { top: -5%; left: -3%; width: 180px; animation: svcFloat2 10s ease-in-out infinite; }
.pkg-s2 { bottom: -8%; right: 5%; width: 220px; animation: svcFloat1 12s ease-in-out infinite; }
.pkg-s3 { top: 30%; right: -5%; width: 100px; animation: svcFloat3 8s ease-in-out infinite; }
.pkg-s4 { bottom: 20%; left: 10%; width: 140px; animation: svcFloat1 9s ease-in-out infinite; }

.svc-package-layout {
  display: flex;
  gap: 80px;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}

.svc-package-left {
  flex: 1;
  position: sticky;
  top: 180px;
}

.svc-package-label {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 8px 22px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 50px;
  margin-bottom: 30px;
  backdrop-filter: blur(10px);
}

.svc-package-left h2 {
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -2px;
}

.svc-package-left h2 em {
  font-style: italic;
  opacity: 0.85;
}

.svc-package-right {
  flex: 1;
}

.svc-package-desc {
  font-size: 18px;
  line-height: 1.7;
  opacity: 0.9;
  margin-bottom: 40px;
}

.svc-package-features {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 50px;
}

.svc-pkg-item {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 17px;
  font-weight: 600;
}

.svc-pkg-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
  opacity: 0.7;
}

.svc-package-cta {
  display: inline-block;
  background: white;
  color: var(--accent-red);
  padding: 22px 50px;
  font-size: 17px;
  font-weight: 700;
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.svc-package-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.2);
}

/* ─── CTA SECTION ─── */
.svc-cta-section {
  padding: 150px 60px;
  text-align: center;
  position: relative;
}

.svc-cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.svc-cta-content h2 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  line-height: 1.15;
  color: var(--text-main);
  margin-bottom: 20px;
}

.svc-cta-content p {
  font-size: 20px;
  color: var(--accent-red);
  font-weight: 500;
  font-style: italic;
  margin-bottom: 40px;
}

.svc-cta-btn {
  display: inline-block;
  background: var(--accent-red);
  color: white;
  padding: 20px 60px;
  font-size: 18px;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 30px rgba(177, 31, 35, 0.25);
}

.svc-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(177, 31, 35, 0.35);
  background: #901618;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .svc-grid {
    grid-template-columns: 1fr;
  }
  .svc-package-layout {
    flex-direction: column;
    gap: 50px;
  }
  .svc-package-left {
    position: static;
  }
}

@media (max-width: 768px) {
  .svc-hero {
    padding: 140px 20px 60px;
    min-height: 50vh;
  }
  .svc-hero h1 {
    font-size: clamp(40px, 12vw, 80px);
  }
  .svc-tabs {
    padding: 0 20px;
    margin-bottom: 40px;
  }
  .svc-tabs-inner {
    flex-wrap: wrap;
    justify-content: center;
    border-radius: 20px;
  }
  .svc-tab {
    padding: 10px 20px;
    font-size: 13px;
  }
  .svc-grid {
    padding: 0 20px 80px;
    grid-template-columns: 1fr;
  }
  .svc-card {
    padding: 30px;
  }
  .svc-features {
    grid-template-columns: 1fr;
  }
  .svc-package {
    padding: 60px 30px;
    margin: 0 10px 80px;
    border-radius: 24px;
  }
  .svc-package-left h2 {
    font-size: clamp(36px, 8vw, 56px);
  }
  .svc-cta-section {
    padding: 80px 20px;
  }
}
