/* =========================================
   Zenvyxa Automotive Service - Main Stylesheet
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&family=Source+Sans+3:ital,wght@0,300;0,400;0,600;1,400&display=swap');

/* --- CSS Variables --- */
:root {
  --zen-navy: #0d1b2a;
  --zen-charcoal: #1a2535;
  --zen-steel: #2e3d4f;
  --zen-steel-light: #4a5e72;
  --zen-grey: #8a9bb0;
  --zen-grey-light: #c8d3df;
  --zen-white: #f5f7fa;
  --zen-pure-white: #ffffff;
  --zen-accent: #c0392b;
  --zen-accent-hover: #a93226;
  --zen-accent-light: #e74c3c;
  --zen-blue: #2980b9;
  --zen-blue-light: #3498db;
  --zen-gold: #d4ac0d;
  --zen-text: #e8edf2;
  --zen-text-muted: #8a9bb0;
  --zen-border: rgba(255,255,255,0.08);
  --zen-shadow: 0 4px 24px rgba(0,0,0,0.35);
  --zen-shadow-lg: 0 12px 48px rgba(0,0,0,0.45);
  --zen-radius: 6px;
  --zen-radius-lg: 12px;
  --zen-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --zen-font-heading: 'Montserrat', sans-serif;
  --zen-font-body: 'Source Sans 3', sans-serif;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--zen-font-body);
  background: var(--zen-navy);
  color: var(--zen-text);
  font-size: 17px;
  line-height: 1.75;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--zen-font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--zen-pure-white);
}

a { color: var(--zen-accent-light); text-decoration: none; transition: var(--zen-transition); }
a:hover { color: var(--zen-accent); }

img { max-width: 100%; height: auto; }

/* --- Utility Classes --- */
.zen-section { padding: 90px 0; }
.zen-section-sm { padding: 60px 0; }
.zen-section-lg { padding: 120px 0; }

.zen-bg-dark { background: var(--zen-navy); }
.zen-bg-charcoal { background: var(--zen-charcoal); }
.zen-bg-steel { background: var(--zen-steel); }

.zen-text-accent { color: var(--zen-accent-light); }
.zen-text-muted { color: var(--zen-text-muted); }
.zen-text-white { color: var(--zen-pure-white); }

.zen-divider {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--zen-accent), transparent);
  margin: 0 auto;
  width: 80px;
}

.zen-label {
  font-family: var(--zen-font-heading);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--zen-accent-light);
}

/* --- Buttons --- */
.zen-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--zen-font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--zen-radius);
  border: none;
  cursor: pointer;
  transition: var(--zen-transition);
}

.zen-btn-primary {
  background: var(--zen-accent);
  color: #fff;
}
.zen-btn-primary:hover {
  background: var(--zen-accent-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(192,57,43,0.4);
}

.zen-btn-outline {
  background: transparent;
  color: var(--zen-pure-white);
  border: 1px solid rgba(255,255,255,0.35);
}
.zen-btn-outline:hover {
  background: rgba(255,255,255,0.08);
  color: var(--zen-pure-white);
  border-color: rgba(255,255,255,0.6);
}

.zen-btn-sm {
  padding: 10px 22px;
  font-size: 0.78rem;
}

/* --- Navigation --- */
.zen-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--zen-transition);
}

.zen-navbar.zen-scrolled {
  padding: 10px 0;
  background: rgba(13, 27, 42, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--zen-border);
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.zen-nav-brand {
  font-family: var(--zen-font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--zen-pure-white) !important;
  letter-spacing: -0.02em;
}

.zen-nav-brand span {
  color: var(--zen-accent-light);
}

.zen-navbar .nav-link {
  font-family: var(--zen-font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75) !important;
  padding: 8px 14px !important;
  transition: var(--zen-transition);
}

.zen-navbar .nav-link:hover,
.zen-navbar .nav-link.active {
  color: var(--zen-pure-white) !important;
}

.zen-navbar .zen-nav-cta {
  background: var(--zen-accent);
  color: #fff !important;
  border-radius: var(--zen-radius);
  padding: 8px 20px !important;
}

.zen-navbar .zen-nav-cta:hover {
  background: var(--zen-accent-hover);
  color: #fff !important;
}

.zen-navbar-toggler {
  border: 1px solid rgba(255,255,255,0.3);
  padding: 8px 12px;
  background: transparent;
  cursor: pointer;
}

.zen-navbar-toggler-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  margin: 5px 0;
  transition: var(--zen-transition);
}

