/* Path: /public/assets/css/pages/services.css */
/* ── HERO BANNER ── */
.services-hero {
  width: 100%;
  background: #fff;
  padding: 36px 5% 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 5;
  overflow: hidden;
  min-height: 160px;
}

/* floating emoji decorations */
.hero-deco {
  position: absolute;
  pointer-events: none;
  font-size: 48px;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,.12));
  animation: float 4s ease-in-out infinite;
  user-select: none;
}
.hero-deco.hd1 { top: 10px; left: 8%;  font-size: 52px; animation-delay: 0s; }
.hero-deco.hd2 { top: 20px; left: 18%; font-size: 36px; animation-delay: .6s; }
.hero-deco.hd3 { top: 8px;  right: 20%; font-size: 44px; animation-delay: .3s; }
.hero-deco.hd4 { top: 30px; right: 10%; font-size: 38px; animation-delay: .9s; }
.hero-deco.hd5 { bottom: 10px; right: 5%; font-size: 34px; animation-delay: 1.2s; }
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50%       { transform: translateY(-10px) rotate(3deg); }
}

/* arrows decoration */
.hero-arrows {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-right: 14px;
  flex-shrink: 0;
}
.hero-arrows span {
  width: 0; height: 0;
  border-style: solid;
  border-width: 10px 0 10px 16px;
  display: block;
}
.hero-arrows span:nth-child(1) { border-color: transparent transparent transparent var(--pink); }
.hero-arrows span:nth-child(2) { border-color: transparent transparent transparent var(--cyan); opacity:.6; }
.hero-arrows span:nth-child(3) { border-color: transparent transparent transparent var(--pink); }

.hero-title {
  font-family: 'Dancing Script', cursive;
  font-size: clamp(42px, 7vw, 72px);
  color: var(--blue);
  line-height: 1.1;
  position: relative;
  z-index: 2;
}

/* ── SERVICES SECTION ── */
.services-wrap {
  max-width: 1200px;
  margin: 40px auto 80px;
  padding: 0 5%;
  position: relative;
  z-index: 5;
}

.service-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
  margin-bottom: 50px;
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
  display: flex;
  gap: 40px;
  align-items: flex-start;
  padding: 0;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,174,239,.15);
}

.service-image {
  flex: 0 0 380px;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  background: var(--gray);
}
.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-content {
  flex: 1;
  padding: 36px 36px 36px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--pink);
  margin-bottom: 8px;
}

.service-tagline {
  font-size: 16px;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 12px;
  font-style: italic;
}

.service-description {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 16px;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text);
}

.feature-item i {
  color: var(--cyan);
  font-size: 12px;
  margin-top: 4px;
  flex-shrink: 0;
}

.highlight-text {
  color: var(--blue);
  font-weight: 600;
}

/* ── RESPONSIVE ── */
@media (max-width: 968px) {
  .service-card { flex-direction: column; gap: 0; }
  .service-image { flex: none; width: 100%; min-height: 200px; }
  .service-content { padding: 30px 24px; }
}

@media (max-width: 640px) {
  .hero-title { font-size: 38px; }
  .hero-arrows { display: none; }
  .service-title { font-size: 24px; }
  .service-tagline { font-size: 15px; }
}