/* ══════════════════════════════════════════════════
   SERVICE SECTION — IMAGE OVERLAY TILE DESIGN
   4 columns · Clean · Inspired by reference site
   ══════════════════════════════════════════════════ */

/* ── Section wrapper ── */
.srv-section {
  background: #f7f4f0;
  padding: 80px 0 70px;
  position: relative;
}

/* ── Section header ── */
.srv-section-header {
  text-align: center;
  margin-bottom: 50px;
}

.srv-eyebrow {
  display: inline-block;
  background: linear-gradient(135deg, #c8860a, #ffc107);
  color: #fff;
  font-size: 11px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 2.5px;
  padding: 6px 22px; border-radius: 30px;
  margin-bottom: 16px;
  box-shadow: 0 4px 14px rgba(200,134,10,0.3);
}

.srv-eyebrow .fa { font-size: 9px; margin: 0 4px; }

.srv-main-title {
  font-family: "Cinzel", serif;
  font-size: clamp(24px, 4vw, 38px);
  font-weight: 800; color: #1a1a2e;
  margin: 0 0 12px; line-height: 1.2;
}

.srv-main-title span { color: #1a2d6b; }

.srv-main-sub {
  font-size: 15px; color: #888;
  max-width: 480px; margin: 0 auto;
}

/* ── Column spacing ── */
.srv-grid { margin-top: 10px; }

.srv-col { margin-bottom: 28px; }

/* ══════════════════════════════════════════════════
   SERVICE CARD
   ══════════════════════════════════════════════════ */
.srv-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0,0,0,0.08);
  transition: transform 0.32s ease, box-shadow 0.32s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.srv-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 50px rgba(0,0,0,0.14);
}

/* ── Image link wrapper ── */
.srv-card-img-link {
  display: block;
  text-decoration: none;
  position: relative;
  flex-shrink: 0;
}

/* ── Image container ── */
.srv-card-img {
  position: relative;
  height: 230px;
  overflow: hidden;
}

/* ── Icon badge — centred above middle of image ── */
.srv-card-icon {
  position: absolute;
  top: 16px; left: 50%;
  transform: translateX(-50%);
  width: 62px; height: 62px; border-radius: 50%;
  background: rgba(13, 27, 62, 0.82);
  border: 3px solid rgba(255, 193, 7, 0.7);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; color: #ffc107;
  z-index: 4;
  box-shadow: 0 4px 16px rgba(0,0,0,0.35);
  backdrop-filter: blur(4px);
  transition: all 0.35s ease;
}

.srv-card:hover .srv-card-icon {
  background: rgba(200, 134, 10, 0.92);
  color: #fff;
  border-color: #fff;
  transform: translateX(-50%) scale(1.12) rotate(-8deg);
}

/* ── Service photo — NO shadow, NO filter ── */
.srv-card-img img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.55s ease;
  /* zero shadow · zero filter · zero overlay filter */
}

.srv-card:hover .srv-card-img img {
  transform: scale(1.08);
}

/* ── Dark gradient overlay (title lives here) ── */
.srv-card-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 55px 16px 16px;
  background: linear-gradient(to top,
    rgba(10, 18, 45, 0.95) 0%,
    rgba(10, 18, 45, 0.6) 60%,
    transparent 100%);
  transition: padding 0.35s ease;
}

.srv-card:hover .srv-card-overlay {
  padding-bottom: 20px;
}

.srv-card-overlay-title {
  font-family: "Cinzel", serif;
  font-size: 15px; font-weight: 700;
  color: #fff; margin: 0;
  text-align: center; line-height: 1.3;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
  transition: color 0.25s ease;
}

