:root {
  --zen-red: #e60000;
  --zen-red-hover: #cc0000;
  --zen-red-glow: rgba(230, 0, 0, 0.35);
  --zen-dark-card: rgba(14, 18, 26, 0.84);
  --zen-border: rgba(255, 255, 255, 0.12);
  --zen-border-hover: rgba(255, 255, 255, 0.28);
  --zen-text-main: #f8fafc;
  --zen-text-muted: #cbd5e1;
  --zen-font: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
}

*, *::before, *::after {
  box-sizing: border-box;
}

body {
  font-family: var(--zen-font);
  color: var(--zen-text-main);
  background-color: #0b0d12;
  background-image: 
    radial-gradient(ellipse at center, rgba(14, 18, 26, 0.65) 0%, rgba(10, 12, 16, 0.92) 100%),
    url('../images/featured-background-zen-express.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Fallback for iOS fixed background bug */
@supports (-webkit-touch-callout: none) {
  body {
    background-attachment: scroll;
  }
}

/* Main Container Wrapper */
.page-wrapper {
  width: 100%;
  max-width: 640px;
  padding: 2.5rem 1rem;
  margin: auto;
  box-sizing: border-box;
}

@media (max-width: 575.98px) {
  .page-wrapper {
    padding: 1.25rem 0.75rem;
  }
}

/* Glassmorphism Card */
.glass-card {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  background: var(--zen-dark-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--zen-border);
  border-radius: 1.5rem;
  padding: 2.25rem 2rem;
  box-shadow: 
    0 25px 60px -15px rgba(0, 0, 0, 0.8),
    0 0 0 1px rgba(255, 255, 255, 0.05) inset;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

@media (max-width: 575.98px) {
  .glass-card {
    padding: 1.5rem 1rem;
    border-radius: 1.25rem;
  }
}

/* Brand Logo */
.brand-logo-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.25rem;
}

.brand-logo {
  max-width: min(380px, 100%);
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.6));
  transition: transform 0.3s ease;
}

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

/* Status Badge */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.9rem;
  background: rgba(230, 0, 0, 0.12);
  border: 1px solid rgba(230, 0, 0, 0.35);
  border-radius: 9999px;
  font-size: 0.825rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #ff4d4d;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
}

.status-dot {
  width: 8px;
  height: 8px;
  background-color: #ff3333;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 rgba(255, 51, 51, 0.7);
  animation: pulse-dot 1.8s infinite;
}

@keyframes pulse-dot {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 51, 51, 0.7);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(255, 51, 51, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 51, 51, 0);
  }
}

/* Headings and Intros */
.intro-lead {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.55;
  color: #ffffff;
  margin-bottom: 1.25rem;
  text-align: center;
}

@media (max-width: 576px) {
  .intro-lead {
    font-size: 1rem;
  }
}

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

.service-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  transition: all 0.25s ease;
}

.service-item:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(230, 0, 0, 0.35);
  transform: translateX(4px);
}

.service-icon-box {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 0.5rem;
  background: rgba(230, 0, 0, 0.16);
  color: #ff3333;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.service-text {
  font-size: 0.95rem;
  font-weight: 500;
  color: #f1f5f9;
  margin: 0;
  line-height: 1.4;
}

/* Geographical Coverage Section */
.coverage-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--zen-border);
  border-radius: 1rem;
  padding: 1.1rem 1rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.coverage-header {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.35rem;
  letter-spacing: 0.02em;
}

.coverage-header i {
  color: #ff3333;
  font-size: 1.05rem;
}

.coverage-desc {
  font-size: 0.875rem;
  color: var(--zen-text-muted);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

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

@media (max-width: 480px) {
  .counties-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.county-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  background: rgba(230, 0, 0, 0.09);
  border: 1px solid rgba(230, 0, 0, 0.28);
  border-radius: 0.5rem;
  padding: 0.42rem 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #f1f5f9;
  transition: all 0.2s ease;
}

.county-pill i {
  font-size: 0.75rem;
  color: #ff4d4d;
}

.county-pill:hover {
  background: rgba(230, 0, 0, 0.18);
  border-color: rgba(230, 0, 0, 0.5);
  color: #ffffff;
  transform: translateY(-1px);
}

.coverage-sub {
  font-size: 0.78rem;
  color: #94a3b8;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
}

/* Motto / Quote Box */
.motto-box {
  background: linear-gradient(135deg, rgba(230, 0, 0, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
  border-left: 3px solid var(--zen-red);
  border-radius: 0 0.75rem 0.75rem 0;
  padding: 0.9rem 1rem;
  margin-bottom: 1.5rem;
}

.motto-quote {
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.35rem;
  letter-spacing: 0.01em;
}

.motto-desc {
  font-size: 0.9rem;
  color: var(--zen-text-muted);
  line-height: 1.5;
  margin: 0;
}

/* Divider with Accent */
.accent-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin: 1.5rem 0;
  opacity: 0.8;
}

.accent-divider::before,
.accent-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(230, 0, 0, 0.6), transparent);
}

.accent-divider span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #94a3b8;
  font-weight: 600;
}

/* Sister Websites Section */
.sister-box {
  text-align: center;
  margin-bottom: 1.5rem;
}

.sister-title {
  font-size: 0.95rem;
  color: var(--zen-text-muted);
  margin-bottom: 0.75rem;
}

.sister-links-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

@media (max-width: 575.98px) {
  .sister-links-grid {
    grid-template-columns: 1fr;
  }
}

.sister-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--zen-border);
  border-radius: 0.75rem;
  padding: 0.75rem 0.65rem;
  transition: all 0.25s ease;
  min-width: 0;
}

.sister-card:hover {
  background: rgba(230, 0, 0, 0.08);
  border-color: rgba(230, 0, 0, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.sister-card-title {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 1rem;
  font-weight: 700;
  color: #ff3333;
}

.sister-card-title i {
  font-size: 0.8rem;
  opacity: 0.8;
  transition: transform 0.2s ease;
}

.sister-card:hover .sister-card-title i {
  transform: translate(2px, -2px);
}

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

/* Action Buttons (CTAs) */
.cta-container {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cta-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

@media (max-width: 575.98px) {
  .cta-row {
    grid-template-columns: 1fr;
  }
}

.btn-zen-phone {
  background: #ffffff;
  color: #0a0c10;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 0.65rem;
  padding: 0.85rem 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: none;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(255, 255, 255, 0.2);
  transition: all 0.25s ease;
  min-height: 48px;
  min-width: 0;
  white-space: nowrap;
}

.btn-zen-phone:hover {
  background: #f1f5f9;
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.btn-zen-email {
  background: var(--zen-red);
  color: #ffffff;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 0.65rem;
  padding: 0.85rem 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-decoration: none;
  box-shadow: 0 4px 16px var(--zen-red-glow);
  transition: all 0.25s ease;
  min-height: 48px;
  min-width: 0;
  white-space: nowrap;
}

.btn-zen-email:hover {
  background: var(--zen-red-hover);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--zen-red-glow);
}

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

.btn-zen-whatsapp:hover {
  background: rgba(37, 211, 102, 0.2);
  color: #38e67a;
  border-color: rgba(37, 211, 102, 0.5);
  transform: translateY(-1px);
}

/* Footer / Copyright */
.page-footer {
  text-align: center;
  font-size: 0.8rem;
  color: #64748b;
  margin-top: 1.5rem;
}

.page-footer a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.2s ease;
}

.page-footer a:hover {
  color: #f1f5f9;
}