/* --- Hero Section --- */
.zen-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.zen-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/banner.jfif');
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease-out;
}

.zen-hero-bg.zen-loaded { transform: scale(1); }

.zen-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13, 27, 42, 0.92) 0%,
    rgba(13, 27, 42, 0.75) 50%,
    rgba(26, 37, 53, 0.88) 100%
  );
}

.zen-hero-content {
  position: relative;
  z-index: 2;
}

.zen-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--zen-font-heading);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--zen-accent-light);
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(20px);
  animation: zenFadeUp 0.7s forwards 0.3s;
}

.zen-hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 30px;
  height: 1px;
  background: var(--zen-accent-light);
}

.zen-hero-title {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--zen-pure-white);
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(25px);
  animation: zenFadeUp 0.7s forwards 0.5s;
}

.zen-hero-title span {
  color: var(--zen-accent-light);
  display: block;
}

.zen-hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.72);
  max-width: 560px;
  margin-bottom: 42px;
  opacity: 0;
  transform: translateY(20px);
  animation: zenFadeUp 0.7s forwards 0.7s;
}

.zen-hero-actions {
  opacity: 0;
  transform: translateY(20px);
  animation: zenFadeUp 0.7s forwards 0.9s;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.zen-hero-stats {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  z-index: 2;
  opacity: 0;
  animation: zenFadeUp 0.7s forwards 1.1s;
}

.zen-hero-stat-item {
  text-align: center;
  padding: 20px;
  border-right: 1px solid rgba(255,255,255,0.1);
}

.zen-hero-stat-item:last-child { border-right: none; }

.zen-hero-stat-number {
  font-family: var(--zen-font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--zen-pure-white);
  display: block;
}

.zen-hero-stat-label {
  font-size: 0.78rem;
  color: var(--zen-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* --- Scroll indicator --- */
.zen-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.zen-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.4));
  animation: zenScrollPulse 2s ease-in-out infinite;
}

/* --- Section Headers --- */
.zen-section-header { margin-bottom: 60px; }
.zen-section-header.text-center .zen-divider { margin: 16px auto 0; }
.zen-section-header .zen-divider { margin: 16px 0 0; }

.zen-section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  margin-top: 12px;
  margin-bottom: 16px;
}

.zen-section-lead {
  font-size: 1.08rem;
  color: var(--zen-text-muted);
  max-width: 600px;
}

/* --- Service Cards --- */
.zen-service-card {
  background: var(--zen-charcoal);
  border: 1px solid var(--zen-border);
  border-radius: var(--zen-radius-lg);
  overflow: hidden;
  transition: var(--zen-transition);
  height: 100%;
}

.zen-service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(192,57,43,0.3);
  box-shadow: var(--zen-shadow-lg);
}

.zen-service-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: var(--zen-transition);
}

.zen-service-card:hover .zen-service-card-img { transform: scale(1.04); }

.zen-service-card-img-wrap { overflow: hidden; }

.zen-service-card-body {
  padding: 28px;
}

.zen-service-card-icon {
  width: 46px;
  height: 46px;
  background: rgba(192,57,43,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--zen-accent-light);
  font-size: 1.1rem;
}

.zen-service-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--zen-pure-white);
}

.zen-service-card-text {
  font-size: 0.9rem;
  color: var(--zen-text-muted);
  line-height: 1.7;
}

