/* =========================================
   TITAN GUARD SOLUTION - Services Page Styles
   ========================================= */

/* --- Page Hero (Inner Pages) --- */
.page-hero {
  position: relative;
  height: 420px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  z-index: 0;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(13, 27, 62, 0.93) 0%,
    rgba(13, 27, 62, 0.70) 60%,
    rgba(13, 27, 62, 0.45) 100%
  );
  z-index: 1;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 20px;
}

.page-hero-content .breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 16px;
}

.page-hero-content .breadcrumb a {
  color: rgba(255,255,255,0.6);
  transition: color 0.3s;
}

.page-hero-content .breadcrumb a:hover {
  color: var(--white);
}

.page-hero-content .breadcrumb .sep {
  color: var(--accent-blue);
}

.page-hero-content .breadcrumb .current {
  color: var(--white);
}

.page-hero-content h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 14px;
}

.page-hero-content h1 span {
  color: var(--bright-blue);
}

.page-hero-content p {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  max-width: 600px;
  line-height: 1.7;
}

/* --- Services Full Grid --- */
.services-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-full-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--mid-grey);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.service-full-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(30, 107, 196, 0.25);
}

.service-full-img {
  height: 210px;
  overflow: hidden;
  position: relative;
}

.service-full-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-full-card:hover .service-full-img img {
  transform: scale(1.06);
}

.service-full-img .service-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: linear-gradient(135deg, var(--accent-blue), var(--primary-navy));
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.service-full-body {
  padding: 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-full-icon {
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, var(--accent-blue), var(--primary-navy));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: var(--white);
  margin-bottom: 16px;
  flex-shrink: 0;
}

.service-full-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 10px;
  line-height: 1.3;
}

.service-full-text {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.75;
  flex: 1;
  margin-bottom: 18px;
}

.service-full-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--accent-blue);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: auto;
  transition: var(--transition);
}

.service-full-link:hover {
  color: var(--primary-navy);
  gap: 10px;
}

/* --- Why Choose Us Section (Services Page) --- */
.why-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.why-services-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--mid-grey);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.why-services-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-blue), var(--bright-blue));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

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

.why-services-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.why-services-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(30, 107, 196, 0.1), rgba(13, 27, 62, 0.08));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--accent-blue);
  margin: 0 auto 20px;
  border: 2px solid rgba(30, 107, 196, 0.15);
  transition: var(--transition);
}

.why-services-card:hover .why-services-icon {
  background: linear-gradient(135deg, var(--accent-blue), var(--primary-navy));
  color: var(--white);
  border-color: transparent;
}

.why-services-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 12px;
}

.why-services-text {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* --- Process / Steps Section --- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 35px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-blue), var(--bright-blue));
  z-index: 0;
}

.process-step {
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.process-number {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--accent-blue), var(--primary-navy));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--white);
  margin: 0 auto 20px;
  box-shadow: 0 4px 20px rgba(30, 107, 196, 0.35);
  border: 3px solid var(--white);
}

.process-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 8px;
}

.process-text {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* --- Coverage Map Banner --- */
.coverage-banner {
  background: linear-gradient(135deg, var(--primary-navy), var(--secondary-navy));
  padding: 60px 0;
  text-align: center;
}

.coverage-banner h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}

.coverage-banner p {
  color: var(--silver);
  font-size: 0.95rem;
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.8;
}

.coverage-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 36px;
}

.coverage-tag {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  padding: 7px 18px;
  border-radius: 30px;
  font-size: 0.82rem;
  font-weight: 500;
}

/* Responsive */
@media (max-width: 1024px) {
  .services-full-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  .process-grid::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .page-hero {
    height: 320px;
  }
  .services-full-grid {
    grid-template-columns: 1fr;
  }
  .why-services-grid {
    grid-template-columns: 1fr;
  }
  .process-grid {
    grid-template-columns: 1fr;
  }
}
