/* Business Made Easy Page Styles */

/* ---------------------------------------------------------
   1. Hero Section (.zs-bme-hero)
--------------------------------------------------------- */
.zs-bme-hero {
  position: relative;
  width: 100%;
  height: 50vh; /* Consistent with other inner pages */
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
}

@media (max-width: 1023px) {
  .zs-bme-hero {
    height: auto;
    min-height: 300px;
    padding: 2rem 0;
  }
}

.zs-bme-hero .zs-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.zs-bme-hero .zs-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.zs-bme-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 0;
  color: #fff;
  padding: 0 7%;
}

@media (max-width: 76.875rem) {
  .zs-bme-hero-content {
    padding: 0 1.25rem;
  }
}

.zs-bme-hero .zs-hero-title {
  font-size: 5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1;
}

.zs-bme-hero .zs-hero-desc {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 2rem;
}

.zs-bme-hero .zs-btn-primary {
  display: inline-block;
  background-color: var(--color-primary);
  color: #fff;
  padding: 0.8rem 2rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 50px;
  transition: background-color 0.3s ease;
  text-transform: none;
}

.zs-bme-hero .zs-btn-primary:hover {
  background-color: #cc000d;
}

.zs-bme-hero .zs-hero-scroll {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  z-index: 2;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0) translateX(-50%);
  }
  40% {
    transform: translateY(-10px) translateX(-50%);
  }
  60% {
    transform: translateY(-5px) translateX(-50%);
  }
}

/* ---------------------------------------------------------
   2. Perspective Section (.zs-perspective)
--------------------------------------------------------- */
.zs-perspective {
  padding: 5rem 7%;
  background-color: var(--color-bg-soft);
}

.zs-bme-container {
  width: 100%;
  margin: 0;
}

.zs-perspective-header {
  text-align: left;
  margin-bottom: 4rem;
}

.zs-perspective-title {
  font-size: 3.5rem;
  color: var(--color-text-strong);
  margin-bottom: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.zs-perspective-desc {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  max-width: 100%;
  margin: 0;
}

.zs-perspective-desc p {
  margin-bottom: 0;
  white-space: nowrap;
}

.zs-perspective-desc strong {
  color: var(--color-text-strong);
  font-weight: 600;
}

.zs-perspective-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

@media (max-width: 768px) {
  .zs-perspective {
    padding: 3rem 1.25rem;
  }

  .zs-perspective-desc {
    flex-direction: column;
  }

  .zs-perspective-desc p {
    white-space: normal;
  }

  .zs-perspective-grid {
    grid-template-columns: 1fr;
  }
}

.zs-perspective-item {
  position: relative;
  overflow: hidden;
  height: 360px;
  display: flex;
  align-items: center;
  color: #fff;
}

.zs-perspective-item-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
  z-index: 1;
}

.zs-perspective-item:hover .zs-perspective-item-bg {
  transform: scale(1.05);
}

.zs-perspective-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); 
  z-index: 2;
  transition: background 0.3s ease;
}

.zs-perspective-item:hover::after {
  background: rgba(0, 0, 0, 0.6);
}

.zs-perspective-item-content {
  position: relative;
  z-index: 3;
  padding: 3rem 4rem;
  width: 100%;
}

.zs-perspective-item-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
}

.zs-perspective-item-desc {
  font-size: 1rem;
  line-height: 1.5;
  transition: transform 0.3s ease;
}

.zs-perspective-item:hover .zs-perspective-item-desc {
  /* optional hover effect */
}

/* ---------------------------------------------------------
   3. Video Block Section (.zs-video-block)
--------------------------------------------------------- */
.zs-video-block {
  background-color: var(--color-bg-soft);
  padding: 0; /* Removing padding for full-width grid layout */
}

.zs-video-block-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.zs-video-col {
  flex: 0 0 50%;
  max-width: 50%;
}

.zs-video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
}

.zs-video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.zs-video-text-col {
  flex: 0 0 50%;
  max-width: 50%;
  background-color: #fff;
  display: flex;
  align-items: center;
  padding: 4rem;
}

.zs-video-text-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-text-strong);
  margin-bottom: 1.5rem;
}

.zs-video-text-desc {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.zs-video-text-desc p {
  margin-bottom: 1rem;
}

.zs-video-text-desc strong {
  color: var(--color-text-strong);
}

@media (max-width: 1023px) {
  .zs-video-col,
  .zs-video-text-col {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .zs-video-text-col {
    padding: 3rem 2rem;
  }
}

/* ---------------------------------------------------------
   4. Download Doc Section (.zs-download-doc)
--------------------------------------------------------- */
.zs-download-doc {
  padding: 0;
  background-color: #fff;
}

.zs-download-row {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 0;
  max-height: 400px;
}

.zs-download-text-col {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 2rem 7%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.zs-download-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-text-strong);
  margin-bottom: 1rem;
}

.zs-download-desc {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.zs-download-desc p {
  margin-bottom: 0.5rem;
}

.zs-download-desc ul {
  list-style: none;
  padding: 0;
}

.zs-download-desc ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
}

.zs-download-desc ul li::before {
  content: "•";
  color: var(--color-primary);
  position: absolute;
  left: 0;
  font-size: 1.5rem;
  line-height: 1;
  top: -2px;
}

.zs-download-btn-col {
  flex: 0 0 50%;
  max-width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.zs-download-bg-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.zs-btn-download-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background-color: var(--color-primary);
  color: #fff;
  text-decoration: none;
  text-align: center;
  padding: 1rem;
  transition: background-color 0.3s ease, transform 0.3s ease;
  z-index: 2;
  border: 10px solid #fff;
}

.zs-btn-download-circle:hover {
  background-color: #cc000d;
  transform: translate(-50%, -50%) scale(1.05);
}

.zs-btn-download-circle strong {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  display: block;
}

.zs-btn-download-circle em {
  font-size: 0.875rem;
  font-style: normal;
  opacity: 0.8;
}

@media (max-width: 768px) {
  .zs-download-text-col,
  .zs-download-btn-col {
    flex: 0 0 100%;
    max-width: 100%;
  }
  
  .zs-download-text-col {
    padding: 3rem 1.25rem;
  }
  
  .zs-download-btn-col {
    min-height: 400px;
  }
}

/* ---------------------------------------------------------
   5. Learn How Support Link (.zs-support-link)
--------------------------------------------------------- */
.zs-support-link {
  padding: 0;
  margin-top: 5%;
  text-align: center;
  background-color: #fff;
}

.zs-support-link .zs-bme-container {
  width: 100%;
  margin: 0;
}

.zs-btn-page-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  padding: 3rem 2rem;
  background-color: #fff;
  color: var(--color-primary);
  text-decoration: none;
  font-size: 1.125rem;
  font-weight: 700;
  transition: all 0.3s ease;
  border: none;
}

.zs-btn-page-link:hover {
  color: #000;
}