/* --- Interactive Service Navigator --- */
.zen-service-navigator {
  background: var(--zen-charcoal);
  border: 1px solid var(--zen-border);
  border-radius: var(--zen-radius-lg);
  padding: 48px;
}

.zen-nav-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}

.zen-nav-cat-btn {
  font-family: var(--zen-font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: 30px;
  border: 1px solid var(--zen-border);
  background: transparent;
  color: var(--zen-text-muted);
  cursor: pointer;
  transition: var(--zen-transition);
}

.zen-nav-cat-btn.zen-active,
.zen-nav-cat-btn:hover {
  background: var(--zen-accent);
  border-color: var(--zen-accent);
  color: #fff;
}

.zen-nav-results { min-height: 120px; }

.zen-nav-result-item {
  display: flex;
  align-items: start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--zen-border);
  opacity: 0;
  transform: translateY(12px);
  animation: zenFadeUp 0.4s forwards;
}

.zen-nav-result-item:last-child { border-bottom: none; }

.zen-nav-result-icon {
  width: 40px;
  height: 40px;
  background: rgba(192,57,43,0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--zen-accent-light);
}

/* --- Timeline Section --- */
.zen-timeline {
  position: relative;
  padding-left: 40px;
}

.zen-timeline::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--zen-accent), var(--zen-blue), transparent);
}

.zen-timeline-item {
  position: relative;
  padding-bottom: 42px;
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.5s ease;
}

.zen-timeline-item.zen-visible {
  opacity: 1;
  transform: translateX(0);
}

.zen-timeline-dot {
  position: absolute;
  left: -34px;
  top: 4px;
  width: 14px;
  height: 14px;
  background: var(--zen-accent);
  border-radius: 50%;
  border: 3px solid var(--zen-navy);
}

.zen-timeline-step {
  font-family: var(--zen-font-heading);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--zen-accent-light);
  margin-bottom: 6px;
}

.zen-timeline-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--zen-pure-white);
  margin-bottom: 8px;
}

.zen-timeline-text {
  font-size: 0.9rem;
  color: var(--zen-text-muted);
}

/* --- Team Section --- */
.zen-team-card {
  background: var(--zen-charcoal);
  border: 1px solid var(--zen-border);
  border-radius: var(--zen-radius-lg);
  overflow: hidden;
  transition: var(--zen-transition);
  text-align: center;
}

.zen-team-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--zen-shadow-lg);
  border-color: rgba(192,57,43,0.25);
}

.zen-team-img-wrap {
  position: relative;
  overflow: hidden;
  height: 260px;
}

.zen-team-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--zen-transition);
}

.zen-team-card:hover .zen-team-img { transform: scale(1.05); }

.zen-team-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,27,42,0.85) 0%, transparent 50%);
}

.zen-team-body { padding: 24px; }

.zen-team-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--zen-pure-white);
  margin-bottom: 4px;
}

.zen-team-role {
  font-size: 0.82rem;
  color: var(--zen-accent-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: var(--zen-font-heading);
  font-weight: 600;
  margin-bottom: 12px;
}

.zen-team-bio {
  font-size: 0.88rem;
  color: var(--zen-text-muted);
  line-height: 1.65;
}

/* --- Reviews Section --- */
.zen-review-slider-wrap {
  position: relative;
  overflow: hidden;
}

.zen-review-slider {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.zen-review-slide {
  flex: 0 0 100%;
  padding: 0 16px;
}

.zen-review-card {
  background: var(--zen-charcoal);
  border: 1px solid var(--zen-border);
  border-radius: var(--zen-radius-lg);
  padding: 42px;
  position: relative;
}

.zen-review-quote {
  font-size: 4rem;
  color: var(--zen-accent);
  line-height: 1;
  margin-bottom: 16px;
  font-family: Georgia, serif;
  opacity: 0.4;
}

.zen-review-text {
  font-size: 1rem;
  color: var(--zen-text);
  line-height: 1.8;
  margin-bottom: 28px;
  font-style: italic;
}

.zen-review-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.zen-review-avatar {
  width: 48px;
  height: 48px;
  background: var(--zen-steel);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--zen-font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--zen-pure-white);
  flex-shrink: 0;
}

.zen-review-name {
  font-family: var(--zen-font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--zen-pure-white);
  margin-bottom: 2px;
}

.zen-review-location {
  font-size: 0.8rem;
  color: var(--zen-text-muted);
}

.zen-review-stars { color: var(--zen-gold); font-size: 0.85rem; margin-top: 4px; }

.zen-slider-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
  justify-content: center;
}

