/* ── DriveFresh Shared Styles ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:      #07090f;
  --bg2:     #0c1018;
  --surface: #101520;
  --surface2:#161d2e;
  --border:  rgba(255,255,255,0.08);
  --blue:    #4f8ef7;
  --blue-l:  #7eb3ff;
  --cyan:    #22d3ee;
  --green:   #34d399;
  --gold:    #fbbf24;
  --red:     #f87171;
  --white:   #f8fafc;
  --muted:   #8b9ab3;
  --text:    #dde4f0;
  --r:       14px;
  --r-sm:    9px;
}

html { scroll-behavior: smooth; }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 3px; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg); color: var(--text);
  line-height: 1.6; overflow-x: hidden;
  opacity: 0; transition: opacity 0.35s ease;
}
body.page-loaded { opacity: 1; }
body.page-exit { opacity: 0; transform: translateY(-8px); transition: opacity 0.3s, transform 0.3s; }

/* ── PARTICLES ── */
#particles {
  position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0;
}
.particle {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle, rgba(59,130,246,0.8), transparent);
  animation: particleDrift linear infinite;
}
@keyframes particleDrift {
  0%   { transform: translateY(100vh) scale(0); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 0.5; }
  100% { transform: translateY(-200px) scale(1.2); opacity: 0; }
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px; height: 68px;
  background: rgba(8,12,20,0.7);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid transparent;
  transition: all 0.35s;
}
nav.scrolled {
  background: rgba(8,12,20,0.96);
  border-bottom-color: var(--border);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--white);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800; font-size: 1.25rem; letter-spacing: -0.3px;
}
.nav-logo .logo-icon {
  width: 36px; height: 36px; border-radius: 9px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
  animation: logoPulse 3s ease-in-out infinite;
}
@keyframes logoPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(59,130,246,0.4); }
  50%      { box-shadow: 0 0 0 8px rgba(59,130,246,0); }
}
.nav-logo span { color: var(--blue-l); }
.nav-logo-img { height: 36px; max-height: 36px; width: auto; max-width: 160px; border-radius: 6px; object-fit: contain; display: block; flex-shrink: 0; }

.nav-links {
  display: flex; align-items: center; gap: 28px; list-style: none;
}
.nav-links a {
  text-decoration: none; color: var(--muted);
  font-size: 0.875rem; font-weight: 500;
  transition: color 0.2s; position: relative; padding-bottom: 2px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 2px; background: linear-gradient(90deg, var(--blue), var(--cyan));
  transform: scaleX(0); transform-origin: left; transition: transform 0.25s;
  border-radius: 2px;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

.nav-cta { display: flex; align-items: center; gap: 10px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  padding: 10px 22px; border-radius: 50px;
  font-size: 0.875rem; font-weight: 600; cursor: pointer;
  text-decoration: none; border: none; transition: all 0.25s;
  white-space: nowrap; font-family: 'Inter', sans-serif;
  position: relative; overflow: hidden;
}
.btn::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0.1);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s;
}
.btn:hover::before { transform: scaleX(1); }

.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(59,130,246,0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(59,130,246,0.5);
}
.btn-outline {
  background: transparent; color: var(--text);
  border: 1px solid var(--border);
}
.btn-outline:hover { border-color: var(--blue); color: var(--blue-l); }
.btn-ghost {
  background: rgba(59,130,246,0.08);
  color: var(--blue-l); border: 1px solid rgba(59,130,246,0.15);
}
.btn-ghost:hover { background: rgba(59,130,246,0.15); }
.btn-danger { background: linear-gradient(135deg, var(--red), #dc2626); color: white; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 5px;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--text); border-radius: 2px; transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none; position: fixed; top: 68px; left: 0; right: 0;
  background: rgba(8,12,20,0.98); backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border); z-index: 999;
  padding: 24px 32px; flex-direction: column; gap: 4px;
  animation: slideDown 0.3s ease;
}
.mobile-menu.open { display: flex; }
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.mobile-menu a {
  text-decoration: none; color: var(--text);
  font-size: 1rem; font-weight: 500;
  padding: 12px 0; border-bottom: 1px solid var(--border);
  transition: color 0.2s, padding-left 0.2s;
}
.mobile-menu a:hover { color: var(--blue-l); padding-left: 8px; }
.mobile-menu a:last-child { border-bottom: none; }

/* ── SECTION COMMONS ── */
section { padding: 76px 48px; }
.container { max-width: 1160px; margin: 0 auto; }

.section-label {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 0.68rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 2.5px; color: var(--blue-l); margin-bottom: 10px;
}
.section-label::before {
  content: ''; display: block; width: 18px; height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--cyan)); border-radius: 2px;
}

