/* =========================
   SERVICES HERO
========================= */

.services-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 6vw 120px;
  z-index: 2;
}

.services-hero-inner {
  max-width: 1100px;
}

/* Eyebrow */
.services-eyebrow {
  font-family: "Orbitron", sans-serif;
  font-size: 12px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #ff8c1a;
  display: inline-block;
  margin-bottom: 16px;
}

/* Title */
.services-title {
  font-family: "Michroma", sans-serif;
  font-size: clamp(34px, 6vw, 72px);
  line-height: 1.05;
  margin-bottom: 22px;
}

/* Subtitle */
.services-subtitle {
  max-width: 620px;
  font-size: clamp(15px, 1.6vw, 19px);
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  margin-bottom: 34px;
}

/* CTAs */
.services-hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  text-decoration: none !important;
}
.btn-secondary {
  display: flex;
  align-items: center;
  justify-content: center;

  padding: 12px 20px;
  border-radius: 10px;

  font-family: "Exo 2", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;

  color: #fff;
  text-decoration: none;

  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);

  backdrop-filter: blur(6px);

}

/* Hover */
.btn-secondary:hover {
  background: rgba(255, 111, 0, 0.15);
  border-color: rgba(255, 111, 0, 0.6);
  transform: translateY(-2px);

  box-shadow:
    0 10px 30px rgba(255, 111, 0, 0.35);
}

/* Active */
.btn-secondary:active {
  transform: translateY(0);
}
/* -------------------------
   RESPONSIVE
------------------------- */

@media (max-width: 768px) {
  .services-hero {
    padding: 120px 20px 100px;
  }

  .services-title {
    font-size: clamp(28px, 9vw, 42px);
  }
}


/* =========================
   SERVICES PAGE BACKGROUND
========================= */

.services-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

/* ----- FLOWING PATHS ----- */
#services-bg-paths {
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* ----- DECORATIVE MESH ----- */
.bg-mesh {
  position: absolute;
  inset: 0;
  z-index: 2;

  background-image:
    linear-gradient(to right, rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.045) 1px, transparent 1px);

  background-size: 56px 56px;
  opacity: 0.55;

  -webkit-mask-image: radial-gradient(circle at center, black 65%, transparent 100%);
  mask-image: radial-gradient(circle at center, black 65%, transparent 100%);
}

/* ----- PARTICLES ----- */
#bg-particles {
  position: absolute;
  inset: 0;
  z-index: 3;
}

/* ----- GLOW LAYER ----- */
.bg-glow {
  position: absolute;
  inset: -25%;
  z-index: 4;

  background:
    radial-gradient(circle at 30% 40%, rgba(255,140,40,0.35), transparent 45%),
    radial-gradient(circle at 70% 60%, rgba(255,90,0,0.28), transparent 55%);

  filter: blur(120px);
  opacity: 0.75;
  animation: glowFloat 18s ease-in-out infinite alternate;
}

@keyframes glowFloat {
  0%   { transform: translate(-3%, -2%); }
  100% { transform: translate(3%, 2%); }
}

/* ----- MOBILE OPTIMIZATION ----- */
@media (max-width: 768px) {
  #services-bg-paths {
    display: none;
  }
}



/* =========================
   SERVICES SECTION (COMMON)
========================= */

.services-section {
  position: relative;
  padding: 50px 6vw;
  z-index: 2;
}

.services-section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
.services-section-header {
  max-width: 720px;
  margin-bottom: 80px;
}

.services-section-eyebrow {
  font-family: "Orbitron", sans-serif;
  font-size: 12px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #ff8c1a;
  display: inline-block;
  margin-bottom: 16px;
}

.services-section-title {
  font-family: "Michroma", sans-serif;
  font-size: clamp(30px, 5vw, 56px);
  line-height: 1.1;
  margin-bottom: 20px;
}

.services-section-desc {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,255,255,0.8);
}

/* =========================
   SERVICES LIST
========================= */

.services-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px 80px;
}

.service-item {
  position: relative;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.service-item h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.service-item p {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,0.75);
  margin-bottom: 16px;
}

.service-cta {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: #ff8c1a;
  text-decoration: none;
  position: relative;
}

.service-cta::after {
  content: "→";
  margin-left: 6px;
  transition: transform 0.2s ease;
}

.service-cta:hover::after {
  transform: translateX(4px);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {
  .services-list {
    grid-template-columns: 1fr;
    gap: 42px;
  }
}

@media (max-width: 768px) {
  .services-section {
    padding: 120px 20px;
  }
}

/* =========================
   CLOUD SERVICES SECTION
========================= */


.cloud-services-content {
  max-width: 720px;
}

.cloud-services-points {
  list-style: none;
  margin: 0 0 40px;
  padding: 0;
}

.cloud-services-points li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 14px;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
}

.cloud-services-points li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #ff8c1a;
  font-size: 22px;
  line-height: 1;
}

.cloud-services-cta {
  margin-top: 30px;
}


/* =========================
   SERVICES FINAL CTA
========================= */

.services-cta {
  position: relative;
  padding: 70px 6vw 100px;
  text-align: center;
  z-index: 2;
}

.services-cta-inner {
  max-width: 820px;
  margin: 0 auto;
}

/* Eyebrow */
.services-cta-eyebrow {
  font-family: "Orbitron", sans-serif;
  font-size: 12px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #ff8c1a;
  display: inline-block;
  margin-bottom: 18px;
}

/* Title */
.services-cta-title {
  font-family: "Michroma", sans-serif;
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1.1;
  margin-bottom: 22px;
}

/* Description */
.services-cta-desc {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  margin-bottom: 38px;
}

/* Actions */
.services-cta-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* -------------------------
   RESPONSIVE
------------------------- */

@media (max-width: 768px) {
  .services-cta {
    padding: 140px 20px 160px;
  }
}
