/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  transition: 0.3s ease;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* ================= COLOR PALETTE ================= */
:root {
  --biz-blue-dark: #1d6fb7;
  --biz-blue: #0d63c5;
  --biz-blue-light: rgba(13, 99, 197, 0.12);
  --text-dark: #1a1a1a;
  --text-light: #555;
  --border-light: rgba(0, 0, 0, 0.06);
}

/* ================= TYPOGRAPHY ================= */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Jost", sans-serif;
  font-weight: 600;
  color: var(--biz-blue-dark);
}

p,
a,
li,
span {
  font-family: "Inter", sans-serif;
  color: var(--text-light);
}

/* ================= HEADER ================= */
.biz-header {
  background: #ffffff;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-light);
  position: sticky;
  top: 0;
  z-index: 999;
  transition: 0.3s ease;
}

/* Logo */
.biz-logo img {
  height: 62px;
  object-fit: contain;
}

/* Navigation */
.biz-nav .biz-nav-links {
  display: flex;
  gap: 32px;
}

.biz-nav .biz-nav-links li a {
  font-family: "Jost", sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--text-dark);
  position: relative;
  letter-spacing: 0.3px;
}

/* Underline hover */
.biz-nav .biz-nav-links li a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  left: 0;
  bottom: -5px;
  background: linear-gradient(90deg, var(--biz-blue-dark), var(--biz-blue));
  transition: 0.3s ease;
}

.biz-nav .biz-nav-links li a:hover::after {
  width: 100%;
}

.biz-nav .biz-nav-links li a:hover {
  color: var(--biz-blue);
}

/* ================= Buy Now Button (WA360 Style) ================= */
.buy-btn {
  background: linear-gradient(135deg, var(--biz-blue-dark), var(--biz-blue));
  padding: 11px 30px;
  color: #ffffff;
  border-radius: 50px;
  font-family: "Jost", sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.4px;
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
  box-shadow: 0 6px 18px rgba(13, 99, 197, 0.28);
}

/* Shine animation */
.buy-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.35),
    transparent
  );
  transition: 0.6s;
}

.buy-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(13, 99, 197, 0.45);
  color: #ffffff;
}

.buy-btn:hover::before {
  left: 100%;
}

/* ================= Hamburger ================= */
.hamburger {
  display: none;
  font-size: 28px;
  color: var(--biz-blue);
  cursor: pointer;
}

/* ================= MOBILE MENU ================= */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 75%;
  height: 100%;
  background: #ffffff;
  padding: 30px;
  transition: 0.4s ease;
  z-index: 9999;
}

.close-btn {
  font-size: 34px;
  color: var(--biz-blue);
  cursor: pointer;
}

.mobile-links {
  margin-top: 30px;
}

.mobile-links li {
  margin-bottom: 18px;
}

.mobile-links a {
  font-family: "Jost", sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--text-dark);
}

.mobile-links a:hover {
  color: var(--biz-blue);
}

/* Mobile Buy Button */
.mobile-buy-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--biz-blue-dark), var(--biz-blue));
  color: #ffffff;
  padding: 12px 26px;
  border-radius: 50px;
  font-family: "Jost", sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.4px;
  box-shadow: 0 6px 18px rgba(13, 99, 197, 0.3);
  transition: 0.3s ease;
}

.mobile-buy-btn:hover {
  transform: scale(1.04);
}

/* ================= HERO ================= */
.hero-section {
  padding: 90px 0 70px;
  background: linear-gradient(
    135deg,
    rgba(13, 99, 197, 0.08),
    rgba(13, 99, 197, 0.02)
  );
  overflow: hidden;
}

