/* LAYANAN PAGE STYLES */
.layanan-page {
  padding-top: 80px;
  background: #fff;
}

/* --- HERO --- */
.layanan-hero {
  background: linear-gradient(135deg, #FF8C42, #E8650A);
  padding: 80px 24px;
  text-align: left;
  color: white;
  position: relative;
  overflow: hidden;
}

.layanan-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.layanan-hero h1 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  margin-bottom: 15px;
}

.layanan-hero p {
  font-size: 18px;
  opacity: 0.9;
  max-width: 600px;
}

/* --- HOTLINE CARDS --- */
.hotline-section {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 24px;
}

.hotline-title {
  text-align: center;
  margin-bottom: 50px;
}

.hotline-title h2 {
  font-size: 32px;
  font-weight: 800;
  color: #1a202c;
}

.hotline-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.hotline-card {
  background: white;
  border-radius: 24px;
  padding: 40px;
  border: 1px solid #edf2f7;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform 0.3s ease;
}

.hotline-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.hotline-header {
  display: flex;
  align-items: center;
  gap: 20px;
}

.hotline-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.hotline-icon.orange {
  background: rgba(232, 101, 10, 0.1);
  color: var(--orange);
}

.hotline-icon.green {
  background: rgba(61, 139, 55, 0.1);
  color: var(--green);
}

.hotline-info h3 {
  font-size: 20px;
  font-weight: 700;
  color: #2d3748;
}

.hotline-info p {
  font-size: 14px;
  color: #718096;
}

.hotline-number {
  font-size: 24px;
  font-weight: 800;
  color: var(--orange);
  margin: 10px 0;
}

.hotline-card.admin .hotline-number {
  color: var(--green);
}

.hotline-desc {
  font-size: 15px;
  color: #4a5568;
  line-height: 1.6;
}

.hotline-actions {
  display: flex;
  gap: 15px;
  margin-top: auto;
}

.btn-hotline {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-hotline.wa-orange {
  background: var(--orange);
  color: white;
}

.btn-hotline.wa-green {
  background: var(--green);
  color: white;
}

.btn-hotline-circle {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #eee;
  color: #666;
  font-size: 18px;
  transition: all 0.3s;
}

.btn-hotline:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.btn-hotline-circle:hover {
  border-color: var(--orange);
  color: var(--orange);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hotline-grid {
    grid-template-columns: 1fr;
  }
}