.zen-slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--zen-border);
  background: var(--zen-charcoal);
  color: var(--zen-text);
  cursor: pointer;
  transition: var(--zen-transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.zen-slider-btn:hover {
  background: var(--zen-accent);
  border-color: var(--zen-accent);
  color: #fff;
}

.zen-slider-dots { display: flex; gap: 8px; }

.zen-slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background: var(--zen-border);
  cursor: pointer;
  transition: var(--zen-transition);
}

.zen-slider-dot.zen-active {
  background: var(--zen-accent);
  width: 24px;
}

/* --- Before/After Slider --- */
.zen-ba-container {
  position: relative;
  overflow: hidden;
  border-radius: var(--zen-radius-lg);
  cursor: ew-resize;
  user-select: none;
  box-shadow: var(--zen-shadow-lg);
}

.zen-ba-before,
.zen-ba-after {
  position: absolute;
  inset: 0;
}

.zen-ba-before img,
.zen-ba-after img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.zen-ba-after { clip-path: inset(0 50% 0 0); }

.zen-ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: #fff;
  transform: translateX(-50%);
}

.zen-ba-handle-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 42px;
  height: 42px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--zen-shadow);
  color: var(--zen-navy);
  font-size: 0.8rem;
}

.zen-ba-label {
  position: absolute;
  top: 16px;
  font-family: var(--zen-font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  background: rgba(13,27,42,0.75);
  border-radius: 30px;
  color: #fff;
}

.zen-ba-label-before { left: 16px; }
.zen-ba-label-after { right: 16px; }

/* --- Standards Section --- */
.zen-standards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.zen-standard-item {
  display: flex;
  gap: 20px;
  padding: 28px;
  background: var(--zen-charcoal);
  border: 1px solid var(--zen-border);
  border-radius: var(--zen-radius-lg);
  transition: var(--zen-transition);
}

.zen-standard-item:hover {
  border-color: rgba(192,57,43,0.25);
}

.zen-standard-icon {
  width: 48px;
  height: 48px;
  background: rgba(192,57,43,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--zen-accent-light);
  font-size: 1.2rem;
}

.zen-standard-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--zen-pure-white);
  margin-bottom: 8px;
}

.zen-standard-text {
  font-size: 0.88rem;
  color: var(--zen-text-muted);
  line-height: 1.7;
}

/* --- Map Section --- */
.zen-map-embed {
  border-radius: var(--zen-radius-lg);
  overflow: hidden;
  box-shadow: var(--zen-shadow-lg);
  border: 1px solid var(--zen-border);
}

.zen-map-embed iframe {
  display: block;
  width: 100%;
  height: 420px;
  filter: grayscale(60%) contrast(1.1);
}

/* --- Contact Form --- */
.zen-form-group { margin-bottom: 22px; }

.zen-form-label {
  display: block;
  font-family: var(--zen-font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--zen-text-muted);
  margin-bottom: 8px;
}

.zen-form-control {
  width: 100%;
  background: var(--zen-charcoal);
  border: 1px solid var(--zen-border);
  border-radius: var(--zen-radius);
  padding: 14px 18px;
  font-family: var(--zen-font-body);
  font-size: 0.95rem;
  color: var(--zen-text);
  transition: var(--zen-transition);
  outline: none;
}

.zen-form-control::placeholder { color: var(--zen-text-muted); }