h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.9rem, 3.5vw, 2.6rem); font-weight: 800;
  line-height: 1.15; letter-spacing: -1.5px; color: var(--white); margin-bottom: 12px;
}
.accent {
  background: linear-gradient(135deg, var(--blue-l), var(--cyan));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.section-sub {
  font-size: 0.95rem; color: var(--muted); max-width: 500px;
  line-height: 1.8; margin-bottom: 44px;
}

/* ── ANIMATIONS ── */
.fade-up, .fade-left, .fade-right, .zoom-in {
  opacity: 0; transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up    { transform: translateY(35px); }
.fade-left  { transform: translateX(-35px); }
.fade-right { transform: translateX(35px); }
.zoom-in    { transform: scale(0.9); }
.fade-up.visible, .fade-left.visible, .fade-right.visible, .zoom-in.visible {
  opacity: 1; transform: none;
}
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; }
.d5 { transition-delay: 0.5s; }

/* ── SHIMMER ── */
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
.shimmer {
  background: linear-gradient(90deg, transparent 30%, rgba(255,255,255,0.05) 50%, transparent 70%);
  background-size: 200% auto;
  animation: shimmer 2s linear infinite;
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--surface);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 0 48px;
}
.trust-inner {
  max-width: 1160px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(5, 1fr);
  divide-x: 1px solid var(--border);
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  padding: 16px 20px; border-right: 1px solid var(--border);
}
.trust-item:last-child { border-right: none; }
.trust-icon {
  width: 34px; height: 34px; border-radius: 9px; flex-shrink: 0;
  background: rgba(79,142,247,0.1); display: flex; align-items: center; justify-content: center;
  font-size: 1rem; transition: transform 0.3s;
}
.trust-item:hover .trust-icon { transform: scale(1.18) rotate(-6deg); }
.trust-text strong { display: block; font-size: 0.78rem; color: var(--white); font-weight: 600; white-space: nowrap; }
.trust-text span   { font-size: 0.68rem; color: var(--muted); white-space: nowrap; }

/* ── CARDS ── */
.card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r); overflow: hidden; transition: all 0.3s;
}
.card:hover { transform: translateY(-5px); border-color: rgba(59,130,246,0.25); box-shadow: 0 20px 60px rgba(0,0,0,0.4); }

/* ── PACKAGE CARDS ── */
.package-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r); padding: 32px 28px;
  position: relative; overflow: hidden; transition: all 0.3s;
}
.package-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  transform: scaleX(0); transform-origin: left; transition: transform 0.4s;
}
.package-card:hover { transform: translateY(-7px); border-color: rgba(59,130,246,0.3); }
.package-card:hover::after { transform: scaleX(1); }
.package-card.popular { border-color: rgba(59,130,246,0.4); }
.package-card.popular::after { transform: scaleX(1); }
.popular-badge {
  position: absolute; top: 20px; right: 20px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: white; font-size: 0.65rem; font-weight: 700;
  padding: 4px 12px; border-radius: 50px; text-transform: uppercase; letter-spacing: 0.5px;
}
.package-icon {
  width: 50px; height: 50px; border-radius: 14px; margin-bottom: 18px;
  display: flex; align-items: center; justify-content: center; font-size: 1.5rem;
  background: rgba(59,130,246,0.1); transition: transform 0.3s;
}
.package-card:hover .package-icon { transform: scale(1.15) rotate(-5deg); }
.package-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.15rem; font-weight: 700; color: var(--white); margin-bottom: 4px;
}
.package-price {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.5rem; font-weight: 800; color: var(--white);
  letter-spacing: -1px; margin: 10px 0 4px;
}
.package-desc { font-size: 0.875rem; color: var(--muted); margin-bottom: 22px; line-height: 1.65; }
.package-features { list-style: none; margin-bottom: 28px; display: flex; flex-direction: column; gap: 10px; }
.package-features li {
  display: flex; align-items: flex-start; gap: 9px;
  font-size: 0.85rem; color: var(--text);
}
.package-features li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; }
.package-features li.plus { color: var(--muted); }
.package-features li.plus::before { content: '+'; color: var(--blue); }

.btn-book {
  width: 100%; padding: 13px; border-radius: 10px;
  background: rgba(59,130,246,0.08); border: 1px solid rgba(59,130,246,0.18);
  color: var(--blue-l); font-size: 0.875rem; font-weight: 600;
  cursor: pointer; transition: all 0.25s; text-align: center;
  display: block; text-decoration: none; font-family: 'Inter', sans-serif;
}
.package-card.popular .btn-book,
.btn-book:hover {
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  border-color: transparent; color: white;
  box-shadow: 0 6px 22px rgba(59,130,246,0.35);
}

