/* ============================================
   Service Page Styles
   ============================================ */

:root {
  --cyan-primary: #4ec9de;
  --cyan-dark: #2aafc7;
  --black: #0d0d0d;
  --dark: #111111;
  --dark-2: #1c1c1c;
  --dark-3: #161616;
  --white: #ffffff;
  --text-light: #e8f9fd;
  --text-muted: #a0c4cd;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  font-family: "Lato", sans-serif;
  background-color: var(--dark);
  color: var(--white);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* ============================================
   Skip Navigation
   ============================================ */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--cyan-primary);
  color: var(--black);
  padding: 0.75rem 1.5rem;
  font-weight: 700;
  font-size: 1rem;
  z-index: 10000;
  text-decoration: none;
  border-radius: 0 0 8px 0;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 0;
}

/* ============================================
   Shared Navbar (Bootstrap)
   ============================================ */

.navbar {
  background-color: var(--black) !important;
  opacity: 1;
  transition: opacity 0.5s ease;
  border-bottom: 2px solid rgba(78, 201, 222, 0.25);
}

.navbar-hide {
  pointer-events: none;
  opacity: 0;
}

.navbar-content-container {
  width: 85%;
}

.nav-link {
  color: var(--text-light);
  font-family: "Lato", sans-serif;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: color 0.2s ease;
}

.navbar-nav .nav-link.show {
  color: var(--text-light);
}

.nav-link:active { text-decoration: none; }
.nav-link:hover { color: var(--cyan-primary); }
.nav-link:focus { color: var(--text-light); }

.media-icon {
  font-size: 1.5rem;
  transition: color 0.2s ease, transform 0.2s ease;
}

.media-link { display: inline-block; }
.media-link:hover .media-icon { transform: scale(1.15); }

@media (max-width: 991px) {
  .media-link { padding-right: 3.5%; }
}

.fa-bars { color: var(--text-light); }
.btn-close { opacity: 1; }

.mobile-logo { display: none; width: 60px; }
.desktop-logo { width: 80px; }

@media (max-width: 991px) {
  .mobile-logo { display: inline; }
  .desktop-logo { display: none; }
}

.offcanvas.offcanvas-end {
  width: 100%;
  background-color: var(--black);
  transition: transform 0.15s ease-in-out;
}

.offcanvas-header { width: 80%; }
.offcanvas-body { width: 80%; }

.dropdown-menu {
  background-color: rgba(0, 0, 0, 0.95);
  border: 1px solid rgba(78, 201, 222, 0.2);
  border-radius: 6px;
}

.dropdown-item {
  color: var(--text-light);
  font-weight: 500;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.dropdown-item:hover {
  background-color: rgba(78, 201, 222, 0.15);
  color: var(--cyan-primary);
}

/* ============================================
   Back Link (in content area)
   ============================================ */

.service-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--cyan-primary);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  margin-bottom: 1.5rem;
  letter-spacing: 0.03em;
}

.service-back-link:hover {
  text-decoration: underline;
  color: var(--cyan-primary);
}

/* ============================================
   Legacy Simple Navbar (unused — kept for reference)
   ============================================ */

.service-navbar {
  background-color: var(--black);
  padding: 0.85rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  border-bottom: 1px solid rgba(78, 201, 222, 0.15);
}

.service-navbar-logo {
  height: 48px;
}

.back-link {
  color: var(--cyan-primary);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.back-link:hover {
  text-decoration: underline;
  color: var(--cyan-primary);
}

/* ============================================
   Hero Section
   ============================================ */

.service-page {
  padding-top: 74px;
}

.service-hero {
  position: relative;
  height: 420px;
  overflow: hidden;
}

.service-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: brightness(0.45);
}

.service-hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.service-hero-title {
  font-size: 3rem;
  font-weight: 900;
  color: var(--white);
  margin: 0 0 0.75rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}

.service-hero-subtitle {
  font-size: 1.25rem;
  color: var(--cyan-primary);
  font-weight: 700;
  margin: 0 0 1.75rem;
  max-width: 600px;
  line-height: 1.5;
}

.service-cta-btn {
  display: inline-block;
  background-color: var(--cyan-primary);
  color: var(--black);
  font-weight: 900;
  font-size: 1rem;
  padding: 0.8rem 2.2rem;
  border-radius: 6px;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: background-color 0.2s ease, transform 0.15s ease;
}

.service-cta-btn:hover {
  background-color: var(--cyan-dark);
  color: var(--black);
  transform: translateY(-2px);
}

/* ============================================
   Content Sections
   ============================================ */

.service-intro {
  padding: 4rem 10%;
  background-color: var(--black);
  border-bottom: 1px solid rgba(78, 201, 222, 0.1);
}