/* Text */
.hero-content h1 {
  font-size: 44px;
  line-height: 1.25;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.hero-content h1 span {
  color: var(--biz-blue);
}

.hero-content p {
  font-size: 16px;
  max-width: 540px;
  color: #444;
}

.hero-subtext {
  font-size: 15px;
  color: #555;
  margin-top: 8px;
}

/* Buttons */
.hero-buttons {
  margin-top: 30px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* Buy Now – SAME STYLE AS HEADER */
.hero-btn.primary-btn {
  background: linear-gradient(135deg, var(--biz-blue-dark), var(--biz-blue));
  color: #ffffff;
  padding: 13px 32px;
  border-radius: 50px;
  font-family: "Jost", sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.4px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(13, 99, 197, 0.35);
  transition: all 0.35s ease;
}

/* Shine effect */
.hero-btn.primary-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: 0.6s;
}

.hero-btn.primary-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(13, 99, 197, 0.45);
}

.hero-btn.primary-btn:hover::before {
  left: 100%;
}

/* View Demo – classy outline hover */
.hero-btn.outline-btn {
  border: 2px solid var(--biz-blue);
  color: var(--biz-blue);
  padding: 13px 32px;
  border-radius: 50px;
  font-family: "Jost", sans-serif;
  font-size: 16px;
  font-weight: 600;
  background: transparent;
  transition: all 0.35s ease;
}

.hero-btn.outline-btn:hover {
  background: var(--biz-blue);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(13, 99, 197, 0.3);
}

/* ================= HERO IMAGE ================= */
.hero-image img {
  max-width: 580px; /* increased */
  width: 100%;
  filter: drop-shadow(0 14px 30px rgba(0, 0, 0, 0.2));
  transition: transform 0.4s ease;
}

.hero-image img:hover {
  transform: scale(1.02);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .hero-section {
    padding: 70px 0;
  }

  .hero-content h1 {
    font-size: 34px;
  }

  .hero-image img {
    max-width: 460px;
    margin-top: 30px;
  }
}

/* ================= ABOUT ================= */
.about-section {
  padding: 60px 0;
}

/* Title */
.about-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--biz-blue-dark);
  margin-bottom: 14px;
}

/* Text */
.about-text {
  font-size: 15px;
  color: #444;
  margin-bottom: 12px;
  max-width: 520px;
  line-height: 1.6;
}

/* Image wrapper fix */
.about-section .col-lg-6 {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Logo image – balanced */
.about-img {
  max-width: 260px;
  width: 100%;
  margin-left: auto; /* keeps image on right */
  margin-right: auto;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.12));
}

/* ===== Desktop (SIDE BY SIDE) ===== */
@media (min-width: 992px) {
  .about-img {
    max-width: 240px;
  }
}

/* ===== Mobile (IMAGE BELOW CONTENT) ===== */
@media (max-width: 991px) {
  .about-section {
    padding: 50px 0;
  }

  .about-img {
    margin-top: 24px;
    max-width: 220px;
  }
}

/* ================= WORKFLOW ================= */
.workflow-section {
  padding: 65px 0;
  background: #f7faff;
}

.workflow-box {
  background: #fff;
  padding: 36px;
  border-radius: 14px;
  margin-bottom: 32px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
}

.workflow-title {
  font-size: 24px;
  margin-bottom: 10px;
}

/* ================= FEATURES ================= */
.features-section {
  padding: 65px 0;
}

.feature-box {
  background: #fff;
  border: 1px solid var(--border-light);
  padding: 26px;
  border-radius: 12px;
  height: 100%;
  transition: 0.35s ease;
}

.feature-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 26px rgba(13, 99, 197, 0.15);
  border-color: var(--biz-blue);
}

.feature-icon {
  width: 52px;
  height: 52px;
  background: var(--biz-blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--biz-blue);
  border-radius: 10px;
  margin-bottom: 14px;
  font-size: 22px;
}

.feature-box h4 {
  font-size: 18px;
  color: var(--text-dark);
  margin-bottom: 6px;
}

/* ================= PRICING SECTION ================= */
.pricing-section {
  padding: 70px 0;
  background: #ffffff;
}