/* ── FORM ELEMENTS ── */
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-size: 0.78rem; font-weight: 600; color: var(--text);
  letter-spacing: 0.3px; text-transform: uppercase;
}
.form-group input, .form-group select, .form-group textarea {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--r-sm); color: var(--text);
  font-family: 'Inter', sans-serif; font-size: 0.9rem;
  padding: 12px 16px; outline: none; transition: all 0.25s; width: 100%;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--blue); box-shadow: 0 0 0 3px rgba(59,130,246,0.12);
  background: rgba(13,18,32,0.9);
}
.form-group select { appearance: none; cursor: pointer; }
.form-group textarea { resize: vertical; min-height: 90px; }
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(156,163,175,0.45); }

/* ── STEP FORM ── */
.step-indicator {
  display: flex; align-items: center; justify-content: center;
  gap: 0; margin-bottom: 40px;
}
.step-dot {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  position: relative;
}
.step-dot:not(:last-child)::after {
  content: ''; position: absolute; top: 18px; left: calc(50% + 18px);
  width: calc(100% - 8px); height: 2px;
  background: var(--border); z-index: 0; min-width: 60px;
}
.step-dot.active:not(:last-child)::after { background: linear-gradient(90deg, var(--blue), var(--border)); }
.step-dot.done:not(:last-child)::after { background: var(--blue); }
.step-circle {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--surface2); border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 700; color: var(--muted);
  transition: all 0.3s; z-index: 1; position: relative;
}
.step-dot.active .step-circle {
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  border-color: transparent; color: white;
  box-shadow: 0 0 0 4px rgba(59,130,246,0.2);
}
.step-dot.done .step-circle { background: var(--green); border-color: transparent; color: white; }
.step-label { font-size: 0.72rem; color: var(--muted); white-space: nowrap; }
.step-dot.active .step-label { color: var(--blue-l); }

/* ── LOYALTY STAMP CARD ── */
.stamp-card {
  background: linear-gradient(135deg, var(--surface), var(--surface2));
  border: 1px solid var(--border); border-radius: var(--r); padding: 32px;
}
.stamps-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; margin: 24px 0;
}
.stamp {
  aspect-ratio: 1; border-radius: 50%;
  border: 2px dashed rgba(59,130,246,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; transition: all 0.4s;
  background: var(--bg2);
}
.stamp.filled {
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  border-color: transparent; border-style: solid;
  box-shadow: 0 4px 16px rgba(59,130,246,0.4);
  animation: stampBounce 0.5s cubic-bezier(0.36,0.07,0.19,0.97);
}
@keyframes stampBounce {
  0%,100% { transform: scale(1); }
  40%     { transform: scale(1.3); }
  60%     { transform: scale(0.9); }
}
.stamp-progress {
  height: 6px; background: var(--surface2); border-radius: 3px; overflow: hidden; margin: 8px 0;
}
.stamp-progress-fill {
  height: 100%; border-radius: 3px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  transition: width 1s ease;
}

/* ── REVIEW CARDS ── */
.review-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r); padding: 28px; transition: all 0.3s;
  position: relative; overflow: hidden;
}
.review-card::before {
  content: '"'; position: absolute; top: -10px; right: 20px;
  font-size: 6rem; color: rgba(59,130,246,0.06); font-family: serif;
  line-height: 1; pointer-events: none;
}
.review-card:hover { transform: translateY(-4px); border-color: rgba(59,130,246,0.2); }
.review-stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 14px; font-size: 0.9rem; }
.review-text {
  font-size: 0.9rem; color: var(--text); line-height: 1.78;
  font-style: italic; margin-bottom: 18px;
}
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.8rem; color: white;
}
.review-name { font-weight: 600; font-size: 0.875rem; color: var(--white); }
.review-location { font-size: 0.75rem; color: var(--muted); }

/* ── GALLERY ── */
.gallery-item {
  border-radius: var(--r-sm); overflow: hidden; position: relative;
  cursor: pointer; transition: all 0.3s;
  background: var(--surface2); border: 1px solid var(--border);
}
.gallery-item:hover { transform: scale(1.03); border-color: rgba(59,130,246,0.3); box-shadow: 0 16px 40px rgba(0,0,0,0.5); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s; }
.gallery-item:hover img { transform: scale(1.07); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(59,130,246,0.7), rgba(6,182,212,0.5));
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s; font-size: 2rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.85) 0%, transparent 100%);
  padding: 28px 16px 14px; font-size: 0.8rem; color: var(--text); font-weight: 500;
}

