/* ==========================================================================
   Zen Cargo - Modern Static Coming Soon
   Optimized with Bootstrap 5.3 + Glassmorphism
   ========================================================================== */

:root {
  --zen-yellow: #fdd835;
  --zen-yellow-hover: #ffea00;
  --zen-yellow-glow: rgba(253, 216, 53, 0.35);
  --zen-dark-bg: #0b0d12;
  --zen-card-bg: rgba(16, 20, 27, 0.85);
  --zen-card-border: rgba(255, 255, 255, 0.12);
  --zen-card-border-glow: rgba(253, 216, 53, 0.3);
  --zen-text-primary: #ffffff;
  --zen-text-secondary: #e2e8f0;
  --zen-text-muted: #94a3b8;
  --zen-surface: rgba(255, 255, 255, 0.05);
  --zen-surface-hover: rgba(253, 216, 53, 0.1);
}

/* Reset & Base */
html, body {
  min-height: 100%;
  margin: 0;
  padding: 0;
  background-color: var(--zen-dark-bg);
  color: var(--zen-text-primary);
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 1.5rem 1rem;
  background-image: 
    linear-gradient(180deg, rgba(11, 13, 18, 0.78) 0%, rgba(15, 19, 26, 0.86) 100%),
    url('../images/featured-background-zencargo.jpg');
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  overflow-x: hidden;
}

/* Typography Overrides */
.font-accent {
  font-family: 'Dosis', sans-serif;
  letter-spacing: 0.02em;
}

/* Main Container & Glassmorphism Card */
.zen-container {
  width: 100%;
  max-width: 640px;
  margin: auto;
}

.zen-card {
  position: relative;
  background: var(--zen-card-bg);
  border: 1px solid var(--zen-card-border);
  border-radius: 24px;
  padding: 2.25rem 2rem;
  box-shadow: 
    0 25px 60px -15px rgba(0, 0, 0, 0.7),
    0 0 0 1px rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.zen-card:hover {
  border-color: rgba(253, 216, 53, 0.25);
  box-shadow: 
    0 30px 70px -15px rgba(0, 0, 0, 0.8),
    0 0 40px -10px var(--zen-yellow-glow);
}

/* Logo Styling */
.zen-logo-wrapper {
  text-align: center;
  margin-bottom: 1.5rem;
}

.zen-logo {
  max-width: 380px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5));
  transition: transform 0.3s ease;
}

.zen-logo:hover {
  transform: scale(1.02);
}

/* Status Pill */
.zen-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(253, 216, 53, 0.12);
  color: var(--zen-yellow);
  border: 1px solid rgba(253, 216, 53, 0.3);
  padding: 0.4rem 1rem;
  border-radius: 50rem;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1.25rem;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--zen-yellow);
  border-radius: 50%;
  box-shadow: 0 0 0 0 var(--zen-yellow);
  animation: pulse-ring 1.8s infinite;
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(253, 216, 53, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 7px rgba(253, 216, 53, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(253, 216, 53, 0);
  }
}

/* Intro Paragraph */
.zen-intro {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--zen-text-secondary);
  margin-bottom: 1.5rem;
  text-align: center;
}

/* Services Grid & Chips */
.services-grid {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 1.5rem;
}

.service-chip {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: var(--zen-surface);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  font-size: 0.98rem;
  font-weight: 500;
  color: #f1f5f9;
  transition: all 0.25s ease;
}

.service-chip:hover {
  background: var(--zen-surface-hover);
  border-color: rgba(253, 216, 53, 0.35);
  transform: translateX(4px);
  color: #ffffff;
}

.service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(253, 216, 53, 0.15);
  color: var(--zen-yellow);
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* Motto / Quote Box */
.zen-motto {
  position: relative;
  background: linear-gradient(135deg, rgba(253, 216, 53, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
  border-left: 3px solid var(--zen-yellow);
  border-radius: 0 12px 12px 0;
  padding: 0.9rem 1.25rem;
  margin: 1.5rem 0;
  font-style: italic;
  font-size: 1.02rem;
  color: #e2e8f0;
  line-height: 1.5;
}

.zen-motto strong {
  color: var(--zen-yellow);
  font-style: normal;
}

/* Divider */
.zen-divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 1.5rem 0;
  color: var(--zen-text-muted);
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.zen-divider::before,
.zen-divider::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid rgba(253, 216, 53, 0.25);
}

.zen-divider span {
  padding: 0 1rem;
  color: var(--zen-yellow);
  font-weight: 600;
}

/* Geographical Coverage Section */
.coverage-intro {
  font-size: 0.96rem;
  line-height: 1.55;
  color: var(--zen-text-secondary);
  text-align: center;
  margin-bottom: 1rem;
}

.counties-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
  margin-bottom: 0.85rem;
}