/* Video */
.pricing-video-wrap {
  display: flex;
  justify-content: center;
}

.pricing-video {
  height: 600px;
  max-width: 100%;
  border-radius: 14px;
  object-fit: cover;
  object-position: top center;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
  width: 500px;
}

/* Pricing Card */
.pricing-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 38px 34px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
  transition: 0.35s ease;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(13, 99, 197, 0.2);
}

.pricing-card h3 {
  font-size: 26px;
  color: var(--biz-blue-dark);
  margin-bottom: 6px;
}

.pricing-sub {
  font-size: 15px;
  color: #555;
  margin-bottom: 22px;
}

/* Feature List */
.pricing-features {
  padding: 0;
  margin: 0 0 26px;
}

.pricing-features li {
  font-size: 15px;
  color: #333;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.pricing-features i {
  color: #28a745; /* professional green */
  margin-right: 10px;
  font-size: 18px;
}

.pricing-card:hover .pricing-features i {
  color: #1fc46b;
}

/* Button */
.pricing-btn {
  display: inline-block;
  width: 100%;
  text-align: center;
  background: linear-gradient(45deg, var(--biz-blue-dark), var(--biz-blue));
  color: #fff;
  padding: 14px 0;
  font-size: 18px;
  font-weight: 600;
  border-radius: 30px;
  transition: 0.3s ease;
}

.pricing-btn:hover {
  background: linear-gradient(45deg, var(--biz-blue), var(--biz-blue-dark));
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 992px) {
  .pricing-video {
    height: 420px;
  }

  .pricing-card {
    padding: 30px 26px;
  }
}

@media (max-width: 576px) {
  .pricing-video {
    height: 320px;
  }
}

/* ================= FOOTER ================= */
.biz-footer {
  background: #0d1b2a;
  padding: 50px 0 30px;
  color: #a9b4d0;
}

/* About text */
.footer-about p,
.footer-bottom p {
  color: #a9b4d0;
}

/* Logo */
.footer-logo {
  height: 68px;
  margin-bottom: 10px;
}

/* Titles */
.footer-links h6,
.footer-contact h6 {
  color: #ffffff;
  font-size: 14px;
  margin-bottom: 10px;
}

/* Lists */
.footer-links ul li {
  margin-bottom: 6px;
}

/* Links */
.footer-links a,
.footer-contact a {
  font-size: 14px;
  color: #a9b4d0;
  display: flex;
  align-items: center;
  transition: 0.3s ease;
}

/* Hover effect */
.footer-links a:hover,
.footer-contact a:hover {
  color: #ffffff;
}

/* Icons */
.footer-links i,
.footer-contact i {
  margin-right: 6px;
  color: #a9b4d0;
  transition: 0.3s ease;
}

/* Icon hover */
.footer-links a:hover i,
.footer-contact a:hover i {
  color: #ffffff;
}

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid #2c3450;
  margin-top: 20px;
  padding-top: 12px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* Footer bottom span link color */
.footer-bottom-sub span {
  color: #a9b4d0;
  transition: 0.3s ease;
  cursor: pointer;
}

/* Hover effect */
.footer-bottom-sub span:hover {
  color: #ffffff;
}

/* Footer About text width control */
.footer-about p {
  max-width: 380px; /* reduced for better readability */
  line-height: 1.6;
}

/* Desktop only fine-tune */
@media (min-width: 1200px) {
  .footer-about p {
    max-width: 360px;
  }
}

/* ================= SCROLL REVEAL ================= */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: 0.9s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ================= WHATSAPP ================= */
.floating-whatsapp {
  position: fixed;
  bottom: 22px;
  right: 22px;
  background: #25d366;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  z-index: 99999;
  color: #fff;
  
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .biz-nav,
  .buy-btn {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .hero-image img {
    margin-top: 28px;
  }

  .footer-bottom {
    text-align: center;
    gap: 6px;
  }
}
