body {
  font-family: 'Tajawal', Arial, sans-serif;
  background: #fff;
  margin: 0;
  padding: 0;
  direction: rtl;
  color: #111;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.main-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 80vh;
}

.bw-header {
  text-align: center;
  padding: 2.5rem 1rem 1.5rem 1rem;
  background: #fff;
  border-bottom: 1px solid #eee;
}
.logo {
  width: 150px;
  margin-bottom: 1.2rem;
  filter: none;
}
h1 {
  font-size: 2.3rem;
  margin: 0.5rem 0 0.2rem 0;
  color: #111;
  font-weight: 900;
  letter-spacing: 2px;
}
.subtitle {
  font-size: 1.2rem;
  color: #222;
  margin-bottom: 0.5rem;
  font-weight: 400;
}
.bw-intro {
  text-align: center;
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  background: #fafafa;
  border-bottom: 1px solid #eee;
}
.bw-intro p {
  color: #222;
  font-size: 1.1rem;
  line-height: 2.1;
  margin: 0 auto;
  max-width: 600px;
}
.carousel-section {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 2.5rem 0 2rem 0;
}
.carousel {
  position: relative;
  width: 90vw;
  max-width: 400px;
  overflow: hidden;
  background: #fafafa;
  border-radius: 18px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  border: 1.5px solid #eee;
}
.carousel-images {
  width: 100%;
  display: flex;
  transition: transform 0.5s cubic-bezier(.77,0,.18,1);
}
.carousel-img {
  min-width: 100%;
  max-width: 100%;
  display: none;
  border-radius: 18px;
  border: 2px solid #eee;
  background: #eee;
}
.carousel-img.active {
  display: block;
}
.carousel-btn {
  background: rgba(0,0,0,0.08);
  border: 1.5px solid #111;
  color: #111;
  font-size: 2rem;
  padding: 0.2em 0.6em;
  border-radius: 50%;
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  transition: background 0.2s, border 0.2s, color 0.2s;
}
.carousel-btn:hover {
  background: #111;
  color: #fff;
  border: 1.5px solid #111;
}
.carousel-btn.prev {
  right: 10px;
}
.carousel-btn.next {
  left: 10px;
}
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 100;
  background: #fff;
  border: 2px solid #25d366;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  padding: 10px;
  transition: transform 0.2s, border 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.whatsapp-float:hover {
  transform: scale(1.08);
  border: 2px solid #128c7e;
  background: #fafafa;
}
.whatsapp-float img {
  width: 36px;
  height: 36px;
  display: block;
  filter: none;
}
.cta-section {
  text-align: center;
  margin: 2rem 0 1.5rem 0;
}
.cta-btn {
  display: inline-block;
  background: #111;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  padding: 0.9em 2.2em;
  border-radius: 32px;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  border: none;
  letter-spacing: 1px;
}

.cta-btn-whatsapp {
  display: inline-block;
  background: #019c01;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  padding: 0.9em 2.2em;
  border-radius: 32px;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  border: none;
  letter-spacing: 1px;
}

.cta-btn-whatsapp-icon {
  height: 1.4em;
  vertical-align: middle;
  margin-left: 0.5em;
  margin-right: 0;
  display: inline-block;
}

.cta-btn:hover {
  background: #25d366;
  color: #111;
  box-shadow: 0 4px 16px rgba(37,211,102,0.12);
}

.cta-btn .phone-emoji {
  filter: brightness(0) invert(1);
}

@media (max-width: 600px) {
  /* Header */
  .bw-header {
    padding: 2rem 1rem 1.5rem;
  }
  .logo {
    width: 120px;
  }
  h1 {
    font-size: 1.8rem;
    letter-spacing: 1px;
  }
  .subtitle {
    font-size: 1rem;
  }

  /* Intro */
  .bw-intro {
    padding: 1.5rem 0.5rem;
  }
  .bw-intro p {
    font-size: 1rem;
    line-height: 1.9;
    padding: 0 0.5rem;
  }

  /* CTA */
  .cta-section {
    margin: 1.5rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }
  .cta-btn,
  .cta-btn-whatsapp {
    font-size: 1.1rem;
    padding: 0.8em 1.5em;
    width: calc(100% - 2rem);
    max-width: 320px;
    box-sizing: border-box;
    margin: 0;
  }

  /* Carousel */
  .carousel-section {
    margin: 2rem 0;
    padding: 0 0.5rem;
  }
  .carousel {
    max-width: 100vw;
    width: 100vw;
  }
  .carousel-images {
    width: 100%;
  }
  .carousel-img {
    width: 100%;
    height: auto;
    min-width: 0;
    max-width: 100%;
    border-radius: 12px;
  }
  .carousel-btn {
    font-size: 1.6rem;
  }

  /* WhatsApp Float */
  .whatsapp-float {
    bottom: 10px;
    left: 10px;
    padding: 7px;
  }
  .whatsapp-float img {
    width: 28px;
    height: 28px;
  }

  /* General section padding */
  section {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
} 