/* =========================================================
   JUST WHAT U NEED - MAIN STYLESHEET
   File: assets/css/style.css
   ========================================================= */

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: #1f2937;
  background: #ffffff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* GLOBAL */
.container {
  width: 92%;
  max-width: 1180px;
  margin: 0 auto;
}

.narrow {
  max-width: 850px;
  text-align: center;
}

.section {
  padding: 80px 0;
}

.light-section {
  background: #f5f7fb;
}

.section-heading {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 45px;
}

.section-heading h2,
.intro-section h2,
.mall-feature-content h2,
.business-grid h2,
.final-cta h2 {
  font-size: 2.3rem;
  color: #0b1f3a;
  margin-bottom: 15px;
  line-height: 1.2;
}

.section-heading p,
.intro-section p,
.mall-feature-content p,
.business-grid p,
.final-cta p {
  font-size: 1.05rem;
  color: #4b5563;
}

.section-label,
.hero-label {
  display: inline-block;
  background: #e8f1ff;
  color: #0b5ed7;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* HEADER */
.site-header {
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  max-height: 58px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.main-nav a {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1f2937;
  transition: 0.25s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: #0b5ed7;
}

.menu-toggle {
  display: none;
  background: #0b1f3a;
  color: #ffffff;
  border: none;
  font-size: 1.6rem;
  padding: 7px 12px;
  border-radius: 8px;
  cursor: pointer;
}

/* HERO */
.hero {
  min-height: 680px;
  background:
    linear-gradient(rgba(11, 31, 58, 0.78), rgba(11, 31, 58, 0.78)),
    url("../images/hero/home-hero.jpg");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.hero-overlay {
  min-height: 680px;
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 760px;
}

.hero-content h1 {
  font-size: 4rem;
  line-height: 1.08;
  margin-bottom: 22px;
}

.hero-content p {
  font-size: 1.25rem;
  max-width: 650px;
  color: #e5e7eb;
  margin-bottom: 32px;
}

.hero-label {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.98rem;
  transition: 0.25s ease;
  cursor: pointer;
}

.btn-primary {
  background: #0b5ed7;
  color: #ffffff;
  border: 2px solid #0b5ed7;
}

.btn-primary:hover {
  background: #084bb0;
  border-color: #084bb0;
  transform: translateY(-2px);
}

.btn-secondary {
  background: #ffffff;
  color: #0b1f3a;
  border: 2px solid #ffffff;
}

.btn-secondary:hover {
  background: transparent;
  color: #ffffff;
  transform: translateY(-2px);
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* INTRO */
.intro-section p {
  margin-bottom: 14px;
}

/* STEPS */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.step-card {
  background: #ffffff;
  padding: 30px 24px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  transition: 0.25s ease;
}

.step-card:hover {
  transform: translateY(-6px);
}

.step-number {
  width: 42px;
  height: 42px;
  background: #0b5ed7;
  color: #ffffff;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.step-card h3 {
  color: #0b1f3a;
  font-size: 1.18rem;
  margin-bottom: 10px;
}

.step-card p {
  color: #4b5563;
  font-size: 0.96rem;
}

/* FEATURED MALL */
.featured-mall {
  background: #ffffff;
}

.mall-feature-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 45px;
  align-items: center;
}

.mall-feature-content p {
  margin-bottom: 20px;
}

.check-list {
  margin: 22px 0 28px;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  color: #374151;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #0b5ed7;
  font-weight: 900;
}

.mall-feature-box {
  background: #0b1f3a;
  color: #ffffff;
  padding: 36px;
  border-radius: 22px;
  box-shadow: 0 20px 45px rgba(11, 31, 58, 0.25);
}

.mall-feature-box h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}

.area-tags span {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 9px 14px;
  border-radius: 999px;
  font-weight: 600;
}

.mall-feature-box p {
  color: #d1d5db;
}

/* BENEFITS */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.benefit-card {
  background: #ffffff;
  padding: 32px 26px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.benefit-card h3 {
  color: #0b1f3a;
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.benefit-card p {
  color: #4b5563;
}

/* BUSINESS SECTION */
.business-section {
  background: #ffffff;
}

.business-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 45px;
  align-items: center;
}

.business-grid p {
  margin-bottom: 16px;
}

.price-highlight {
  background: #f5f7fb;
  border-left: 5px solid #0b5ed7;
  padding: 18px 22px;
  margin: 24px 0;
  border-radius: 12px;
}

.price-highlight strong {
  display: block;
  font-size: 2rem;
  color: #0b1f3a;
  line-height: 1.1;
}

.price-highlight span {
  color: #4b5563;
  font-weight: 600;
}

.business-card {
  background: #f5f7fb;
  padding: 36px;
  border-radius: 22px;
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.08);
}

.business-card h3 {
  font-size: 1.55rem;
  color: #0b1f3a;
  margin-bottom: 14px;
}

/* FINAL CTA */
.final-cta {
  background:
    linear-gradient(rgba(11, 31, 58, 0.9), rgba(11, 31, 58, 0.9)),
    url("../images/hero/home-hero.jpg");
  background-size: cover;
  background-position: center;
  text-align: center;
  color: #ffffff;
  padding: 85px 0;
}

.final-cta h2 {
  color: #ffffff;
}

.final-cta p {
  color: #e5e7eb;
  max-width: 720px;
  margin: 0 auto 30px;
}

.final-cta .hero-buttons {
  justify-content: center;
}

/* FOOTER */
.site-footer {
  background: #061426;
  color: #ffffff;
  padding-top: 65px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.9fr 1.1fr;
  gap: 35px;
  padding-bottom: 45px;
}

.site-footer h3,
.site-footer h4 {
  margin-bottom: 16px;
  color: #ffffff;
}

.site-footer p,
.site-footer a {
  color: #cbd5e1;
  font-size: 0.95rem;
}

.site-footer a {
  display: block;
  margin-bottom: 9px;
  transition: 0.25s ease;
}

.site-footer a:hover {
  color: #ffffff;
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
  padding: 18px 0;
}

.footer-bottom p {
  color: #94a3b8;
}

/* WHATSAPP FLOAT */
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  background: #25d366;
  color: #ffffff;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.35);
  z-index: 999;
  transition: 0.25s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  background: #1ebe5d;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .steps-grid,
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mall-feature-grid,
  .business-grid {
    grid-template-columns: 1fr;
  }

  .hero-content h1 {
    font-size: 3.1rem;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .header-container {
    min-height: 72px;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 72px;
    left: 0;
    width: 100%;
    background: #ffffff;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 12px 5%;
    border-bottom: 1px solid #e5e7eb;
    display: none;
  }

  .main-nav.show {
    display: flex;
  }

  .main-nav a {
    width: 100%;
    padding: 13px 0;
    border-bottom: 1px solid #f1f5f9;
  }

  .hero,
  .hero-overlay {
    min-height: 590px;
  }

  .hero-content h1 {
    font-size: 2.6rem;
  }

  .hero-content p {
    font-size: 1.08rem;
  }

  .section {
    padding: 60px 0;
  }

  .section-heading h2,
  .intro-section h2,
  .mall-feature-content h2,
  .business-grid h2,
  .final-cta h2 {
    font-size: 2rem;
  }

  .steps-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .business-card,
  .mall-feature-box {
    padding: 28px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    padding: 12px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .logo img {
    max-height: 48px;
  }

  .hero,
  .hero-overlay {
    min-height: 560px;
  }

  .hero-content h1 {
    font-size: 2.25rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .price-highlight strong {
    font-size: 1.65rem;
  }
}