/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Montserrat', sans-serif;
}

/* HEADER BASE */
.navbar {
  background: #fff;
  border-bottom: 1px solid #eee;
  z-index: 1000;
}

.header-container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}
.logo img {
  height: 40px;
}
.logo span {
  font-size: 1.4rem;
  font-weight: 700;
  color: #264F7C;
}

/* NAVIGATION */
#mobileMenu {
  display: flex;
  gap: 2rem;
}
#mobileMenu a {
  text-decoration: none;
  color: #41424D;
  font-weight: 500;
}

/* HAMBURGER ICON */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
}
.menu-toggle span {
  height: 3px;
  width: 25px;
  background: #264F7C;
  border-radius: 2px;
  display: block;
}

/* --- RESPONSIVE HEADER FIX --- */
@media (max-width: 992x) {
  .menu-toggle {
    display: flex;
    z-index: 20px;
  }

  #mobileMenu {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 250px;
    flex-direction: column;
    padding: 5rem 2rem;
    gap: 1.5rem;
    background: #fff;
    box-shadow: -2px 0 12px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
  }

  #mobileMenu.active {
    right: 0;
  }
}



/* Remove conflicting declaration */
/* DO NOT repeat or override .header-container at 992px again */


/* Hero */
.hero {
  background: #FDFBF3;
  height: auto;
  display: flex;
  align-items: center;
  padding: 4rem 1rem;
}
.hero-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}
.hero-content {
  max-width: 50%;
  min-width: 300px;
}
.hero-content h1 {
  font-size: 72px;
  font-weight: 800;
  line-height: 1.1;
}
.hero-content span {
  color: #EF5151;
}
.hero-content p {
  margin-top: 1.5rem;
  font-size: 18px;
  color: #6D7280;
}
.hero-btn {
  margin-top: 2rem;
  padding: 1rem 2rem;
  font-size: 1rem;
  background: white;
  color: #EF5151;
  border: 2px solid #EF5151;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(239, 81, 81, 0.2);
  transition: all 0.3s ease;
}
.hero-btn:hover {
  background: #EF5151;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(239, 81, 81, 0.3);
}

.hero-illustration {
  position: relative;
  width: 40%;
}
.hero-illustration img {
  max-width: 100%;
  height: auto;
  display: block;
}
.hero-illustration .laptop {
  position: relative;
  z-index: 1;
  width: 100%;
}
.hero-illustration .mobile {
  position: absolute;
  right: -10%;
  bottom: -20px;
  width: 60%;
  z-index: 2;
}

.why {
  padding: 4rem 0;
  background: #fff;
  text-align: center;
}

.section-title {
  font-size: 2rem;
  font-weight: 800;
  color: #1F2937;
}

.why-cards {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
}

.card img {
  margin-bottom: 1rem;
}

.card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1F2937;
  margin-bottom: 0.5rem;
}

.card p {
  font-size: 0.95rem;
  color: #6B7280;
  line-height: 1.5;
}

.container {
  max-width: 1500px;
  padding: 0 3rem;
  margin: 0 auto;
}

.features {
  background: #F5F5F5;
  padding: 1rem 0 6rem 0; /* Top: 6rem, Bottom: 2rem */
  text-align: center;
}


.features .section-title {
  font-size: 2rem;
  font-weight: 800;
  padding: 6rem 0 3rem 0; /* Top: 6rem, Bottom: 2rem */
  color: #1F2937;
  margin-bottom: 2rem;
}

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

.feature-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
}

.feature-card img {
  width: 48px;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1F2937;
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.95rem;
  color: #6B7280;
  line-height: 1.5;
}

.container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 3rem;
}

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

.cta {
  background: #EF5151; /* WhatsApp-style background */
  color: #1f1f1f;
  text-align: center;
  padding: 4rem 2rem;
}

.cta h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.cta-sub {
  font-size: 1rem;
  margin-bottom: 2.5rem;
  color: #ffffff;
}

