/* ============================================================
   PAKETEA — Premium Design System
   Colors: #00b5db (primary), #ff8c00 (accent/orange)
   ============================================================ */

/* ─── KEYFRAMES ─────────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-28px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(28px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.92); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes shimmer {
  0%   { background-position: -800px 0; }
  100% { background-position:  800px 0; }
}
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 0   rgba(0,181,219,.4); }
  50%       { box-shadow: 0 0 0 12px rgba(0,181,219,0); }
}
@keyframes pulseRed {
  0%, 100% { box-shadow: 0 0 0 0   rgba(239,68,68,.4); }
  50%       { box-shadow: 0 0 0 10px rgba(239,68,68,0); }
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}
@keyframes spinnerRotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ─── SCROLL-REVEAL (Premium) ───────────────────────────── */
.aos-elem {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1);
  will-change: opacity, transform;
}
.aos-elem.aos-in { opacity: 1; transform: none; }

/* Direction variants */
.aos-left  { transform: translateX(-50px); }
.aos-right { transform: translateX(50px); }
.aos-scale { transform: scale(.88); }
.aos-left.aos-in, .aos-right.aos-in, .aos-scale.aos-in { transform: none; }

/* Stagger delays */
.aos-delay-1 { transition-delay: .08s; }
.aos-delay-2 { transition-delay: .16s; }
.aos-delay-3 { transition-delay: .24s; }
.aos-delay-4 { transition-delay: .32s; }
.aos-delay-5 { transition-delay: .40s; }
.aos-delay-6 { transition-delay: .48s; }

/* Speed variants */
.aos-fast { transition-duration: .45s; }
.aos-slow { transition-duration: 1s; }

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  .aos-elem { transition-duration: 0s !important; transform: none !important; opacity: 1 !important; }
}

/* ─── SKELETON LOADERS ───────────────────────────────────── */
.sk-wrap {
  position: relative;
  background: #eef2f7;
  overflow: hidden;
  border-radius: 8px;
}
.sk-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 25%, rgba(255,255,255,.55) 50%, transparent 75%);
  background-size: 800px 100%;
  animation: shimmer 1.4s infinite linear;
}
.sk-wrap.sk-loaded::after { display: none; }
.sk-wrap img {
  opacity: 0;
  display: block;
  width: 100%;
  transition: opacity .35s ease;
}
.sk-wrap.sk-loaded img { opacity: 1; }

