/* ── Slideshow ─────────────────────────────────────── */
.sp-slideshow-wrap {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  border-radius: 6px;
}
.sp-slideshow-wrap::before {
  content: '';
  display: block;
  padding-top: calc(340 / 960 * 100%);
}
.sp-slideshow {
  position: absolute;
  inset: 0;
}
.sp-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.sp-slide.active {
  opacity: 1;
  animation: sp-kenburns 6s ease-out forwards;
}
@keyframes sp-kenburns {
  from { transform: scale(1.07); }
  to   { transform: scale(1); }
}
.sp-slide-progress {
  position: absolute;
  bottom: 0; left: 0;
  height: 3px;
  background: rgba(255,255,255,0.9);
  width: 0%;
  z-index: 10;
}
.sp-slide-counter {
  position: absolute;
  bottom: 12px; right: 16px;
  color: rgba(255,255,255,0.75);
  font-size: 12px;
  letter-spacing: 2px;
  z-index: 10;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}
.sp-slide-dots {
  position: absolute;
  bottom: 14px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 7px;
  z-index: 10;
}
.sp-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}
.sp-dot.active {
  background: #fff;
  transform: scale(1.3);
}
.sp-slide-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.15);
  border: none; color: #fff;
  font-size: 18px;
  width: 40px; height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(4px);
  transition: background 0.2s, opacity 0.2s;
  opacity: 0; z-index: 10;
}
.sp-slideshow-wrap:hover .sp-slide-arrow { opacity: 1; }
.sp-slide-arrow:hover { background: rgba(255,255,255,0.3); }
.sp-prev { left: 12px; }
.sp-next { right: 12px; }
/* ─────────────────────────────────────────────────── */

/* ── Floating Buttons ──────────────────────────────── */
.float-btns {
  position: fixed;
  bottom: 28px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 9999;
  align-items: center;
}
.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
}
.float-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 22px rgba(0,0,0,0.32);
}
.float-btn.whatsapp { background: #25D366; }
.float-btn.call     { background: #2196F3; }
.float-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  animation: float-pulse 2.4s ease-out infinite;
}
.float-btn.whatsapp::after { border: 2px solid #25D366; }
.float-btn.call::after     { border: 2px solid #2196F3; }
@keyframes float-pulse {
  0%   { transform: scale(1);   opacity: 0.7; }
  70%  { transform: scale(1.6); opacity: 0; }
  100% { transform: scale(1.6); opacity: 0; }
}
/* ─────────────────────────────────────────────────── */

/* ── Why Section ───────────────────────────────────── */
.why-section {
  background: linear-gradient(135deg, #f0f4ff 0%, #e8f0fe 100%);
  padding: 60px 24px;
  font-family: 'Segoe UI', sans-serif;
}
.why-heading {
  text-align: center;
  margin-bottom: 48px;
}
.why-heading p {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #c8860a;
  margin-bottom: 10px;
}
.why-heading h2 {
  font-size: 30px;
  font-weight: 300;
  color: #1a1a2e;
  line-height: 1.3;
}
.why-heading h2 strong {
  font-weight: 700;
  color: #3b1a08;
}
.why-heading .underline {
  display: inline-block;
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, #c8860a, #f5b800);
  border-radius: 2px;
  margin-top: 14px;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}
.why-card {
  background: #fff;
  border-radius: 14px;
  padding: 32px 24px 28px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(42,82,152,0.07);
  border: 1px solid rgba(42,82,152,0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #c8860a, #f5b800);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}
.why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(42,82,152,0.15);
  border-color: rgba(42,82,152,0.2);
}
.why-card:hover::before { transform: scaleX(1); }
.why-icon-wrap {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffe57a, #f5b800);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  transition: background 0.3s;
}
.why-card:hover .why-icon-wrap {
  background: linear-gradient(135deg, #f5b800, #e0a000);
}
.why-icon-wrap svg {
  width: 32px;
  height: 32px;
  stroke: #3b1a08;
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.why-card:hover .why-icon-wrap svg { stroke: #3b1a08; }
.why-card h3 {
  font-size: 15px;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 10px;
  letter-spacing: 0.2px;
}
.why-card p {
  font-size: 13px;
  color: #666;
  line-height: 1.7;
}
@media (max-width: 768px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .why-heading h2 { font-size: 24px; }
}
@media (max-width: 480px) {
  .why-grid { grid-template-columns: 1fr; gap: 14px; }
}
/* ─────────────────────────────────────────────────── */

/* ── Procedures Section ────────────────────────────── */
.proc-section{background:linear-gradient(135deg,#fffbe6 0%,#fff3c4 100%);padding:60px 24px;font-family:'Segoe UI',sans-serif}
.proc-heading{text-align:center;margin-bottom:48px}
.proc-heading p.label{font-size:13px;font-weight:600;letter-spacing:3px;text-transform:uppercase;color:#c8860a;margin-bottom:10px}
.proc-heading h2{font-size:30px;font-weight:300;color:#1a1a2e;line-height:1.3}
.proc-heading h2 strong{font-weight:700;color:#3b1a08}
.proc-heading .underline{display:inline-block;width:48px;height:3px;background:linear-gradient(90deg,#c8860a,#f5b800);border-radius:2px;margin-top:14px}
.proc-heading .sub{font-size:14px;color:#666;margin-top:14px}
.proc-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:20px;max-width:1100px;margin:0 auto}
.proc-card{background:#fff;border-radius:14px;overflow:hidden;box-shadow:0 2px 12px rgba(42,82,152,.07);border:1px solid rgba(42,82,152,.08);transition:transform .25s,box-shadow .25s;position:relative}
.proc-card::before{content:'';position:absolute;top:0;left:0;right:0;height:3px;background:linear-gradient(90deg,#c8860a,#f5b800);transform:scaleX(0);transition:transform .3s;transform-origin:left;z-index:1}
.proc-card:hover{transform:translateY(-5px);box-shadow:0 12px 32px rgba(42,82,152,.15)}
.proc-card:hover::before{transform:scaleX(1)}
.proc-icon-box{background:linear-gradient(135deg,#3b1a08,#5c2d0e);padding:30px 20px;display:flex;align-items:center;justify-content:center;min-height:110px}
.proc-icon-box i{font-size:54px;color:#f5b800;line-height:1}
.proc-body{padding:18px 0 8px}
.proc-body h3{font-size:17px;font-weight:700;color:#1a1a2e;text-align:center;padding:0 16px;margin-bottom:16px;line-height:1.3}
.proc-item{font-size:13px;color:#555;text-align:center;padding:9px 16px;border-top:1px solid #f0f0f0}
.proc-item:last-child{border-bottom:1px solid #f0f0f0}
@media(max-width:900px){.proc-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:480px){.proc-grid{grid-template-columns:1fr}}
/* ─────────────────────────────────────────────────── */
