* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #ffffff;
  color: #101010;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}


/* =========================
   NAVBAR
========================= */

.navbar {
  width: 100%;
  height: 90px;
  padding: 0 8%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(20px);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 5px 25px rgba(0,0,0,.05);
}

.logo {
  width: 55px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand h2 {
  color: #0b8f3a;
  font-size: 30px;
}

.brand span {
  color: #777;
  font-size: 13px;
}

.nav-links {
  display: flex;
  gap: 35px;
  align-items: center;
}

.nav-links a {
  font-weight: 600;
  transition: .3s;
}

.nav-links a:hover {
  color: #139947;
}

.download-btn {
  background: linear-gradient(135deg,#0b8f3a,#2ad66c);
  color: white;
  padding: 16px 28px;
  border-radius: 18px;
  font-weight: 700;
  box-shadow: 0 20px 40px rgba(19,153,71,.2);
}

#menu-toggle {
  display: none;
}

.menu-btn {
  display: none;
  font-size: 30px;
  cursor: pointer;
}

/* =========================
   HERO SECTION
========================= */

.hero {
  min-height: 100vh;
  padding: 110px 8%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;

  background:
    radial-gradient(circle at left bottom,#e8fff2 0%,transparent 40%),
    linear-gradient(90deg,#fff,#f8fff9);
}

.hero-left {
  flex: 1;
}

.hero-badge {
  color: #139947;
  font-weight: 800;
  letter-spacing: 4px;
}

.hero-left h1 {
  font-size: 80px;
  line-height: 1.1;
  margin-top: 20px;
}

.hero-left h1 span {
  color: #139947;
}

.hero-left p {
  margin-top: 30px;
  color: #666;
  line-height: 1.8;
  font-size: 22px;
  max-width: 650px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  margin-top: 45px;
}

.play-btn {
  background: linear-gradient(135deg,#0b8f3a,#2ad66c);
  color: white;
  padding: 18px 34px;
  border-radius: 20px;
  font-weight: 700;
  box-shadow: 0 20px 40px rgba(19,153,71,.2);
}

.outline-btn {
  border: 2px solid #0b8f3a;
  color: #0b8f3a;
  padding: 18px 34px;
  border-radius: 20px;
  font-weight: 700;
}


/* =========================
   HERO PHONE
========================= */

.hero-right {
  flex: 1;
  display: flex;
  justify-content: center;
  position: relative;
}

.hero-circle {
  width: 520px;
  height: 520px;
  background: linear-gradient(135deg,#0b8f3a,#5bdd88);
  border-radius: 50%;
  position: absolute;
  top: 40px;
  z-index: 1;
}

.hero-phone {
  width: 400px;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 35px 60px rgba(0,0,0,.25));
  animation: floatPhone 4s ease infinite;
}

@keyframes floatPhone {

  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }

  100% {
    transform: translateY(0);
  }

}

/* =========================
   COMMON SECTIONS
========================= */

.section {
  padding: 110px 8%;
}

.light {
  background: #f8fff9;
}

.section-title {
  text-align: center;
  margin-bottom: 70px;
}

.section-title h2 {
  font-size: 55px;
  color: #111;
}

.section-title p {
  margin-top: 15px;
  color: #777;
  font-size: 19px;
}


/* =========================
   SERVICES
========================= */

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.service-card {
  background: white;
  padding: 35px 25px;
  border-radius: 28px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0,0,0,.07);
  border: 1px solid #e9f5ee;
  transition: .35s ease;
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 55px rgba(19,153,71,.15);
}

.service-card img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  margin: 0 auto 25px;
  padding: 16px;
  border-radius: 24px;
  background: #f0fff5;
}

.service-card h3 {
  font-size: 24px;
  margin-bottom: 12px;
  color: #111;
}

.service-card p {
  color: #666;
  line-height: 1.7;
  font-size: 16px;
}


/* =========================
   HOW MUSAADA WORKS
========================= */

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.step-card {
  background: white;
  padding: 45px 35px;
  border-radius: 30px;
  text-align: center;
  border: 1px solid #e6f3ea;
  box-shadow: 0 15px 40px rgba(0,0,0,.05);
  transition: .35s ease;
}

.step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 55px rgba(19,153,71,.12);
}