/* ─── TYPOGRAPHY ─────────────────────────────────────────── */
.pk-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #0f172a;
  margin-bottom: .5rem;
  line-height: 1.15;
  letter-spacing: -.3px;
}
.pk-subtitle {
  font-size: 1.05rem;
  color: #64748b;
  font-weight: 400;
  line-height: 1.65;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.pk-rule {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, #0ea5e9, #38bdf8);
  box-shadow: 0 0 12px rgba(14,165,233,.3);
  border-radius: 3px;
  margin: .8rem auto 1.4rem;
  border: none;
}
.pk-rule-left { margin-left: 0; }
.text-brand  { color: #00b5db !important; }
.text-accent { color: #ff8c00 !important; }
.text-grad {
  background: linear-gradient(135deg, #00b5db, #ff8c00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── TOP STRIP ──────────────────────────────────────────── */
.pk-topstrip {
  background: linear-gradient(90deg, #0e1726, #1a2540);
  padding: 0;
  height: 30px;
  display: flex;
  align-items: center;
  font-size: .75rem;
  color: #94a3b8;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1031;
}
.pk-topstrip.pk-hide { transform: translateY(-100%); opacity: 0; pointer-events: none; }
.pk-topstrip-inner {
  display: flex;
  align-items: center;
  gap: 6px;
}
.pk-topstrip-item { display: inline-flex; align-items: center; gap: 5px; }
.pk-topstrip-item i { color: #00b5db; font-size: .7rem; }
.pk-topstrip-sep { color: #334155; margin: 0 2px; }
.pk-topstrip-right { margin-left: auto; display: flex; gap: 8px; }
.pk-topstrip-social {
  color: #64748b !important;
  font-size: .8rem;
  transition: color .2s;
  text-decoration: none !important;
}
.pk-topstrip-social:hover { color: #00b5db !important; }
@media (max-width: 767.98px) {
  .pk-topstrip { display: none; }
}

/* ─── NAVBAR ─────────────────────────────────────────────── */
.pk-navbar {
  position: fixed;
  top: 30px; left: 0; right: 0;
  z-index: 1030;
  background: rgba(255,255,255,.98);
  border-bottom: 1px solid rgba(0,0,0,.06);
  transition: top .35s ease, box-shadow .35s ease, background .35s ease;
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
.pk-navbar.pk-scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,.08) !important;
  border-bottom: 1px solid rgba(0,181,219,.12) !important;
}
@media (max-width: 767.98px) {
  .pk-navbar {
    top: 0;
    box-shadow: 0 2px 16px rgba(0,0,0,.06) !important;
    border-bottom: 1px solid rgba(14,165,233,.08) !important;
  }
}

/* Inner layout — custom flex, no bootstrap navbar classes */
.pk-navbar-inner {
  display: flex;
  align-items: center;
  height: 58px;
  gap: 12px;
}

/* Brand */
.pk-brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none !important;
}
.pk-brand img { transition: transform .25s ease; height: 38px; }
.pk-brand:hover img { transform: scale(1.03); }

/* Center navigation — desktop only */
.pk-nav-center {
  display: flex;
  align-items: center;
  gap: 2px;
  margin: 0 auto;
}
.pk-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  font-size: .84rem;
  font-weight: 500;
  color: #475569 !important;
  text-decoration: none !important;
  border-radius: 8px;
  transition: color .2s, background .2s;
  white-space: nowrap;
  cursor: pointer;
}
.pk-link i { font-size: .72rem; color: #94a3b8; transition: color .2s; }
.pk-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 2.5px;
  background: linear-gradient(90deg, #00b5db, #0190af);
  border-radius: 2px;
  transition: width .25s ease;
}
.pk-link:hover { color: #0e7490 !important; background: rgba(0,181,219,.06); }
.pk-link:hover i { color: #00b5db; }
.pk-link:hover::after { width: 50%; }
@media (max-width: 767.98px) {
  .pk-nav-center { display: none; }
}

/* Right actions */
.pk-nav-right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

/* CTA button */
.pk-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  background: linear-gradient(135deg, #00b5db 0%, #0190af 100%);
  color: #fff !important;
  font-size: .82rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none !important;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0,181,219,.25);
  transition: transform .2s, box-shadow .2s, background .2s;
  white-space: nowrap;
}
.pk-cta-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0,181,219,.35);
  color: #fff !important;
}
.pk-cta-btn i { font-size: .75rem; }

/* Phone button */
.pk-phone-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  font-size: .82rem;
  font-weight: 600;
  color: #334155 !important;
  background: #f1f5f9;
  border-radius: 10px;
  text-decoration: none !important;
  cursor: pointer;
  transition: all .25s ease;
  white-space: nowrap;
}
.pk-phone-btn i { color: #22c55e; font-size: .75rem; }
.pk-phone-btn:hover { background: #ecfdf5; color: #16a34a !important; box-shadow: 0 2px 8px rgba(34,197,94,.15); }

/* ─── BURGER (mobile) ─── */
.pk-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  padding: 7px;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 8px;
  transition: background .2s;
}
.pk-burger:hover { background: #f1f5f9; }
.pk-burger span {
  display: block;
  height: 2px;
  background: #334155;
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
  transform-origin: center;
}
.pk-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.pk-burger.open span:nth-child(2) { opacity: 0; }
.pk-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (max-width: 767.98px) {
  .pk-navbar-inner { height: 52px; padding: 0 12px; justify-content: space-between; }
  .pk-brand img { height: 30px; }
  .pk-burger { display: flex; }
  .pk-nav-right { gap: 6px; }
  .pk-cta-label { display: none; }
  .pk-phone-label { display: none; }
  .pk-cta-btn { padding: 7px 10px; border-radius: 8px; font-size: .75rem; }
  .pk-phone-btn { padding: 6px 9px; border-radius: 8px; font-size: .75rem; }
  .pk-burger { width: 32px; height: 32px; padding: 6px; }
}

/* ─── MOBILE DRAWER (Premium) ──────────────────────────────── */
.pk-drawer {
  position: fixed;
  top: 0; right: 0;
  width: 300px; height: 100vh;
  background: #fff;
  z-index: 1029;
  transform: translateX(100%);
  transition: transform .4s cubic-bezier(.32,.72,0,1);
  box-shadow: -12px 0 40px rgba(0,0,0,.12);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.pk-drawer.open { transform: translateX(0); }

/* Drawer header */
.pk-drawer-head {
  padding: 22px 20px 18px;
  background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
  position: relative;
  overflow: hidden;
}
.pk-drawer-head::before {
  content: '';
  position: absolute;
  top: -40px; right: -20px;
  width: 120px; height: 120px;
  background: radial-gradient(circle, rgba(255,255,255,.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.pk-drawer-brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pk-drawer-brand img { height: 30px; filter: brightness(0) invert(1); }
.pk-drawer-close {
  width: 32px; height: 32px;
  border-radius: 10px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  font-size: .85rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all .2s;
}
.pk-drawer-close:hover { background: rgba(255,255,255,.25); transform: rotate(90deg); }

/* Overlay */
.pk-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15,23,42,.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1028;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s ease;
}
.pk-drawer-overlay.open { opacity: 1; pointer-events: auto; }

/* Drawer body */
.pk-drawer-body {
  padding: 16px 16px;
  flex: 1;
}
.pk-drawer-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  font-size: .92rem;
  font-weight: 500;
  color: #334155 !important;
  text-decoration: none !important;
  border-radius: 12px;
  transition: all .2s ease;
  cursor: pointer;
  margin-bottom: 2px;
}
.pk-drawer-link i {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: #f0f9ff;
  border-radius: 10px;
  color: #0ea5e9;
  font-size: .85rem;
  flex-shrink: 0;
  transition: all .2s;
}
.pk-drawer-link:hover { background: #f0f9ff; color: #0284c7 !important; }
.pk-drawer-link:hover i { background: #0ea5e9; color: #fff; box-shadow: 0 3px 10px rgba(14,165,233,.25); }
.pk-drawer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, #e2e8f0 15%, #e2e8f0 85%, transparent);
  margin: 10px 8px;
}
.pk-drawer-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px;
  background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
  color: #fff !important;
  font-weight: 700;
  font-size: .92rem;
  border-radius: 14px;
  text-decoration: none !important;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(14,165,233,.3);
  transition: all .25s ease;
  margin-top: 4px;
  position: relative;
  overflow: hidden;
}
.pk-drawer-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.12) 0%, transparent 50%);
  pointer-events: none;
}
.pk-drawer-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 22px rgba(14,165,233,.4); }

/* Drawer footer */
.pk-drawer-footer {
  margin: 0;
  padding: 16px 20px;
  background: #f8fafc;
  border-top: 1px solid #f1f5f9;
}
.pk-drawer-footer p {
  margin: 0 0 6px;
  font-size: .8rem;
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 8px;
}
.pk-drawer-footer p:last-child { margin-bottom: 0; }
.pk-drawer-footer i { color: #0ea5e9; width: 14px; text-align: center; font-size: .72rem; }
.pk-drawer-social {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}
.pk-drawer-social a {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: #e2e8f0;
  border-radius: 10px;
  color: #475569 !important;
  font-size: .85rem;
  text-decoration: none !important;
  transition: all .2s;
}
.pk-drawer-social a:hover { background: #0ea5e9; color: #fff !important; box-shadow: 0 3px 10px rgba(14,165,233,.25); }

@media (min-width: 768px) {
  .pk-drawer, .pk-drawer-overlay { display: none !important; }
  .pk-burger { display: none !important; }
}

/* ─── BUTTONS ────────────────────────────────────────────── */
.pk-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 11px 26px;
  border-radius: 9px;
  font-weight: 600;
  font-size: .88rem;
  letter-spacing: .3px;
  border: none;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  text-decoration: none;
}
.pk-btn:hover  { transform: translateY(-2px); }
.pk-btn:active { transform: translateY(0); }
.pk-btn-primary {
  background: linear-gradient(135deg, #00b5db, #0190af);
  color: #fff;
  box-shadow: 0 4px 14px rgba(0,181,219,.28);
}
.pk-btn-primary:hover { box-shadow: 0 7px 22px rgba(0,181,219,.38); color: #fff; }
.pk-btn-danger {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: #fff;
  box-shadow: 0 4px 14px rgba(239,68,68,.25);
}
.pk-btn-danger:hover  { box-shadow: 0 7px 22px rgba(239,68,68,.36); color: #fff; }
.pk-btn-warning {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #fff;
  box-shadow: 0 4px 14px rgba(245,158,11,.25);
}
.pk-btn-warning:hover { box-shadow: 0 7px 22px rgba(245,158,11,.36); color: #fff; }
.pk-btn-info {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: #fff;
  box-shadow: 0 4px 14px rgba(59,130,246,.25);
}
.pk-btn-info:hover { box-shadow: 0 7px 22px rgba(59,130,246,.36); color: #fff; }
.pk-btn-outline {
  background: transparent;
  color: #00b5db;
  border: 1.5px solid #00b5db;
  box-shadow: none;
}
.pk-btn-outline:hover {
  background: rgba(0,181,219,.08);
  box-shadow: 0 4px 14px rgba(0,181,219,.18);
}
.pk-btn-sm { padding: 8px 18px; font-size: .82rem; border-radius: 7px; }
.pk-btn-lg { padding: 14px 32px; font-size: 1rem; border-radius: 11px; }
.pk-btn-block { width: 100%; justify-content: center; }

/* ─── CARDS ──────────────────────────────────────────────── */
.pk-card {
  background: #fff;
  border: none !important;
  border-radius: 16px !important;
  box-shadow: 0 4px 20px rgba(0,0,0,.07);
  transition: transform .3s ease, box-shadow .3s ease;
  overflow: hidden;
}
.pk-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 40px rgba(0,0,0,.12);
}
.pk-card-img { overflow: hidden; }
.pk-card-img img { transition: transform .5s ease; }
.pk-card:hover .pk-card-img img { transform: scale(1.06); }
.pk-card-body { padding: 20px; }
.pk-card-footer {
  padding: 14px 20px;
  background: #f8fafc;
  border-top: 1px solid #f1f5f9;
}

/* ─── SERVICE CARDS — Premium ────────────────────────────── */
.pk-service-card {
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(0,0,0,.04);
  box-shadow: 0 1px 3px rgba(0,0,0,.04), 0 8px 24px rgba(0,0,0,.06);
  transition: transform .4s cubic-bezier(.4,0,.2,1), box-shadow .4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.pk-service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0,0,0,.12), 0 1px 3px rgba(0,0,0,.04);
}
.pk-service-card-head {
  padding: 16px 22px;
  font-weight: 700;
  font-size: .95rem;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: .2px;
  position: relative;
  overflow: hidden;
}
.pk-service-card-head::after {
  content: ''; position: absolute; top: -30px; right: -20px;
  width: 80px; height: 80px;
  background: rgba(255,255,255,.08); border-radius: 50%;
  pointer-events: none;
}
.pk-card-img { overflow: hidden; }
.pk-card-img img { transition: transform .6s cubic-bezier(.4,0,.2,1); width: 100%; }
.pk-service-card:hover .pk-card-img img { transform: scale(1.05); }
.pk-service-card-body {
  padding: 22px 22px 16px;
  flex: 1;
}
.pk-service-card-footer {
  padding: 0 22px 22px;
}
.pk-service-head-urgente  { background: linear-gradient(135deg,#ef4444,#dc2626); }
.pk-service-head-regular  { background: linear-gradient(135deg,#f59e0b,#d97706); }
.pk-service-head-maritimo { background: linear-gradient(135deg,#3b82f6,#2563eb); }

/* ─── ALERTS ─────────────────────────────────────────────── */
.pk-alert {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 48px 14px 18px;
  border-radius: 12px;
  position: relative;
  border: none;
  margin-bottom: 0;
  animation: fadeInUp .4s ease;
  box-shadow: 0 6px 24px rgba(0,0,0,.09);
}
.pk-alert-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 1px; }
.pk-alert-text { font-size: .9rem; font-weight: 500; line-height: 1.5; }
.pk-alert-close {
  position: absolute;
  right: 14px; top: 14px;
  background: none; border: none;
  opacity: .55; cursor: pointer;
  font-size: 1rem; transition: opacity .2s;
  padding: 0; line-height: 1;
}
.pk-alert-close:hover { opacity: 1; }
.pk-alert-success {
  background: linear-gradient(135deg, rgba(16,185,129,.1), rgba(5,150,105,.07));
  border-left: 4px solid #10b981;
  color: #065f46;
}
.pk-alert-error {
  background: linear-gradient(135deg, rgba(239,68,68,.1), rgba(220,38,38,.07));
  border-left: 4px solid #ef4444;
  color: #7f1d1d;
}
.pk-alert-info {
  background: linear-gradient(135deg, rgba(0,181,219,.1), rgba(1,144,175,.07));
  border-left: 4px solid #00b5db;
  color: #0c4a6e;
}
.pk-alert-warning {
  background: linear-gradient(135deg, rgba(245,158,11,.1), rgba(217,119,6,.07));
  border-left: 4px solid #f59e0b;
  color: #78350f;
}
/* flash container */
.pk-flash-wrap {
  position: fixed;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10000;
  width: min(92vw, 620px);
  pointer-events: none;
}
.pk-flash-wrap .pk-alert { pointer-events: auto; }


/* ─── WHATSAPP / HELP BTN ────────────────────────────────── */
.pk-wa-btn {
  position: fixed;
  bottom: 20px; right: 18px;
  z-index: 9000;
  width: 56px; height: 56px;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  border: 1.5px solid rgba(255,255,255,.18);
  box-shadow:
    0 4px 20px rgba(37,211,102,.4),
    0 8px 32px rgba(18,140,126,.2),
    inset 0 1px 0 rgba(255,255,255,.15);
  text-decoration: none !important;
  transition: transform .35s cubic-bezier(.16,1,.3,1), box-shadow .35s ease, border-radius .35s ease;
  animation: waPulse 3s ease-in-out infinite;
}
@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,.4), 0 8px 32px rgba(18,140,126,.2), inset 0 1px 0 rgba(255,255,255,.15), 0 0 0 0 rgba(37,211,102,.3); }
  50% { box-shadow: 0 4px 20px rgba(37,211,102,.4), 0 8px 32px rgba(18,140,126,.2), inset 0 1px 0 rgba(255,255,255,.15), 0 0 0 10px rgba(37,211,102,0); }
}
.pk-wa-btn:hover {
  transform: translateY(-3px) scale(1.05);
  border-radius: 20px;
  box-shadow:
    0 8px 28px rgba(37,211,102,.5),
    0 16px 48px rgba(18,140,126,.25),
    inset 0 1px 0 rgba(255,255,255,.2);
  border-color: rgba(255,255,255,.3);
  animation: none;
}
.pk-wa-btn i {
  color: #fff; font-size: 1.5rem;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,.15));
  transition: transform .3s ease;
}
.pk-wa-btn:hover i {
  transform: scale(1.1) rotate(-8deg);
}

/* user footer offset */
.pk-has-user footer { position: relative; bottom: 0; }

/* ─── FOOTER ─────────────────────────────────────────────── */
.pk-footer {
  background: linear-gradient(160deg, #16192a 0%, #252c47 55%, #1a1e30 100%);
  color: #94a3b8;
  padding: 60px 0 0;
  position: relative;
}
.pk-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #00b5db, #ff8c00, #00b5db);
}
.pk-footer-brand-text {
  color: #e2e8f0;
  font-size: .875rem;
  line-height: 1.7;
  margin-top: 10px;
}
.pk-footer h5 {
  color: #f1f5f9 !important;
  font-size: .78rem !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 1.2px !important;
  margin-bottom: 14px !important;
}
.pk-footer-link {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #94a3b8 !important;
  font-size: .85rem;
  padding: 4px 0;
  text-decoration: none !important;
  transition: color .2s ease, gap .2s ease;
}
.pk-footer-link:hover { color: #00b5db !important; gap: 10px; }
.pk-footer-link::before { content: '›'; color: #475569; font-size: .9rem; }
.pk-footer-link:hover::before { color: #00b5db; }
.pk-footer-social {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: .83rem;
  font-weight: 600;
  color: #fff !important;
  text-decoration: none !important;
  margin-bottom: 8px;
  transition: transform .2s ease, filter .2s ease;
}
.pk-footer-social:hover { transform: translateX(4px); color: #fff !important; }
.pk-footer-social.yt { background: rgba(255,0,0,.18); }
.pk-footer-social.yt:hover { background: #ff0000; }
.pk-footer-social.fb { background: rgba(24,119,242,.18); }
.pk-footer-social.fb:hover { background: #1877f2; }
.pk-footer-social.tw { background: rgba(29,161,242,.18); }
.pk-footer-social.tw:hover { background: #1da1f2; }
.pk-footer-download {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: 8px;
  font-size: .83rem;
  font-weight: 600;
  color: #fff !important;
  background: linear-gradient(135deg, #ff8c00, #e07800);
  text-decoration: none !important;
  margin-top: 6px;
  transition: transform .2s ease, box-shadow .2s ease;
  box-shadow: 0 3px 10px rgba(255,140,0,.25);
}
.pk-footer-download:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(255,140,0,.35); color: #fff !important; }
.pk-footer-bottom {
  background: rgba(0,0,0,.28);
  padding: 20px 0;
  margin-top: 44px;
  font-size: .8rem;
  color: #475569;
}
.pk-footer-bottom a { color: #64748b; text-decoration: underline; transition: color .2s; }
.pk-footer-bottom a:hover { color: #00b5db; }
#toTop {
  position: fixed !important;
  bottom: 86px !important;
  /* center over WA btn: wa=56px at right:18px → wa center = 18+28 = 46px from right. toTop=42px → right = 46-21 = 25px */
  right: 25px !important;
  z-index: 9999 !important;
  width: 42px !important; height: 42px !important;
  border-radius: 14px !important;
  border: 1.5px solid rgba(255,255,255,.15) !important;
  background: linear-gradient(135deg, rgba(15,23,42,.85), rgba(30,41,59,.9)) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px);
  align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow:
    0 4px 16px rgba(0,0,0,.3),
    inset 0 1px 0 rgba(255,255,255,.08) !important;
  transition: transform .35s cubic-bezier(.16,1,.3,1), box-shadow .35s ease, border-color .35s ease !important;
}
#toTop:hover {
  transform: translateY(-3px) !important;
  box-shadow:
    0 8px 28px rgba(0,0,0,.4),
    0 0 0 3px rgba(14,165,233,.12),
    inset 0 1px 0 rgba(255,255,255,.12) !important;
  border-color: rgba(14,165,233,.3) !important;
}
#toTop i {
  color: rgba(255,255,255,.7);
  font-size: .75rem;
  line-height: 1;
  transition: transform .3s ease, color .3s ease;
}
#toTop:hover i {
  color: #38bdf8;
  transform: translateY(-2px);
}
/* hide old inner span if any */
#toTop #toTopHover { display: none !important; }
/* Focus & accessibility for floating buttons */
#toTop:focus-visible {
  outline: none;
  box-shadow:
    0 4px 16px rgba(0,0,0,.3),
    0 0 0 3px rgba(56,189,248,.5),
    inset 0 1px 0 rgba(255,255,255,.08) !important;
}
.pk-wa-btn:focus-visible {
  outline: none;
  box-shadow:
    0 4px 20px rgba(37,211,102,.4),
    0 0 0 3px rgba(37,211,102,.5),
    inset 0 1px 0 rgba(255,255,255,.15) !important;
  animation: none;
}
#toTop:active { transform: scale(.95) !important; }
.pk-wa-btn:active { transform: scale(.95) !important; }

/* ─── LANDING PAGE SECTIONS — Premium palette ────────────── */
.pk-section       { padding: 80px 0; position: relative; }

/* Warm white with subtle warm radial */
.pk-section-light {
  padding: 80px 0; position: relative;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(14,165,233,.03) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 100%, rgba(255,140,0,.02) 0%, transparent 50%),
    #fff;
}

/* Cool blue-tinted gray with diagonal mesh feel */
.pk-section-gray {
  padding: 80px 0; position: relative;
  background:
    radial-gradient(ellipse at 70% 0%, rgba(14,165,233,.04) 0%, transparent 45%),
    radial-gradient(ellipse at 0% 80%, rgba(99,102,241,.03) 0%, transparent 50%),
    linear-gradient(180deg, #f8fafc, #f1f5f9);
}

/* Deep dark for contact/footer */
.pk-section-dark {
  padding: 80px 0; position: relative; color: #e2e8f0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(14,165,233,.06) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(255,140,0,.04) 0%, transparent 50%),
    linear-gradient(160deg, #0a0f1e, #0f172a 60%, #131c2e);
}

/* Subtle top separator for light/gray */
.pk-section-light::before, .pk-section-gray::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent 5%, rgba(14,165,233,.08) 50%, transparent 95%);
}

/* ─── NEXT SHIPMENT BADGE ────────────────────────────────── */
.pk-next-ship {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, rgba(239,68,68,.06), rgba(239,68,68,.02));
  border: 1.5px solid rgba(239,68,68,.18);
  border-radius: 50px;
  padding: 10px 22px;
  font-size: .88rem;
  color: #dc2626;
  font-weight: 600;
  margin: 12px auto;
  backdrop-filter: blur(4px);
}
.pk-next-ship .dot {
  width: 8px; height: 8px;
  background: #ef4444;
  border-radius: 50%;
  animation: pulseRed 1.6s infinite;
  flex-shrink: 0;
}
.pk-next-ship-msg {
  color: #64748b;
  font-size: .85rem;
  font-weight: 400;
}

/* ─── DATES PANEL — Dark glass premium (compact) ─────────── */
.pk-dates-panel {
  background: rgba(255,255,255,.04);
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.08);
  padding: 0;
  margin-top: 16px;
  text-align: left;
  display: none;
  box-shadow: 0 8px 32px rgba(0,0,0,.25), inset 0 1px 0 rgba(255,255,255,.04);
  overflow: hidden;
}
.pk-dates-panel.open { display: block; animation: fadeInUp .35s cubic-bezier(.16,1,.3,1); }

/* Header */
.pk-dates-panel .pk-dates-head {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  padding: 12px 18px;
  background: linear-gradient(135deg, rgba(14,165,233,.1), rgba(0,181,219,.05));
  border-bottom: 1px solid rgba(255,255,255,.06);
  font-size: .78rem; font-weight: 700; color: #fff;
}
.pk-dates-panel .pk-dates-head .pk-dates-route {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 2px 10px; border-radius: 6px;
  background: rgba(0,181,219,.12); border: 1px solid rgba(0,181,219,.18);
  font-size: .65rem; font-weight: 700; letter-spacing: .5px;
  color: #38bdf8;
}
.pk-dates-panel .pk-dates-head .pk-dates-route i { font-size: .5rem; color: #0ea5e9; }

/* List */
.pk-dates-panel ul { padding: 10px 18px 6px; list-style: none; margin: 0; }
.pk-dates-panel ul li {
  padding: 4px 10px; font-size: .8rem; color: #cbd5e1;
  border-radius: 8px; margin-bottom: 1px;
  transition: background .2s ease;
  display: flex; align-items: center; gap: 7px;
}
.pk-dates-panel ul li:hover { background: rgba(255,255,255,.04); }
.pk-dates-panel ul li::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, #0ea5e9, #38bdf8);
  box-shadow: 0 0 5px rgba(14,165,233,.35);
}
.pk-dates-panel ul li strong {
  color: #94a3b8;
  margin-top: 6px; margin-bottom: 2px; padding: 0;
  font-size: .65rem; text-transform: uppercase;
  letter-spacing: 1px; font-weight: 600;
}
.pk-dates-panel ul li strong::before { display: none; }
.pk-dates-panel ul li:has(strong)::before { display: none; }
.pk-dates-panel ul li:has(strong) { padding-left: 0; }
.pk-dates-panel ul li:has(strong):hover { background: transparent; }

/* Footer notes */
.pk-dates-panel .pk-dates-foot {
  padding: 10px 18px 12px;
  border-top: 1px solid rgba(255,255,255,.05);
}
.pk-dates-panel .pk-dates-foot p {
  font-size: .72rem; color: #64748b; margin: 0 0 2px; line-height: 1.45;
}
.pk-dates-panel .pk-dates-foot p:last-child { margin-bottom: 0; }

/* ─── IMAGE CARDS (services overview) — Premium ─────────── */
.pk-img-card {
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(0,0,0,.04);
  box-shadow: 0 1px 3px rgba(0,0,0,.04), 0 8px 24px rgba(0,0,0,.06);
  transition: transform .4s cubic-bezier(.4,0,.2,1), box-shadow .4s ease;
}
.pk-img-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 48px rgba(0,0,0,.12), 0 1px 3px rgba(0,0,0,.04);
}
.pk-img-card img { width: 100%; display: block; transition: transform .6s ease; }
.pk-img-card:hover img { transform: scale(1.04); }
.pk-img-card-body { padding: 22px; }
.pk-img-card-body h5 { font-weight: 700; color: #0f172a; margin-bottom: 6px; }
.pk-img-card-body p  { font-size: .875rem; color: #64748b; }

/* ─── CARRIER LOGOS ──────────────────────────────────────── */
.pk-carrier-logo {
  filter: grayscale(100%);
  opacity: .55;
  max-height: 48px;
  object-fit: contain;
  transition: filter .3s ease, opacity .3s ease, transform .3s ease;
  display: block; margin: auto;
}
.pk-carrier-logo:hover { filter: grayscale(0%); opacity: 1; transform: scale(1.06); }

/* ─── CONTACT SECTION ────────────────────────────────────── */
.pk-contact-card {
  background: #fff;
  border-radius: 14px;
  padding: 22px;
  box-shadow: 0 4px 18px rgba(0,0,0,.07);
  height: 100%;
}
.pk-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 11px 0;
  border-bottom: 1px solid #f1f5f9;
  text-decoration: none !important;
}
.pk-contact-row:last-child { border-bottom: none; }
.pk-contact-row:hover .pk-ci { background: rgba(0,181,219,.15); color: #0190af; }
.pk-ci {
  width: 40px; height: 40px;
  background: rgba(0,181,219,.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: #00b5db;
  font-size: 1rem;
  flex-shrink: 0;
  transition: background .2s, color .2s;
}
.pk-contact-row span, .pk-contact-row p {
  font-size: .875rem;
  color: #374151;
  margin: 0;
  line-height: 1.5;
  font-weight: 500;
  transition: color .2s;
}
.pk-contact-row:hover span { color: #00b5db; }

/* ─── TEAM — Premium Carousel ────────────────────────────── */
.pk-team-slide-wrap {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.04);
  box-shadow: 0 1px 3px rgba(0,0,0,.04), 0 8px 32px rgba(0,0,0,.08);
}
.pk-team-track {
  display: flex;
  transition: transform .6s cubic-bezier(.4,0,.2,1);
}
.pk-team-item {
  flex: 0 0 50%;
  text-align: center;
  padding: 32px 20px 28px;
  background: #fff;
  transition: background .2s;
}
.pk-team-item:hover { background: #f8fafc; }
@media (max-width: 576px) { .pk-team-item { flex: 0 0 100%; } }
.pk-team-avatar {
  width: 100px; height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #e2e8f0;
  box-shadow: 0 4px 16px rgba(0,0,0,.08);
  transition: all .35s ease;
  display: block; margin: 0 auto 12px;
}
.pk-team-item:hover .pk-team-avatar {
  border-color: #0ea5e9;
  box-shadow: 0 6px 20px rgba(14,165,233,.2);
  transform: scale(1.05);
}
.pk-team-name { font-weight: 700; color: #1e293b; font-size: .92rem; letter-spacing: -.1px; }
.pk-team-prev, .pk-team-next {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  z-index: 10;
  width: 38px; height: 38px;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(4px);
  color: #334155;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all .25s ease;
  font-size: .9rem;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.pk-team-prev:hover, .pk-team-next:hover {
  background: #0ea5e9; color: #fff; border-color: #0ea5e9;
  box-shadow: 0 4px 14px rgba(14,165,233,.3);
}
.pk-team-prev { left: 12px; }
.pk-team-next { right: 12px; }

/* ─── MODALS (premium override) ─────────────────────────── */
.modal-content {
  border: none !important;
  border-radius: 16px !important;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.15) !important;
}
.modal-header { border-bottom: none !important; padding: 20px 24px !important; }
.modal-body   { padding: 22px 24px !important; }
.modal-footer {
  border-top: 1px solid #f1f5f9 !important;
  background: #fafafa !important;
  padding: 14px 24px !important;
  border-radius: 0 0 16px 16px !important;
}
.modal-footer .btn { border-radius: 8px; font-weight: 600; font-size: .87rem; }
.modal-body table.table-sm { font-size: .85rem; }
.modal-body table thead th {
  background: #f8fafc;
  color: #64748b;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .5px;
  border-bottom: 2px solid #e2e8f0;
}
/* Calculadora modal — don't apply generic modal-header bg */
#calculadoraModal .modal-header { display: none !important; }

/* ─── SECTION DIVIDER ────────────────────────────────────── */
.pk-divider {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, #e2e8f0 25%, #e2e8f0 75%, transparent);
  margin: 0;
}

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 768px) {
  .pk-section, .pk-section-light, .pk-section-gray, .pk-section-dark { padding: 52px 0; }
  .pk-title { font-size: 1.4rem; }
  .pk-footer { padding: 44px 0 0; }
}
@media (max-width: 576px) {
  .pk-btn { padding: 10px 20px; }
  .pk-btn-lg { padding: 12px 24px; }
  .pk-service-card-head { font-size: .92rem; }
}