.srv-card:hover .srv-card-overlay-title { color: #ffc107; }

/* ── Card footer ── */
.srv-card-footer {
  padding: 16px 16px 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #fff;
}

.srv-card-desc {
  font-size: 13px; line-height: 1.7; color: #777;
  margin: 0 0 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden;
}

.srv-card-actions {
  display: flex; align-items: center;
  justify-content: space-between; gap: 8px;
}

/* "Click Here To Read More" link */
.srv-card-readmore {
  font-family: 'Poppins', sans-serif;
  font-size: 12px; font-weight: 700;
  color: #1a2d6b; text-decoration: none;
  text-transform: uppercase; letter-spacing: 0.5px;
  display: inline-flex; align-items: center; gap: 5px;
  transition: color 0.22s ease, gap 0.22s ease;
}

.srv-card-readmore i { transition: transform 0.22s ease; }

.srv-card-readmore:hover {
  color: #c8860a; gap: 8px;
}

.srv-card-readmore:hover i { transform: translateX(4px); }

/* WhatsApp icon button */
.srv-card-wa {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 50%;
  background: #25d366; color: #fff;
  font-size: 17px; text-decoration: none; flex-shrink: 0;
  transition: all 0.25s ease;
  box-shadow: 0 3px 10px rgba(37,211,102,0.3);
}

.srv-card-wa:hover {
  background: #1ba84d; color: #fff;
  transform: scale(1.1);
  box-shadow: 0 6px 18px rgba(37,211,102,0.4);
}

/* ══ BOTTOM CTA STRIP ══ */
.srv-cta-strip {
  margin-top: 50px;
  background: linear-gradient(135deg, #1a2d6b 0%, #0d1b3e 60%, #1a2d6b 100%);
  border-radius: 18px; padding: 40px 36px;
  display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 24px;
  position: relative; overflow: hidden;
  box-shadow: 0 16px 50px rgba(13,27,62,0.2);
  transition: transform 0.32s ease;
}

.srv-cta-strip:hover { transform: translateY(-3px); }

.srv-cta-strip::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(200,134,10,0.12) 0%, transparent 60%);
  pointer-events: none;
}

.srv-cta-text { position: relative; z-index: 1; }

.srv-cta-text h3 {
  font-family: "Cinzel", serif;
  font-size: clamp(18px, 2.5vw, 24px); font-weight: 700;
  color: #fff; margin: 0 0 6px;
}

.srv-cta-text p {
  font-size: 13px; color: rgba(255,255,255,0.55); margin: 0;
}

.srv-cta-btns {
  display: flex; gap: 14px; flex-wrap: wrap;
  position: relative; z-index: 1;
}

.srv-cta-btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, #c8860a, #ffc107);
  color: #0a0e2a; font-size: 14px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1px;
  padding: 13px 30px; border-radius: 50px; text-decoration: none;
  white-space: nowrap;
  transition: all 0.25s ease; position: relative; top: 0;
  box-shadow: 0 6px 18px rgba(200,134,10,0.35), 0 3px 0 rgba(140,80,0,0.6);
}

.srv-cta-btn-primary:hover {
  top: 3px; color: #0a0e2a;
  box-shadow: 0 2px 6px rgba(200,134,10,0.2), 0 0 0;
}

.srv-cta-btn-wa {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(37,211,102,0.12);
  color: #fff; font-size: 14px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  padding: 12px 28px; border-radius: 50px; text-decoration: none;
  border: 1px solid rgba(37,211,102,0.4); white-space: nowrap;
  transition: all 0.28s ease;
}

.srv-cta-btn-wa .fa { color: #25d366; transition: color 0.28s ease; }

.srv-cta-btn-wa:hover {
  background: #25d366; color: #000;
  box-shadow: 0 8px 22px rgba(37,211,102,0.3);
}

.srv-cta-btn-wa:hover .fa { color: #000; }

/* ── RESPONSIVE ── */
@media (max-width: 991px) {
  .srv-section { padding: 60px 0 50px; }
  .srv-card-img { height: 200px; }
  .srv-cta-strip { flex-direction: column; text-align: center; }
  .srv-cta-btns { justify-content: center; }
}

@media (max-width: 767px) {
  .srv-card-img { height: 210px; }
  .srv-section { padding: 50px 0 40px; }
  .srv-cta-strip { padding: 32px 22px; }
}

@media (max-width: 480px) {
  .srv-card-icon { width: 52px; height: 52px; font-size: 20px; top: 12px; }
  .srv-card-overlay-title { font-size: 14px; }
  .srv-card-footer { padding: 14px 14px 16px; }
}