.step-card span {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg,#0b8f3a,#2ad66c);
  color: white;
  display: grid;
  place-items: center;
  margin: 0 auto 25px;
  border-radius: 50%;
  font-size: 30px;
  font-weight: 900;
}

.step-card h3 {
  font-size: 26px;
  margin-bottom: 12px;
}

.step-card p {
  color: #666;
  line-height: 1.7;
}


/* =========================
   WORKER SECTION
========================= */

.worker-section {
  padding: 40px 8% 110px;
  background: #ffffff;
}

.worker-box {
  background:
    radial-gradient(circle at left bottom,#dfffe9 0%,transparent 35%),
    linear-gradient(135deg,#f4fff7,#ffffff);
  border-radius: 40px;
  padding: 65px;
  display: grid;
  grid-template-columns: 280px 1fr auto;
  align-items: center;
  gap: 50px;
  box-shadow: 0 25px 70px rgba(0,0,0,.07);
  border: 1px solid #e6f3ea;
}

.worker-img {
  width: 260px;
  border-radius: 30px;
  filter: drop-shadow(0 25px 35px rgba(0,0,0,.15));
}

.worker-content h2 {
  font-size: 48px;
  color: #111;
}

.worker-content h3 {
  color: #139947;
  font-size: 34px;
  margin: 8px 0 18px;
}

.worker-content p {
  color: #555;
  line-height: 1.7;
  font-size: 18px;
  margin-bottom: 22px;
}

.worker-content ul {
  list-style: none;
}

.worker-content li {
  margin-bottom: 12px;
  font-size: 17px;
  font-weight: 600;
}

.join-btn {
  background: linear-gradient(135deg,#0b8f3a,#2ad66c);
  color: white;
  padding: 18px 34px;
  border-radius: 20px;
  font-weight: 800;
  box-shadow: 0 20px 40px rgba(19,153,71,.25);
  white-space: nowrap;
}


/* =========================
   FAQ SECTION
========================= */

.faq-section {
  padding: 110px 8%;
  background: #f8fff9;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 20px;
}

.faq-card {
  background: white;
  padding: 30px 35px;
  border-radius: 24px;
  border: 1px solid #e6f3ea;
  box-shadow: 0 12px 35px rgba(0,0,0,.05);
  transition: .3s ease;
}

.faq-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(19,153,71,.12);
}

.faq-card h3 {
  font-size: 22px;
  color: #0b8f3a;
  margin-bottom: 10px;
}

.faq-card p {
  color: #666;
  font-size: 17px;
  line-height: 1.7;
}


/* =========================
   FOOTER
========================= */

.footer {
  background: #07140c;
  color: white;
  padding: 80px 8%;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 45px;
}

.footer-logo {
  width: 70px;
  margin-bottom: 18px;
}

.footer h2 {
  color: #28c660;
  font-size: 32px;
  margin-bottom: 10px;
}

.footer h4 {
  font-size: 20px;
  margin-bottom: 20px;
}

.footer a {
  display: block;
  color: #d7d7d7;
  margin-bottom: 12px;
  transition: .3s;
}

.footer a:hover {
  color: #28c660;
}

.footer p {
  color: #d7d7d7;
  line-height: 1.8;
}

.copyright {
  background: #0b8f3a;
  color: white;
  text-align: center;
  padding: 18px;
  font-size: 15px;
}





/* =========================
   MOBILE RESPONSIVE
========================= */

@media (max-width: 1100px) {

  .hero {
    flex-direction: column;
    text-align: center;
    padding: 90px 6%;
  }

  .hero-left p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .worker-box {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .worker-img {
    margin: 0 auto;
  }

  .join-btn {
    justify-self: center;
  }

  .footer {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 850px) {

  .navbar {
    height: 82px;
    padding: 0 5%;
  }

  .logo {
    width: 45px;
  }

  .brand h2 {
    font-size: 23px;
  }

  .brand span {
    display: none;
  }

  .menu-btn {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 82px;
    left: 0;
    width: 100%;
    background: white;
    display: none;
    flex-direction: column;
    padding: 28px;
    box-shadow: 0 20px 40px rgba(0,0,0,.08);
  }

  #menu-toggle:checked ~ .nav-links {
    display: flex;
  }

  .download-btn {
    display: none;
  }

  .hero-left h1 {
    font-size: 50px;
  }

  .hero-left p {
    font-size: 18px;
  }

  .hero-circle {
    width: 330px;
    height: 330px;
    top: 35px;
  }

  .hero-phone {
    width: 300px;
  }

  .section,
  .faq-section {
    padding: 80px 6%;
  }

  .section-title h2 {
    font-size: 38px;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .worker-section {
    padding: 30px 6% 80px;
  }

  .worker-box {
    padding: 40px 25px;
  }
}

@media (max-width: 520px) {

  .hero-left h1 {
    font-size: 40px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .play-btn,
  .outline-btn {
    width: 100%;
    text-align: center;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: 32px 22px;
  }

  .worker-content h2 {
    font-size: 34px;
  }

  .worker-content h3 {
    font-size: 26px;
  }

  .worker-img {
    width: 220px;
  }

  .footer {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-logo {
    margin-left: auto;
    margin-right: auto;
  }
}


/* =========================
   CONTACT PAGE
========================= */

.page-section{
    min-height:100vh;
    background:#f8fff9;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    padding:80px 20px;
}

.page-section h1{
    font-size:60px;
    color:#08765f;
    margin-bottom:20px;
    text-align:center;
}

.page-section > p{
    color:#555;
    font-size:20px;
    margin-bottom:50px;
    text-align:center;
}

.contact-card{
    width:100%;
    max-width:700px;
    background:white;
    padding:50px;
    border-radius:30px;
    box-shadow:0 20px 50px rgba(0,0,0,.08);
}

.contact-card h3{
    color:#08765f;
    margin-top:25px;
    margin-bottom:10px;
    font-size:28px;
}

.contact-card p{
    color:#555;
    font-size:20px;
    line-height:1.8;
}


/* =========================
   FLOATING WHATSAPP
========================= */

.whatsapp-btn {
  position: fixed;
  right: 25px;
  bottom: 25px;
  width: 62px;
  height: 62px;
  background: #25d366;
  color: white;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 30px;
  z-index: 2000;
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.35);
  transition: 0.3s ease;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
}


/* =========================
   DOWNLOAD SECTION
========================= */

.download-section {
  padding: 100px 8%;
  background: #ffffff;
}

.download-box {
  background: linear-gradient(135deg, #08765f, #13a35f);
  border-radius: 40px;
  padding: 70px;
  display: grid;
  grid-template-columns: 1fr 300px;
  align-items: center;
  gap: 50px;
  color: white;
  overflow: hidden;
}

.download-box h2 {
  font-size: 50px;
  margin-bottom: 20px;
}

.download-box p {
  font-size: 20px;
  line-height: 1.8;
  max-width: 650px;
  opacity: 0.95;
}

.download-actions {
  display: flex;
  gap: 18px;
  margin-top: 35px;
}

.store-badge {
  background: #111;
  color: white;
  padding: 16px 28px;
  border-radius: 16px;
  font-weight: 800;
}

.download-box img {
  width: 260px;
  filter: drop-shadow(0 30px 45px rgba(0,0,0,.3));
}

@media (max-width: 850px) {
  .download-box {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 45px 25px;
  }

  .download-actions {
    justify-content: center;
    flex-direction: column;
  }

  .download-box h2 {
    font-size: 36px;
  }

  .download-box img {
    margin: 0 auto;
  }
}



/* =========================
   SOCIAL ICONS
========================= */

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}

.social-links a {
  width: 42px;
  height: 42px;
  background: rgba(255,255,255,.1);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: white;
  font-weight: 800;
}

.social-links a:hover {
  background: #28c660;
}


/* =========================
   ANIMATIONS
========================= */

.service-card,
.step-card,
.faq-card,
.contact-card,
.legal-card,
.worker-box {
    transition: .35s ease;
}

.service-card:hover,
.step-card:hover,
.faq-card:hover,
.contact-card:hover,
.legal-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(19,153,71,.15);
}

.join-btn,
.download-btn,
.play-btn,
.outline-btn,
.store-badge {
    transition: .3s ease;
}

.join-btn:hover,
.download-btn:hover,
.play-btn:hover,
.store-badge:hover {
    transform: translateY(-3px);
}