.chat-screen {
  background: #FFFFFF;
  padding: 2rem 1rem;
  border-radius: 12px;
  max-width: 600px;
  margin: 0 auto 2rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.chat {
  max-width: 75%;
  padding: 0.75rem 1rem;
  border-radius: 16px;
  font-size: 0.95rem;
  line-height: 1.4;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.chat.left {
  align-self: flex-start;
  background: #FFFFFF;
  color: #000;
  border-top-left-radius: 0;
}

.chat.right {
  align-self: flex-end;
  background: #DCF8C6; /* WhatsApp green */
  color: #000;
  border-top-right-radius: 0;
}

.demo-btn {
  margin-top: 1rem;
  padding: 1rem 2rem;
  font-size: 1rem;
  border-radius: 999px;
  border: none;
  background-color: #2B3D70;
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
}

.demo-btn:hover {
  background-color: #1F2E55;
}


.contact {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  padding: 5rem 3rem;
  max-width: 1500px;
  margin: auto;
  background: #fff;
}

.contact-form, .contact-info {
  flex: 1;
  min-width: 320px;
}

.contact-form h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #2B3D70;
}

.contact-sub {
  color: #555;
  margin-bottom: 2rem;
  font-size: 1rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 1rem;
}

.contact-form button {
  padding: 1rem 2rem;
  background: #2B3D70;
  color: #fff;
  border: none;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  
}

.contact-form button:hover {
  background: #1a2b55;
}

.contact-info {
  background: #FFF8EB;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
}

.contact-info h3 {
  margin-bottom: 1rem;
  color: #333;
  font-size: 1.5rem;
}

.contact-info ul {
  list-style: none;
  padding: 0;
}

.contact-info li {
  margin-bottom: 1.5rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #333;
}




/* Additional Mobile & Tablet Optimization */
    @media (max-width: 992px) {
      .navbar nav {
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem;
      }

      .hero-inner {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1rem;
      }

      .hero-content, .hero-illustration {
        max-width: 100%;
        width: 100%;
      }

      .hero-content h1 {
        font-size: 48px;
      }

      .hero-illustration {
        margin-top: 2rem;
      }
    }

    @media (max-width: 768px) {
      .why-cards {
        grid-template-columns: 1fr;
      }

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

      .footer-container {
        flex-direction: column;
        gap: 2rem;
      }

      .contact {
        flex-direction: column;
        padding: 2rem 1rem;
      }

      .chat-screen {
        padding: 1rem;
      }

      .hero-content h1 {
        font-size: 40px;
      }

      .hero-content p {
        font-size: 16px;
      }

      .hero-btn {
        width: 100%;
      }
    }

    @media (max-width: 480px) {
      .hero-content h1 {
        font-size: 32px;
      }

      .hero-content p {
        font-size: 14px;
      }

      .demo-btn, .hero-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
      }

      .chat {
        font-size: 0.85rem;
      }
    }

    /* BASE HEADER STYLES */

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

    .menu-toggle span {
      height: 3px;
      width: 25px;
      background: #264F7C;
      border-radius: 3px;
      display: block;
    }

    #mobileMenu {
      display: flex;
      gap: 2rem;
    }

    #mobileMenu a {
      text-decoration: none;
      color: #41424D;
      font-weight: 500;
    }

    @media (max-width: 992px) {
      .menu-toggle {
        display: flex;
      }

      #mobileMenu {
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -100%;
        width: 250px;
        height: 100vh;
        background: white;
        padding: 5rem 2rem;
        gap: 1.5rem;
        transition: right 0.3s ease;
        box-shadow: -2px 0 12px rgba(0, 0, 0, 0.1);
      }

      #mobileMenu.active {
        right: 0;
      }
    }

          
.footer {
  background-color: #264F7C; /* Navy */
  color: #FDFBF3; /* Creamy Off-White */
  padding: 2rem 1rem;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}


.footer-brand .logo {
  width: 200px;
  height: auto;
  margin-bottom: 0.5rem;
}

.footer-brand h2 {
  color: #EF5151; /* Coral Red */
  font-weight: 600;
  font-size: 24px;
  margin: 0.5rem 0;
}

.footer-brand p {
  color: #FDFBF3;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  font-weight: 400;
  text-align: center;
}


.footer-nav {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.footer-nav a {
  color: #FDFBF3;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.footer-nav a:hover {
  color: #EF5151;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.footer-social a {
  color: #FDFBF3;
  font-size: 1.2rem;
  transition: color 0.3s;
}

.footer-social a:hover {
  color: #EF5151;
}

.footer-bottom {
  border-top: 1px solid #FDFBF3;
  margin-top: 1rem;
  padding-top: 1rem;
  font-size: 0.85rem;
  font-weight: 400;
}
