/* =====================================================
   AQUASOFT — Service Page
   (hero-trust-row shared styles are in aquasoft.css)
   ===================================================== */

/* HERO */
.srv-hero {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--deep) 0%, #0a5e57 100%);
}
.srv-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,59,56,.92) 0%, rgba(10,94,87,.80) 100%);
  z-index: 1;
}
.srv-hero-deco1 {
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(8,164,147,.25) 0%, transparent 65%);
  z-index: 2;
  pointer-events: none;
}
.srv-hero-deco2 {
  position: absolute;
  bottom: -120px; left: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,53,.14) 0%, transparent 65%);
  z-index: 2;
  pointer-events: none;
}
.srv-hero-inner {
  position: relative;
  z-index: 3;
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 24px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
}
@media (max-width: 760px) {
  .srv-hero-inner { grid-template-columns: 1fr; }
  .srv-hero-img-wrap { display: none; }
}
.srv-hero-text h1 {
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  color: #fff;
  font-size: 2.4rem;
  font-weight: 900;
  margin: 0 0 14px;
  line-height: 1.2;
}
.srv-hero-text p {
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  color: rgba(255,255,255,.78);
  margin: 0 0 28px;
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 520px;
}
.srv-hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.btn-srv-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: linear-gradient(135deg, #FF7A45, #FF6B35);
  color: #fff;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 800;
  font-size: .97rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 6px 22px rgba(255,107,53,.4);
  transition: transform .15s, box-shadow .15s;
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
}
.btn-srv-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(255,107,53,.5);
  color: #fff;
  text-decoration: none;
}
.btn-srv-sm {
  padding: 10px 20px;
  font-size: .85rem;
  box-shadow: 0 4px 14px rgba(255,107,53,.35);
}
.btn-srv-secondary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255,255,255,.10);
  color: #fff;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 700;
  font-size: .97rem;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,.25);
  cursor: pointer;
  white-space: nowrap;
  backdrop-filter: blur(4px);
  transition: background .15s, border-color .15s;
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
}
.btn-srv-secondary:hover {
  background: rgba(255,255,255,.18);
  border-color: rgba(255,255,255,.4);
  color: #fff;
  text-decoration: none;
}
.srv-hero-img-wrap {
  width: 260px;
  align-self: flex-end;
}
.srv-hero-img-wrap img {
  width: 100%;
  display: block;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,.35));
}

/* PAGE */
.srv-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 18px 64px;
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  color: #111827;
}

/* SERVICE CARDS */
.srv-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 48px;
}
@media (max-width: 700px) { .srv-cards { grid-template-columns: 1fr; } }

.srv-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 28px 22px;
  box-shadow: 0 3px 16px rgba(8,164,147,.07);
  text-align: center;
  transition: transform .2s, box-shadow .2s;
  position: relative;
  overflow: hidden;
}
.srv-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  border-radius: var(--r) var(--r) 0 0;
}
.srv-card.card-teal::before  { background: linear-gradient(90deg, var(--teal), var(--teal-d)); }
.srv-card.card-orange::before { background: linear-gradient(90deg, #FF7A45, #FF6B35); }
.srv-card.card-blue::before   { background: linear-gradient(90deg, #3b82f6, #1d4ed8); }
.srv-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(8,164,147,.14);
}
.srv-card-icon {
  width: 64px; height: 64px;
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}
.srv-card-icon.teal   { background: linear-gradient(135deg, #e0f5f3, #bde9e4); }
.srv-card-icon.orange { background: linear-gradient(135deg, #fff0e8, #ffd4bc); }
.srv-card-icon.blue   { background: linear-gradient(135deg, #e0eeff, #bcd5fd); }
.srv-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--deep);
  margin: 0 0 10px;
}
.srv-card p {
  font-size: .9rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.65;
}

/* SECTION TITLE */
.section-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--deep);
  margin: 0 0 28px;
  text-align: center;
}
.section-title-sub {
  text-align: center;
  color: var(--muted);
  font-size: .97rem;
  margin: -20px 0 28px;
}

/* MAINTENANCE TIMELINE */
.maint-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 48px;
}
.maint-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r);
  box-shadow: 0 3px 16px rgba(8,164,147,.07);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: stretch;
  overflow: hidden;
  gap: 0;
  transition: box-shadow .2s;
}
.maint-card:hover { box-shadow: 0 8px 32px rgba(8,164,147,.12); }
@media (max-width: 700px) {
  .maint-card { grid-template-columns: 1fr; }
  .maint-img-col { order: -1; }
}
.maint-badge-col {
  width: 100px;
  background: linear-gradient(180deg, var(--deep) 0%, #0a5e57 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 12px;
  gap: 6px;
}
.maint-badge-icon {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 6px;
}
.maint-badge-time {
  font-size: .78rem;
  font-weight: 800;
  color: #fff;
  text-align: center;
  line-height: 1.3;
}
.maint-badge-label {
  font-size: .66rem;
  color: rgba(255,255,255,.6);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.maint-body {
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.maint-body h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--deep);
  margin: 0 0 10px;
}
.maint-body p {
  font-size: .9rem;
  color: #374151;
  line-height: 1.65;
  margin: 0 0 14px;
}
.maint-checks { display: flex; flex-direction: column; gap: 5px; }
.maint-check {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: .86rem;
  color: #374151;
}
.maint-check-dot {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--teal-d));
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: #fff;
  font-size: .58rem;
  font-weight: 900;
  margin-top: 1px;
}
.maint-img-col {
  width: 180px;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--light);
  border-left: 1px solid var(--border);
}
.maint-img {
  width: 150px;
  height: 130px;
  object-fit: contain;
  display: block;
}
@media (max-width: 700px) {
  .maint-badge-col { width: 100%; flex-direction: row; padding: 14px 18px; gap: 12px; }
  .maint-img-col { width: 100%; height: 140px; border-left: none; border-top: 1px solid var(--border); }
  .maint-img { width: 100%; height: 120px; }
}

/* STATUS CTA */
.status-cta {
  background: linear-gradient(135deg, var(--deep) 0%, #0a5e57 100%);
  border-radius: var(--r);
  padding: 40px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
  margin-bottom: 0;
}
.status-cta::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.07) 0%, transparent 70%);
  pointer-events: none;
}
.status-cta::after {
  content: '';
  position: absolute;
  bottom: -60px; left: 40%;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(8,164,147,.18) 0%, transparent 70%);
  pointer-events: none;
}
.status-cta-text { position: relative; z-index: 1; }
.status-cta h2 {
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 6px;
}
.status-cta p {
  color: rgba(255,255,255,.72);
  margin: 0;
  font-size: .95rem;
}
.status-cta-action { position: relative; z-index: 1; }

/* MODALS */
.modal-header { background: var(--deep); }
.modal-title { color: #fff !important; }
.modal-header .close { color: #fff; opacity: .8; }