.service-intro-text {
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--text-light);
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.service-details {
  padding: 4rem 10%;
  background-color: var(--dark);
}

.service-details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

.service-section-heading {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--white);
  margin: 0 0 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.service-section-heading span {
  color: var(--cyan-primary);
}

.section-divider {
  width: 48px;
  height: 3px;
  background-color: var(--cyan-primary);
  margin: 0 0 2rem;
  border: none;
}

.detail-card {
  background-color: var(--dark-2);
  border: 1px solid rgba(78, 201, 222, 0.12);
  border-radius: 10px;
  padding: 1.75rem;
  transition: border-color 0.2s ease;
}

.detail-card:hover {
  border-color: rgba(78, 201, 222, 0.35);
}

.detail-card-icon {
  font-size: 1.6rem;
  color: var(--cyan-primary);
  margin-bottom: 0.75rem;
}

.detail-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 0.6rem;
}

.detail-card-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
}

/* ============================================
   Conditions / Who It Helps Section
   ============================================ */

.service-conditions {
  padding: 4rem 10%;
  background-color: var(--dark-3);
}

.conditions-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0.85rem;
  margin-top: 2rem;
}

.conditions-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.5;
}

.conditions-list li::before {
  content: "";
  display: inline-block;
  width: 8px;
  min-width: 8px;
  height: 8px;
  background-color: var(--cyan-primary);
  border-radius: 50%;
  margin-top: 0.42em;
}

/* ============================================
   Process / What to Expect Section
   ============================================ */

.service-process {
  padding: 4rem 10%;
  background-color: var(--dark);
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2.5rem;
  max-width: 780px;
}

.process-step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.step-number {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--cyan-primary);
  line-height: 1;
  min-width: 2.5rem;
}

.step-content-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 0.35rem;
}

.step-content-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
}

/* ============================================
   CTA Banner
   ============================================ */

.service-cta-banner {
  padding: 4rem 10%;
  background-color: var(--black);
  text-align: center;
  border-top: 1px solid rgba(78, 201, 222, 0.1);
}

.cta-banner-heading {
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
  margin: 0 0 0.75rem;
  text-transform: uppercase;
}

.cta-banner-subtext {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin: 0 0 2rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 992px) {
  .service-hero {
    height: 340px;
  }

  .service-hero-title {
    font-size: 2.2rem;
  }

  .service-intro,
  .service-details,
  .service-conditions,
  .service-process,
  .service-cta-banner {
    padding-left: 7%;
    padding-right: 7%;
  }
}

@media (max-width: 768px) {
  .service-hero {
    height: 280px;
  }

  .service-hero-title {
    font-size: 1.7rem;
  }

  .service-hero-subtitle {
    font-size: 1rem;
  }

  .service-intro,
  .service-details,
  .service-conditions,
  .service-process,
  .service-cta-banner {
    padding-left: 6%;
    padding-right: 6%;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .service-section-heading {
    font-size: 1.5rem;
  }

  .cta-banner-heading {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .service-navbar {
    padding: 0.75rem 1.25rem;
  }

  .service-hero {
    height: 240px;
  }

  .service-hero-title {
    font-size: 1.4rem;
  }

  .service-intro,
  .service-details,
  .service-conditions,
  .service-process,
  .service-cta-banner {
    padding-left: 5%;
    padding-right: 5%;
  }
}

/* ============================================
   Footer
   ============================================ */
.footer-section {
  background-color: var(--black);
  text-align: center;
  color: var(--white);
  padding: 1.75% 0;
  font-size: 0.85rem;
  width: 100%;
  border-top: 2px solid rgba(78, 201, 222, 0.25);
}

.footer-logo {
  width: 130px;
  opacity: 0.9;
  transition: opacity 0.2s ease;
}

.footer-logo:hover {
  opacity: 1;
}

.footer-logo-container {
  text-align: center;
}

.footer-copyright {
  padding: 5px 5%;
  text-align: left;
  margin: 0;
  font-weight: 400;
  color: var(--text-footer);
}

.footer-link {
  font-size: 1.2rem;
  padding: 0 1%;
  display: inline-block;
  color: var(--text-footer) !important;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.footer-link:hover {
  color: var(--text-footer) !important;
  transform: translateY(-2px);
}

.footer-links {
  text-align: right;
  padding: 0 5%;
}

.footer-logo-container-mobile {
  display: none;
}

@media (max-width: 991px) {
  .footer-logo-container-mobile {
    display: block;
    text-align: center;
  }

  .footer-logo-container {
    display: none;
  }

  .footer-copyright {
    text-align: center;
  }

  .footer-links {
    text-align: center;
  }
}
