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

:root {
  --navy-blue: #003366;
  --dark-blue: #002147;
  --light-blue: #4a90e2;
  --gold: #ffd700;
  --red: #dc143c;
  --green: #00c851;
  --white: #ffffff;
  --light-gray: #f5f7fa;
  --gray: #6c757d;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
.navbar {
  background: var(--navy-blue);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-img {
  height: 80px;
  width: auto;
  border-radius: 50%;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-menu a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: var(--gold);
}

.cta-nav {
  background: var(--green);
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  color: var(--white) !important;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cta-nav:hover {
  background: #00b347;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 200, 81, 0.3);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--white);
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  background: linear-gradient(
    135deg,
    var(--navy-blue) 0%,
    var(--dark-blue) 100%
  );
  color: var(--white);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
  min-height: 80vh;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("/images/hero-funnel.jpeg") center/cover;
  opacity: 0.8;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
  .hero-text {
    max-width: 70%;
  }

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.75rem;
  margin-bottom: 2rem;
  font-weight: 400;
}

.highlight {
  color: var(--gold);
  font-weight: 700;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 2rem 0;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.1rem;
}

.check {
  color: var(--green);
  font-size: 1.5rem;
  font-weight: bold;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  padding: 1rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  display: inline-block;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(to bottom, #4ebd6e 0%, #1c6a3e 100%);
  color: var(--white);
}

.btn-primary:hover {
  background: linear-gradient(to bottom, #1c6a3e 0%,  #4ebd6e 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 200, 81, 0.4);
}

.btn-secondary {
  background: linear-gradient(to bottom, #2db4c1 0%, #0a6779 100%);
  color: var(--white);
}

.btn-secondary:hover {
  background: linear-gradient(to bottom, #0a6779 0%, #2db4c1 100%);
  color: var(--navy-blue);
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.funnel-img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* Why Fails Section */
.why-fails {
  padding: 80px 20px;
  background: var(--light-gray);
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  color: var(--navy-blue);
  margin-bottom: 3rem;
  font-weight: 700;
}

.fail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.fail-card {
  background: linear-gradient(to bottom, #d02e33 0%, #952825 100%);
  color: var(--white);
  padding: .2rem 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 3px solid var(--red);
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fail-card:hover {
  transform: translateY(-5px);
}

/* .fail-card.success {
  border-color: var(--green);
} */

.fail-icon {
  font-size: 3rem;
  color: var(--red);
  display: block;
  margin-bottom: 1rem;
}

.success-icon {
  font-size: 3rem;
  color: var(--green);
  display: block;
  margin-bottom: 1rem;
}

.fail-card h3 {
  font-size: 1.5rem;
  color: var(--white);
}

.fail-message {
  text-align: center;
  font-size: 1.5rem;
  margin-top: 2rem;
  color: var(--navy-blue);
}
/* Growth Engine Section */
.growth-engine {
  padding: 80px 20px;
  background: var(--navy-blue);
  color: var(--white);
}
.container-heading {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.container-heading span{
  height: 2px;
  width: 150px;
  background: white;
  margin: 1rem auto;
}
.growth-engine .section-title {
  color: var(--white);
  /* border-bottom: 3px solid var(--gold); */
  display: inline-block;
  margin: 0;
}
/* ===== Steps Wrapper ===== */
.engine-steps {
  margin-top: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

/* ===== Individual Step ===== */
.engine-step {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.6rem;

  padding: 12px 36px 12px 16px;
  background: linear-gradient(to bottom, #58a4c4, #004d7c);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 500;

  border-radius: 8px 0 0 8px;
}

/* Icon */
.engine-step img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
}

/* Arrow head */
.engine-step::after {
  content: "";
  position: absolute;
  top: 0;
  right: -24px;
  width: 0;
  height: 0;
  border-top: 26px solid transparent;
  border-bottom: 26px solid transparent;
  border-left: 24px solid #58a4c4;
  z-index: 2;
  background: linear-gradient(to bottom, #58a4c4, #004d7c);;
}

/* Overlap fix */
.engine-step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px 0 0 8px;
  z-index: 1;
}

/* Remove arrow from last */
.engine-step.last {
  border-radius: 8px;
  padding-right: 16px;
}

.engine-step.last::after {
  display: none;
}

/* Hover effect */
.engine-step:hover {
  background: linear-gradient(180deg, #1bbf75, #13995d);
}

.engine-step:hover::after {
  border-left-color: #13995d;
}


/* Plans Section */
.plans-section {
  padding: 80px 20px;
  background: var(--light-gray);
}

.plans-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.plan-card {
  background: var(--white);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.plan-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.fire-icon {
  font-size: 2.5rem;
}

.plan-header h2 {
  color: var(--navy-blue);
  font-size: 1.75rem;
}

.plan-features {
  list-style: none;
  margin-bottom: 2rem;
}

.plan-features li {
  padding: 1rem 0;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.1rem;
}

.btn-activate {
  width: 100%;
  background: linear-gradient(135deg, #00c9ff 0%, #92fe9d 100%);
  color: var(--navy-blue);
  font-size: 1.2rem;
  padding: 1.25rem;
}
.btn a{
    text-decoration: none;
    color: white;
}
.btn-activate:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 201, 255, 0.4);
}

.coverage-map {
  position: relative;
  background: var(--white);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.map-img {
  width: 100%;
  height: auto;
  margin-bottom: 2rem;
}

.coverage-stats {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.coverage-stat {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.1rem;
  color: var(--navy-blue);
}

.partner-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin: 3rem 0;
  padding: 2rem;
  background: var(--white);
  border-radius: 15px;
}

.partner-logos img {
  height: 50px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.partner-logos img:hover {
  filter: grayscale(0%);
}

.annual-sales {
  text-align: center;
  font-size: 1.5rem;
  color: var(--navy-blue);
}

/* Success Stories Section */
.success-stories {
  padding: 80px 20px;
  background: var(--white);
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.story-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}

.story-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.video-thumbnail {
  position: relative;
  width: 100%;
  height: 200px;
  background: var(--navy-blue);
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-button {
  position: absolute;
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--navy-blue);
  cursor: pointer;
  transition: all 0.3s ease;
}

.play-button:hover {
  transform: scale(1.1);
  background: var(--white);
}

.story-growth {
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: var(--white);
}

.before {
  color: #ffcccc;
}

.after {
  color: var(--gold);
  font-size: 1.5rem;
}

.arrow {
  font-size: 1.5rem;
}

.period {
  font-size: 0.9rem;
  font-weight: 400;
}

.success-metrics {
  display: flex;
  justify-content: space-around;
  gap: 2rem;
  margin: 3rem 0;
  flex-wrap: wrap;
}

.metric {
  text-align: center;
  font-size: 1.1rem;
  color: var(--navy-blue);
}

.verification-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  padding: 1.5rem;
  background: var(--light-gray);
  border-radius: 15px;
}

.verification-badges img {
  height: 40px;
  width: auto;
}

.verified-sales {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.1rem;
  color: var(--navy-blue);
}

.eco-badge {
  padding: 0.5rem 1rem;
  background: var(--green);
  color: var(--white);
  border-radius: 20px;
  font-weight: 600;
}

/* Footer */
.footer {
  background: var(--dark-blue);
  color: var(--white);
  padding: 3rem 20px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-brand {
  max-width: 400px;
}

.footer-logo {
  height: 50px;
  margin-bottom: 1rem;
}

.footer-contact {
  text-align: right;
}

/* WhatsApp Float Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-icon {
  font-size: 2rem;
}
.whatsapp-logo {
    height: 30px;
    width: 30px;
}
@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 4px 25px rgba(37, 211, 102, 0.7);
  }
}

/* Responsive Design */
@media (max-width: 968px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background: var(--navy-blue);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 2rem 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .hero {
    min-height: 90vh;
    background-attachment: scroll;
  }

  .hero-content {
    padding: 60px 20px;
  }

  .hero-text {
    max-width: 70%;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1.4rem;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .stat-item {
    font-size: 1rem;
  }

  .plans-content {
    grid-template-columns: 1fr;
  }

  .engine-steps {
    justify-content: center;
  }

  .step {
    min-width: 120px;
  }

  .step-icon {
    width: 140px;
    height: 140px;
  }

  .step-icon img {
    width: 110px;
    height: 110px;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 80vh;
    background-attachment: scroll;
    background-position: center center;
  }

  .logo-img {
    height: 60px;
  }

  .hero-content {
    padding: 50px 20px;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .stat-item {
    font-size: 0.95rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .fail-grid {
    grid-template-columns: 1fr;
  }

  .stories-grid {
    grid-template-columns: 1fr;
  }

  .success-metrics {
    flex-direction: column;
    text-align: center;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-contact {
    text-align: center;
  }

  .step-icon {
    width: 120px;
    height: 120px;
  }

  .step-icon img {
    width: 90px;
    height: 90px;
  }
}

@media (max-width: 480px) {
      .logo-img {
    height: 50px;
  }
  .hero {
    padding: 0;
    min-height: 40vh;
    background-attachment: scroll;
    background-position: center top;
  }

  .hero::before {
    background: url("/images/hero-funnel.png") center/cover;
    max-height: 40vh;
  }

  .hero-content {
    padding: 40px 15px;
  }

  .hero-title {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
  }

  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .hero-stats {
    gap: 0.5rem;
    margin: 1.5rem 0;
    display: none;
  }

  .stat-item {
    font-size: 0.85rem;
  }

  .check {
    font-size: 1.2rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 0.75rem;
  }

  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    width: 100%;
    text-align: center;
  }

  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-logo {
    font-size: 1.5rem;
  }

  .step-icon {
    width: 100px;
    height: 100px;
  }

  .step-icon img {
    width: 70px;
    height: 70px;
  }

  .step h3 {
    font-size: 0.95rem;
  }
}

/* Video Modal Styles */
.video-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  animation: fadeIn 0.3s ease;
}

.video-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-modal-content {
  position: relative;
  width: auto;
  max-width: 500px;
  max-height: 90vh;
  background: #000;
  border-radius: 10px;
  overflow: hidden;
  animation: slideIn 0.4s ease;
}

.video-modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10000;
  transition: all 0.3s ease;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.video-modal-close:hover,
.video-modal-close:focus {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

#modalVideo {
  width: auto;
  height: auto;
  max-width: 500px;
  max-height: 90vh;
  display: block;
  outline: none;
}

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

@keyframes slideIn {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Mobile responsive for video modal */
@media (max-width: 768px) {
  .video-modal-content {
    width: 95%;
    max-width: none;
  }

  .video-modal-close {
    top: -35px;
    font-size: 35px;
  }
}

@media (max-width: 480px) {
  .video-modal-close {
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    font-size: 30px;
  }
}