.zen-form-control:focus {
  border-color: var(--zen-accent-light);
  box-shadow: 0 0 0 3px rgba(231,76,60,0.15);
}

.zen-form-control.zen-error { border-color: #e74c3c; }

.zen-error-msg {
  font-size: 0.8rem;
  color: #e74c3c;
  margin-top: 5px;
  display: none;
}

.zen-error-msg.zen-visible { display: block; }

/* --- Page Hero (inner pages) --- */
.zen-page-hero {
  padding: 160px 0 80px;
  background: var(--zen-charcoal);
  position: relative;
  overflow: hidden;
}

.zen-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1619642751034-765dfdf7c58e?w=1920&q=60') center/cover;
  opacity: 0.06;
}

.zen-page-hero-content { position: relative; z-index: 1; }

.zen-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--zen-text-muted);
  margin-bottom: 16px;
}

.zen-breadcrumb a { color: var(--zen-accent-light); }

.zen-breadcrumb-sep { color: var(--zen-text-muted); font-size: 0.7rem; }

/* --- Article Cards --- */
.zen-article-card {
  background: var(--zen-charcoal);
  border: 1px solid var(--zen-border);
  border-radius: var(--zen-radius-lg);
  overflow: hidden;
  transition: var(--zen-transition);
  height: 100%;
}

.zen-article-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--zen-shadow-lg);
}

.zen-article-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: var(--zen-transition);
}

.zen-article-card:hover .zen-article-img { transform: scale(1.04); }

.zen-article-img-wrap { overflow: hidden; }

.zen-article-body { padding: 28px; }

.zen-article-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.78rem;
  color: var(--zen-text-muted);
  margin-bottom: 12px;
}

.zen-article-category {
  color: var(--zen-accent-light);
  font-family: var(--zen-font-heading);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.zen-article-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--zen-pure-white);
  margin-bottom: 10px;
  line-height: 1.35;
}

.zen-article-excerpt {
  font-size: 0.88rem;
  color: var(--zen-text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

/* --- Article Detail --- */
.zen-article-content {
  max-width: 760px;
  margin: 0 auto;
}

.zen-article-content h2 {
  font-size: 1.65rem;
  margin: 44px 0 18px;
  padding-top: 10px;
  color: var(--zen-pure-white);
}

.zen-article-content h3 {
  font-size: 1.25rem;
  margin: 34px 0 14px;
  color: var(--zen-pure-white);
}

.zen-article-content p {
  margin-bottom: 20px;
  color: rgba(232,237,242,0.85);
  font-size: 1rem;
}

.zen-article-content ul,
.zen-article-content ol {
  margin: 0 0 20px 24px;
  color: rgba(232,237,242,0.85);
}

.zen-article-content li { margin-bottom: 8px; }

.zen-article-content blockquote {
  border-left: 3px solid var(--zen-accent);
  padding: 20px 28px;
  background: var(--zen-charcoal);
  border-radius: 0 var(--zen-radius) var(--zen-radius) 0;
  margin: 32px 0;
  font-size: 1.05rem;
  color: rgba(232,237,242,0.9);
  font-style: italic;
}

.zen-article-hero-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--zen-radius-lg);
  margin-bottom: 48px;
}

/* --- Info Box --- */
.zen-info-box {
  background: var(--zen-charcoal);
  border: 1px solid var(--zen-border);
  border-radius: var(--zen-radius-lg);
  padding: 28px 32px;
}

.zen-info-box-title {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--zen-accent-light);
  margin-bottom: 12px;
}

/* --- CTA Section --- */
.zen-cta-section {
  background: linear-gradient(135deg, var(--zen-charcoal) 0%, var(--zen-steel) 100%);
  border-top: 1px solid var(--zen-border);
  border-bottom: 1px solid var(--zen-border);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

.zen-cta-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(192,57,43,0.08) 0%, transparent 70%);
}

/* --- Footer --- */
.zen-footer {
  background: #080f17;
  border-top: 1px solid var(--zen-border);
  padding: 80px 0 32px;
}