/* ── LIGHTBOX ── */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,0.92); backdrop-filter: blur(20px);
  align-items: center; justify-content: center;
  animation: fadeIn 0.3s ease;
}
.lightbox.open { display: flex; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.lightbox img {
  max-width: 90vw; max-height: 88vh; object-fit: contain;
  border-radius: var(--r); box-shadow: 0 40px 120px rgba(0,0,0,0.8);
  animation: zoomIn 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
@keyframes zoomIn { from { transform: scale(0.8); } to { transform: scale(1); } }
.lightbox-close {
  position: absolute; top: 24px; right: 28px;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15);
  color: white; font-size: 1.4rem; cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.lightbox-close:hover { background: rgba(239,68,68,0.3); }
.lightbox-caption {
  position: absolute; bottom: 32px;
  color: white; font-size: 0.9rem; text-align: center;
  background: rgba(0,0,0,0.6); padding: 8px 20px; border-radius: 50px;
}

/* ── FOOTER ── */
footer {
  background: var(--bg2); border-top: 1px solid var(--border);
  padding: 56px 48px 28px;
}
.footer-grid {
  max-width: 1160px; margin: 0 auto;
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px;
  padding-bottom: 40px; border-bottom: 1px solid var(--border); margin-bottom: 24px;
}
.footer-brand p { font-size: 0.845rem; color: var(--muted); line-height: 1.7; margin: 14px 0 18px; }
.footer-social { display: flex; gap: 8px; }
.social-link {
  width: 34px; height: 34px; border-radius: 8px;
  background: var(--surface); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); text-decoration: none; font-size: 0.85rem;
  transition: all 0.25s;
}
.social-link:hover { border-color: var(--blue); color: var(--blue-l); transform: translateY(-2px); }
.footer-col h4 {
  font-size: 0.68rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 2px; color: var(--white); margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col ul li a {
  text-decoration: none; color: var(--muted); font-size: 0.835rem;
  transition: all 0.2s; white-space: nowrap;
}
.footer-col ul li a:hover { color: var(--blue-l); padding-left: 4px; }
.footer-bottom {
  max-width: 1160px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.76rem; color: var(--muted); flex-wrap: wrap; gap: 10px;
}
.footer-bottom a { color: var(--blue-l); text-decoration: none; }

/* ── WHATSAPP ── */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.5);
  text-decoration: none; transition: all 0.3s;
  animation: waFloat 3s ease-in-out infinite;
}
.wa-float:hover { transform: scale(1.12); box-shadow: 0 12px 36px rgba(37,211,102,0.65); }
.wa-float svg { width: 28px; height: 28px; fill: white; }
@keyframes waFloat {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-7px); }
}

/* ── HERO GRID ── */
.hero-grid-bg {
  position: absolute; inset: 0; z-index: 0;
  background-image: linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 30%, transparent 100%);
}

/* ── NOTIFICATION TOAST ── */
.toast {
  position: fixed; bottom: 32px; left: 50%; transform: translateX(-50%) translateY(100px);
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 50px; padding: 14px 28px; z-index: 3000;
  font-size: 0.875rem; color: var(--text);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
  display: flex; align-items: center; gap: 10px;
}
.toast.show { transform: translateX(-50%) translateY(0); }
.toast.success { border-color: rgba(16,185,129,0.4); color: var(--green); }
.toast.error   { border-color: rgba(239,68,68,0.4);   color: var(--red); }

/* ── ADMIN ── */
.admin-table {
  width: 100%; border-collapse: collapse; font-size: 0.875rem;
}
.admin-table th {
  text-align: left; padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--muted); font-size: 0.72rem; text-transform: uppercase;
  letter-spacing: 1.5px; font-weight: 600;
}
.admin-table td {
  padding: 14px 16px; border-bottom: 1px solid rgba(255,255,255,0.04);
  vertical-align: middle;
}
.admin-table tr:hover td { background: rgba(59,130,246,0.03); }
.admin-table tr:last-child td { border-bottom: none; }

.stat-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r); padding: 24px 28px;
  position: relative; overflow: hidden; transition: all 0.3s;
}
.stat-card:hover { transform: translateY(-3px); border-color: rgba(59,130,246,0.2); }
.stat-card-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.5rem; font-weight: 800; color: var(--white); letter-spacing: -1px;
}
.stat-card-label { font-size: 0.8rem; color: var(--muted); margin-top: 2px; }
.stat-card-icon {
  position: absolute; top: 20px; right: 20px; font-size: 2rem; opacity: 0.3;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  section { padding: 64px 32px; }
}
@media (max-width: 768px) {
  nav { padding: 0 20px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  section { padding: 56px 20px; }
  .trust-bar { padding: 0 0; }
  .trust-inner { grid-template-columns: repeat(3, 1fr); }
  .trust-item { padding: 12px 14px; }
  footer { padding: 40px 20px 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .trust-inner { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  section { padding: 48px 16px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
}
