/* Service Pages Custom Styles for CIAxil */

:root {
  --primary-color: #007bff;
  --secondary-color: #0a2540;
  --accent-color: #00c853;
  --text-dark: #1a1a1a;
  --text-muted: #4a4a4a;
  --bg-light: #f8fbff;
  --bg-gradient: linear-gradient(135deg, #0a2540 0%, #007bff 100%);
  --glass-bg: rgba(255, 255, 255, 0.85);
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Breadcrumb / Hero Section */
.service-hero {
  background: var(--bg-gradient);
  padding: 120px 0 80px;
  color: white;
  text-align: center;
  overflow: hidden;
}

.service-hero::after {
  content: "";
  position: absolute;
  bottom: -50px;
  left: -10%;
  width: 120%;
  height: 100px;
  background: #ffffff00;
  transform: rotate(-2deg);
}

.service-hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.service-hero .container {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.service-hero .lead {
  font-size: clamp(1.05rem, 2vw, 1.4rem);
  line-height: 1.7;
  max-width: 680px;
  margin-right: auto;
  margin-left: auto;
  padding: 0 12px;
}

.breadcrumb-custom {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
  font-size: 0.9rem;
  opacity: 0.8;
}

.breadcrumb-custom li + li::before {
  content: " / ";
  padding: 0 10px;
}

.breadcrumb-custom a {
  color: white;
  text-decoration: none;
}

/* Content Sections */
.section-padding {
  padding: 100px 0;
}

.section-title {
  margin-bottom: 50px;
}

.section-title h2 {
  font-weight: 700;
  color: var(--secondary-color);
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.section-title h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--primary-color);
}

/* Service Info Card */
.service-info-box {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 35px;
  box-shadow: var(--shadow-soft);
  margin-bottom: 30px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.service-info-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.service-info-box h3 {
  color: var(--primary-color);
  font-size: 1.35rem; /* Reduced from 1.5rem */
  font-weight: 700;
  margin-bottom: 15px; /* Reduced from 20px */
}

.service-info-box h4 {
  color: var(--secondary-color);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0px;
}

.service-info-box p {
  font-size: 0.95rem; /* Reduced from 1.05rem */
  line-height: 1.6; /* Tighter line height */
  color: var(--text-muted);
}

/* Feature List */
.feature-list {
  list-style: none;
  padding: 0;
  margin-top: 10px; /* Reduced from 30px */
}

.feature-list li {
  padding-left: 30px; /* Tighter padding */
  position: relative;
  margin-bottom: 12px; /* Reduced from 15px */
  font-size: 0.95rem; /* Reduced from 1.05rem */
  color: var(--text-dark);
}

.feature-list li::before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--accent-color);
  font-size: 1.2rem;
}

/* Graphics / Image Placeholder */
.page-graphic {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Process Section */
.process-step {
  text-align: center;
  padding: 30px;
}

.step-num {
  width: 60px;
  height: 60px;
  background: var(--bg-gradient);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 20px;
}

/* Call to Action */
.cta-banner {
  background: var(--secondary-color);
  padding: 80px 0;
  color: white;
  text-align: center;
  border-radius: 30px;
  margin: 60px 0;
}

.btn-premium {
  padding: 15px 40px;
  border-radius: 50px;
  background: var(--primary-color);
  color: white;
  font-weight: 700;
  transition: 0.4s;
  border: none;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-premium:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 123, 255, 0.4);
  color: white;
}

/* Responsive */
@media (max-width: 768px) {
  .service-hero {
    padding: 110px 0 70px;
  }

  .service-hero h1 {
    font-size: 2.5rem;
    line-height: 1.15;
    margin-bottom: 16px;
  }

  .service-hero .lead {
    font-size: 1rem;
    line-height: 1.6;
    max-width: 100%;
    margin-bottom: 20px !important;
    padding: 0;
  }

  .breadcrumb-custom {
    flex-wrap: wrap;
    row-gap: 6px;
  }
}

@media (max-width: 576px) {
  .service-hero {
    padding: 100px 0 60px;
  }

  .service-hero h1 {
    font-size: 2rem;
  }

  .service-hero .lead {
    font-size: 0.95rem;
  }
}

/* Custom Box Heights & Alignment */
.h-30 {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.h-30 > a.btn {
  margin-top: auto;
  align-self: flex-start;
}

/* Narrow column gap */
.narrow-gap {
  margin-left: -10px;
  margin-right: -10px;
}
.narrow-gap > [class*="col-"] {
  padding-left: 10px;
  padding-right: 10px;
}

@media (max-width: 768px) {
  .h-30 {
    min-height: auto;
    height: auto;
  }
}