.zen-footer-brand {
  font-family: var(--zen-font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--zen-pure-white);
  margin-bottom: 16px;
  display: block;
}

.zen-footer-brand span { color: var(--zen-accent-light); }

.zen-footer-text {
  font-size: 0.88rem;
  color: var(--zen-text-muted);
  line-height: 1.75;
  margin-bottom: 24px;
}

.zen-footer-heading {
  font-family: var(--zen-font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--zen-text-muted);
  margin-bottom: 20px;
}

.zen-footer-links { list-style: none; padding: 0; }

.zen-footer-links li { margin-bottom: 10px; }

.zen-footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  transition: var(--zen-transition);
}

.zen-footer-links a:hover { color: var(--zen-pure-white); padding-left: 4px; }

.zen-footer-contact-item {
  display: flex;
  align-items: start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
}

.zen-footer-contact-item i {
  color: var(--zen-accent-light);
  margin-top: 3px;
  flex-shrink: 0;
}

.zen-footer-bottom {
  border-top: 1px solid var(--zen-border);
  padding-top: 28px;
  margin-top: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.zen-footer-copy {
  font-size: 0.8rem;
  color: var(--zen-text-muted);
}

.zen-footer-legal {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.zen-footer-legal a {
  font-size: 0.8rem;
  color: var(--zen-text-muted);
}

.zen-footer-legal a:hover { color: var(--zen-pure-white); }

/* --- SVG Wave Dividers --- */
.zen-wave-divider {
  display: block;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.zen-wave-divider svg {
  display: block;
  width: 100%;
}

/* --- Counter --- */
.zen-counter-number {
  font-family: var(--zen-font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--zen-pure-white);
  line-height: 1;
}

/* --- Animated Scroll Classes --- */
.zen-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.zen-reveal.zen-visible {
  opacity: 1;
  transform: translateY(0);
}

.zen-reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.zen-reveal-left.zen-visible {
  opacity: 1;
  transform: translateX(0);
}

.zen-reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.zen-reveal-right.zen-visible {
  opacity: 1;
  transform: translateX(0);
}

/* Delay classes */
.zen-delay-1 { transition-delay: 0.1s; }
.zen-delay-2 { transition-delay: 0.2s; }
.zen-delay-3 { transition-delay: 0.3s; }
.zen-delay-4 { transition-delay: 0.4s; }
.zen-delay-5 { transition-delay: 0.5s; }

/* --- Services Detail Page --- */
.zen-service-detail {
  padding: 48px;
  background: var(--zen-charcoal);
  border: 1px solid var(--zen-border);
  border-radius: var(--zen-radius-lg);
  margin-bottom: 32px;
}

.zen-service-detail-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: var(--zen-radius);
  margin-bottom: 32px;
}

.zen-service-detail h3 {
  font-size: 1.5rem;
  color: var(--zen-pure-white);
  margin-bottom: 16px;
}

.zen-service-includes {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 20px 0;
}

.zen-service-include-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--zen-text);
}

.zen-service-include-item i {
  color: var(--zen-accent-light);
  font-size: 0.85rem;
}

.zen-disclaimer {
  background: rgba(192,57,43,0.06);
  border: 1px solid rgba(192,57,43,0.15);
  border-radius: var(--zen-radius);
  padding: 16px 20px;
  font-size: 0.85rem;
  color: var(--zen-text-muted);
  margin-top: 20px;
}

/* --- Business Hours --- */
.zen-hours-table { width: 100%; }
.zen-hours-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--zen-border);
  font-size: 0.9rem;
}
.zen-hours-row:last-child { border-bottom: none; }
.zen-hours-day { color: var(--zen-text); }
.zen-hours-time { color: var(--zen-accent-light); font-weight: 600; }

/* --- Thank You --- */
.zen-thankyou-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  text-align: center;
  padding: 120px 0 80px;
}

