/* ============ SERVICES PAGE STYLES ============ */

/* HERO */
.services-hero {
  background: linear-gradient(135deg, #ff7a18 0%, #0472c0 55%, #0ca1ba 100%);
  padding: 80px 20px 70px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.services-hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.services-hero-content {
  max-width: 860px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.services-hero-content h1 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.25;
}

.services-hero-content h1 span {
  color: #ffe3c4;
}

.services-hero-content p {
  font-size: 17px;
  line-height: 1.65;
  opacity: 0.95;
  margin-bottom: 12px;
}

.services-hero-sub {
  font-size: 15px !important;
  opacity: 0.88 !important;
  max-width: 760px;
  margin: 0 auto 28px !important;
}

.services-quick-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 24px auto 0;
}

.quick-nav-chip {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.35);
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.quick-nav-chip:hover {
  background: #fff;
  color: #0472c0;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* MAIN SERVICES GRID */
.services-catalog-section {
  padding: 65px 20px;
  background: #fdfbf8;
}

.services-catalog-container {
  max-width: 1200px;
  margin: 0 auto;
}

.service-category-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 45px 0 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid #e5e7eb;
}

.service-category-title:first-of-type {
  margin-top: 10px;
}

.service-category-title h2 {
  font-size: 24px;
  font-weight: 800;
  color: #0f172a;
  margin: 0;
}

.service-category-title .cat-badge {
  font-size: 11px;
  font-weight: 700;
  background: #eff6ff;
  color: #0472c0;
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid #bfdbfe;
  text-transform: uppercase;
}

.services-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-detail-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 26px 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.28s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  scroll-margin-top: 100px;
}

.service-detail-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ff7a18, #0472c0);
  opacity: 0;
  transition: opacity 0.28s ease;
}

.service-detail-card:hover {
  transform: translateY(-4px);
  border-color: #ff9100;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.service-detail-card:hover::before {
  opacity: 1;
}

.service-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.service-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-icon-box.orange { background: #fff3e0; color: #ff7a18; }
.service-icon-box.blue   { background: #e0f2fe; color: #0472c0; }
.service-icon-box.green  { background: #dcfce7; color: #16a34a; }
.service-icon-box.teal   { background: #ccfbf1; color: #0d9488; }
.service-icon-box.violet { background: #f3e8ff; color: #7c3aed; }
.service-icon-box.rose   { background: #ffe4e6; color: #e11d48; }

.service-card-title-group h3 {
  font-size: 18px;
  font-weight: 800;
  color: #111827;
  margin: 0;
}

.service-card-title-group .sub {
  font-size: 12.5px;
  color: #0472c0;
  font-weight: 600;
}

.service-detail-card p.desc {
  font-size: 14.5px;
  color: #4b5563;
  line-height: 1.55;
  margin: 0 0 14px 0;
}

.service-feature-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 18px 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.service-feature-checklist li {
  font-size: 13px;
  color: #334155;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.45;
}

.service-feature-checklist li svg {
  color: #16a34a;
  flex-shrink: 0;
  margin-top: 2px;
}

.service-card-footer {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid #f1f5f9;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.service-badge-pill {
  font-size: 11px;
  font-weight: 700;
  color: #64748b;
  background: #f8fafc;
  padding: 3px 8px;
  border-radius: 6px;
}

.service-action-link {
  font-size: 12.5px;
  font-weight: 700;
  color: #ff7a18;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s ease;
}

.service-action-link:hover {
  gap: 7px;
  color: #e65100;
}

/* WHY USE MYTRAVELING */
.why-us-section {
  padding: 65px 20px;
  background: #f8fafc;
}

.why-us-container {
  max-width: 1100px;
  margin: 0 auto;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 35px;
}

.why-us-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 26px 20px;
  text-align: center;
  transition: all 0.28s ease;
}

.why-us-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.why-us-icon {
  font-size: 32px;
  margin-bottom: 12px;
  display: inline-block;
}

.why-us-card h3 {
  font-size: 18px;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 8px 0;
}

.why-us-card p {
  font-size: 13.5px;
  color: #64748b;
  line-height: 1.5;
  margin: 0;
}

/* COMING SOON SECTION */
.coming-soon-card {
  background: linear-gradient(135deg, rgba(4, 114, 192, 0.06) 0%, rgba(255, 122, 24, 0.06) 100%);
  border: 1.5px dashed #0472c0;
  border-radius: 16px;
  padding: 36px 30px;
  text-align: center;
  max-width: 900px;
  margin: 40px auto 0;
}

.coming-soon-card h3 {
  font-size: 22px;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 10px 0;
}

.coming-soon-card p {
  font-size: 15px;
  color: #475569;
  line-height: 1.6;
  max-width: 720px;
  margin: 0 auto;
}

/* IMPORTANT NOTICE CARD */
.service-disclaimer-card {
  background: #fffdfa;
  border: 1.5px solid #fed7aa;
  border-radius: 16px;
  padding: 28px;
  max-width: 900px;
  margin: 40px auto 0;
  box-shadow: 0 4px 12px rgba(255, 122, 24, 0.06);
}

.service-disclaimer-card .head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.service-disclaimer-card .head svg {
  color: #ea580c;
  flex-shrink: 0;
}

.service-disclaimer-card .head h3 {
  font-size: 18px;
  font-weight: 800;
  color: #9a3412;
  margin: 0;
}

.service-disclaimer-card p {
  font-size: 14px;
  color: #4b5563;
  line-height: 1.6;
  margin: 0 0 10px 0;
}

.service-disclaimer-card p:last-child {
  margin-bottom: 0;
}

/* CTA BANNER */
.services-cta-section {
  padding: 70px 20px;
  background: linear-gradient(135deg, #ff7a18 0%, #0472c0 60%, #0ca1ba 100%);
  color: #fff;
  text-align: center;
}

.services-cta-container {
  max-width: 800px;
  margin: 0 auto;
}

.services-cta-section h2 {
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 14px;
  color: #fff;
}

.services-cta-section p {
  font-size: 17px;
  line-height: 1.65;
  opacity: 0.95;
  margin-bottom: 24px;
}

.services-cta-tagline {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  padding: 10px 24px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.5px;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .services-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-us-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .services-hero {
    padding: 55px 20px 45px;
  }
  .services-hero-content h1 {
    font-size: 28px;
  }
  .services-hero-content p {
    font-size: 15px;
  }
  .services-cards-grid {
    grid-template-columns: 1fr;
  }
  .why-us-grid {
    grid-template-columns: 1fr;
  }
  .services-cta-section h2 {
    font-size: 26px;
  }
}
