/* ===============================
   GeneratePress Layout Fix
=================================*/

body.page .inside-article,
body.page .site-content,
.entry-content,
.site-main {
  margin: 0 !important;
  padding: 0 !important;
}

body.page .site-header {
  margin-bottom: 0 !important;
}


/* ===============================
   Modern Split Hero Layout
=================================*/

.esh-hero {
  width: 100%;
  padding: 80px 20px;
  background: radial-gradient(circle at top left, #f3e5f5 0%, #ffffff 70%);
}

.esh-container {
  max-width: 1200px;
  margin: 0 auto;
}

.esh-hero-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px; /* Increased spacing */
}

.esh-hero-text {
  flex: 1;
}

.esh-hero-text h1 {
  font-size: 44px;
  color: #7B1FA2;
  margin-bottom: 18px;
  line-height: 1.3;
}

.esh-hero-text p {
  font-size: 18px;
  margin-bottom: 30px;
  color: #555;
}

/* Image Enlarged */
.esh-hero-image {
  flex: 1;
  text-align: center;
}

.esh-app-image {
  width: 600px;          /* Increased from 500px */
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.15)); /* Depth effect */
}

/* Download Button */
.esh-download-btn {
  display: inline-block;
  background: #2E7D32;
  color: white;
  padding: 20px 50px;
  border-radius: 60px;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  box-shadow: 0 12px 30px rgba(46,125,50,0.35);
  transition: all 0.3s ease;
}

.esh-download-btn:hover {
  background: #1b5e20;
  transform: translateY(-4px);
}

/* Trust Row */
.esh-trust {
  margin-top: 22px;
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  font-size: 14px;
  color: #444;
}


/* ===============================
   Contact Section
=================================*/

.esh-contact {
  background: linear-gradient(135deg, #7B1FA2, #9C27B0);
  padding: 60px 20px;
  text-align: center;
  color: #ffffff;
}

.esh-contact .esh-container {
  max-width: 800px;
  margin: 0 auto;
}

.esh-contact h2 {
  font-size: 30px;
  margin-bottom: 10px;
  color: #ffffff;
}

.esh-contact p {
  font-size: 16px;
  margin-bottom: 20px;
  opacity: 0.9;
}

.esh-whatsapp-btn {
  display: inline-block;
  background: #25D366;
  color: #ffffff;
  padding: 17px 36px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  font-size: 18px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  transition: all 0.3s ease;
}

.esh-whatsapp-btn:hover {
  transform: translateY(-3px);
}

.home .site-header {
  display: none;
}

.site-info {
  display: none !important;
}


/* ===============================
   Responsive
=================================*/

@media (max-width: 900px) {

  /* Hero compact */
  .esh-hero {
    padding: 30px 15px 10px 15px;
  }

  /* Stack layout */
  .esh-hero-flex {
    flex-direction: column;
    text-align: center;
    gap: 20px;   /* tighter gap */
  }

  /* Heading */
  .esh-hero-text h1 {
    font-size: 24px;
    margin-bottom: 10px;
    line-height: 1.35;
  }

  .esh-hero-text p {
    font-size: 14px;
    margin-bottom: 15px;
  }

  /* Button */
  .esh-download-btn {
    padding: 14px 28px;
    font-size: 15px;
  }

  /* Trust row */
  .esh-trust {
    justify-content: center;
    gap: 12px;
    margin-top: 12px;
  }

  /* Image */
  .esh-app-image {
    width: 280px;   /* slightly smaller for balance */
    margin-top: 5px;
  }

  /* Contact Section */
  .esh-contact {
  padding: 40px 15px;
}

.esh-contact h2 {
  font-size: 22px;
}

  .esh-contact .esh-container {
    padding: 20px; /* reduce heavy padding on mobile */
  }

  .esh-contact p {
    font-size: 13px;
    margin-bottom: 6px;
  }

  .esh-whatsapp-btn {
    margin-top: 8px;
    padding: 12px 22px;
    font-size: 16px;
  }

}