.county-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  background: var(--zen-surface);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 12px;
  padding: 0.65rem 0.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: #f8fafc;
  transition: all 0.25s ease;
}

.county-card i {
  color: var(--zen-yellow);
  font-size: 0.85rem;
  transition: transform 0.25s ease;
}

.county-card:hover {
  background: var(--zen-surface-hover);
  border-color: rgba(253, 216, 53, 0.4);
  transform: translateY(-2px);
  color: #ffffff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
}

.county-card:hover i {
  transform: scale(1.2);
}

.coverage-note {
  font-size: 0.84rem;
  color: var(--zen-text-muted);
  text-align: center;
  margin-bottom: 0.5rem;
}

.coverage-note i {
  color: var(--zen-yellow);
}

/* Sister Brands Section */
.sister-brands-title {
  font-size: 0.92rem;
  color: var(--zen-text-muted);
  text-align: center;
  margin-bottom: 0.85rem;
}

.sister-brands-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.brand-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 0.85rem 0.75rem;
  transition: all 0.25s ease;
  color: #ffffff;
}

.brand-card:hover {
  background: rgba(253, 216, 53, 0.1);
  border-color: var(--zen-yellow);
  transform: translateY(-2px);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.brand-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--zen-yellow);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.brand-desc {
  font-size: 0.78rem;
  color: var(--zen-text-muted);
  margin-top: 0.2rem;
  text-align: center;
}

/* Call to Action Buttons */
.cta-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.btn-zen-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  background: var(--zen-yellow);
  color: #000000;
  border: none;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 0.85rem 1.5rem;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 6px 20px rgba(253, 216, 53, 0.25);
  min-height: 52px;
}

.btn-zen-primary:hover,
.btn-zen-primary:focus {
  background: var(--zen-yellow-hover);
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(253, 216, 53, 0.45);
}

.btn-zen-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  background: rgba(255, 255, 255, 0.95);
  color: #000000;
  border: none;
  font-weight: 600;
  font-size: 1.05rem;
  padding: 0.85rem 1.5rem;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  min-height: 52px;
}

.btn-zen-secondary:hover,
.btn-zen-secondary:focus {
  background: #ffffff;
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

.btn-zen-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: rgba(37, 211, 102, 0.12);
  color: #25d366;
  border: 1px solid rgba(37, 211, 102, 0.35);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.65rem 1.25rem;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.25s ease;
  min-height: 46px;
}

.btn-zen-whatsapp:hover,
.btn-zen-whatsapp:focus {
  background: #25d366;
  color: #ffffff;
  border-color: #25d366;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
  transform: translateY(-2px);
}

/* Footer & Copyright */
.zen-footer {
  margin-top: 2rem;
  text-align: center;
  color: var(--zen-text-muted);
  font-size: 0.85rem;
}

.zen-footer a {
  color: var(--zen-text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.zen-footer a:hover {
  color: var(--zen-yellow);
}

.zen-location-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--zen-text-muted);
  font-size: 0.85rem;
  margin-top: 0.4rem;
}

/* Mobile Responsiveness */
@media (max-width: 576px) {
  body {
    padding: 1rem 0.75rem;
  }

  .zen-card {
    padding: 1.75rem 1.25rem;
    border-radius: 20px;
  }

  .zen-logo {
    max-width: 290px;
  }

  .zen-intro {
    font-size: 0.98rem;
  }

  .service-chip {
    font-size: 0.92rem;
    padding: 0.65rem 0.85rem;
  }

  .service-icon {
    width: 30px;
    height: 30px;
    font-size: 1rem;
  }

  .sister-brands-grid {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }

  .counties-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }

  .county-card {
    font-size: 0.88rem;
    padding: 0.55rem 0.4rem;
  }

  .brand-card {
    padding: 0.75rem;
  }

  .btn-zen-primary,
  .btn-zen-secondary {
    font-size: 1.02rem;
  }
}