.zen-thankyou-icon {
  width: 90px;
  height: 90px;
  background: rgba(192,57,43,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  font-size: 2rem;
  color: var(--zen-accent-light);
}

/* --- Legal Pages --- */
.zen-legal-content {
  max-width: 820px;
}

.zen-legal-content h2 {
  font-size: 1.35rem;
  color: var(--zen-pure-white);
  margin: 40px 0 14px;
  padding-top: 8px;
}

.zen-legal-content h3 {
  font-size: 1.1rem;
  color: var(--zen-pure-white);
  margin: 28px 0 10px;
}

.zen-legal-content p {
  color: rgba(232,237,242,0.8);
  font-size: 0.95rem;
  margin-bottom: 16px;
  line-height: 1.8;
}

.zen-legal-content ul {
  margin: 0 0 16px 24px;
  color: rgba(232,237,242,0.8);
  font-size: 0.95rem;
}

.zen-legal-content li { margin-bottom: 6px; }

.zen-last-updated {
  font-size: 0.82rem;
  color: var(--zen-text-muted);
  margin-top: 6px;
}

/* --- Cookie Banner --- */
.zen-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--zen-charcoal);
  border-top: 1px solid var(--zen-border);
  padding: 20px 0;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 -8px 32px rgba(0,0,0,0.4);
}

.zen-cookie-banner.zen-show { transform: translateY(0); }

.zen-cookie-text {
  font-size: 0.88rem;
  color: var(--zen-text-muted);
}

.zen-cookie-text a { color: var(--zen-accent-light); }

/* --- About Timeline --- */
.zen-about-timeline { position: relative; padding: 0; }

.zen-about-timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--zen-accent), transparent);
}

.zen-about-milestone {
  padding-left: 32px;
  padding-bottom: 48px;
  position: relative;
}

.zen-about-milestone::before {
  content: '';
  position: absolute;
  left: -5px;
  top: 6px;
  width: 12px;
  height: 12px;
  background: var(--zen-accent);
  border-radius: 50%;
}

.zen-about-year {
  font-family: var(--zen-font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--zen-accent-light);
  margin-bottom: 6px;
}

/* --- Sticky sidebar --- */
.zen-sticky-sidebar {
  position: sticky;
  top: 100px;
}

/* --- Captcha --- */
.zen-captcha-box {
  background: var(--zen-charcoal);
  border: 1px solid var(--zen-border);
  border-radius: var(--zen-radius);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.zen-captcha-question {
  font-family: var(--zen-font-heading);
  font-weight: 600;
  color: var(--zen-pure-white);
  font-size: 0.95rem;
}

.zen-captcha-input {
  width: 80px;
  background: var(--zen-steel);
  border: 1px solid var(--zen-border);
  border-radius: var(--zen-radius);
  padding: 8px 12px;
  color: var(--zen-text);
  font-size: 0.95rem;
  outline: none;
  text-align: center;
}

.zen-captcha-input:focus { border-color: var(--zen-accent-light); }

/* --- Keyframes --- */
@keyframes zenFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes zenScrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 0.7; transform: scaleY(1.2); }
}

@keyframes zenCounter {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* --- Responsive --- */
@media (max-width: 991px) {
  .zen-section { padding: 70px 0; }
  .zen-service-navigator { padding: 28px; }
  .zen-review-card { padding: 28px; }
  .zen-service-detail { padding: 28px; }
  .zen-hero-stats { position: relative; bottom: auto; padding: 40px 0 0; }
  .zen-hero { min-height: auto; padding: 120px 0 60px; }
}

@media (max-width: 767px) {
  .zen-hero-title { font-size: 2.2rem; }
  .zen-hero-actions { flex-direction: column; align-items: start; }
  .zen-footer-bottom { flex-direction: column; text-align: center; }
  .zen-footer-legal { justify-content: center; }
}



.logo{
  max-width: 150px;
  object-fit: contain;
}

html{
  overflow-x: hidden;
}