:root {
  --cream: #fbf6ef;
  --cream-dark: #f1e6da;
  --white: #ffffff;
  --plum: #5a1646;
  --rose: #ad5c7b;
  --gold: #c99431;
  --text: #302833;
  --muted: #6f6570;
  --line: rgba(201, 148, 49, .28);
  --shadow: 0 18px 46px rgba(90, 22, 70, .10);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(173, 92, 123, .12), transparent 28rem),
    radial-gradient(circle at top right, rgba(201, 148, 49, .14), transparent 26rem),
    var(--cream);
  font-family: "Inter", Arial, sans-serif;
}

p { line-height: 1.65; }

[dir="rtl"] {
  font-family: "Noto Naskh Arabic", serif;
}

.site-header {
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--plum);
  text-decoration: none;
}

.brand-mark {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.brand-name {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-name strong {
  font-size: 21px;
  letter-spacing: .01em;
}

.brand-name span {
  color: var(--rose);
  font-size: 22px;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-links a {
  color: var(--plum);
  text-decoration: none;
  font-size: 22px;
  font-weight: 800;
  text-align: center;
  line-height: 1.3;
  padding: 10px 15px;
  border-radius: 999px;
}

.nav-links a:hover {
  background: rgba(255,255,255,.68);
}

.nav-links span {
  color: var(--rose);
  font-size: 22px;
}

.hero {
  max-width: 1180px;
  margin: 0 auto;
  padding: 44px 24px 38px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 42px;
  align-items: center;
}

.eyebrow,
.label {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 21px;
  font-weight: 800;
  letter-spacing: .035em;
}

.hero h1 {
  margin: 0;
  color: var(--plum);
  font-size: clamp(40px, 5vw, 58px);
  line-height: 1.05;
  letter-spacing: -.03em;
}

.hero h2 {
  margin: 2px 0 18px;
  color: var(--rose);
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.35;
}

.hero-copy {
  max-width: 660px;
  padding: 22px;
  border-radius: 24px;
  background: rgba(255,255,255,.65);
  border: 1px solid rgba(255,255,255,.78);
  box-shadow: var(--shadow);
}

.hero-copy p {
  margin: 0 0 12px;
  font-size: 22px;
}

.hero-copy p:last-child {
  margin-bottom: 0;
  color: #5f4d5b;
  font-size: 22px;
}

.button-row {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 12px 20px;
  border-radius: 16px;
  font-size: 21px;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(90, 22, 70, .10);
}

.button span {
  font-size: 16px;
  font-weight: 700;
}

.primary {
  background: var(--plum);
  color: white;
}

.secondary {
  background: var(--white);
  color: var(--plum);
  border: 1px solid rgba(90, 22, 70, .18);
}

.hero-logo-card {
  padding: 28px;
  border-radius: 28px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(255,255,255,.82);
  box-shadow: var(--shadow);
  text-align: center;
}

.full-logo {
  display: block;
  width: min(100%, 360px);
  margin: 0 auto;
}

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 34px 24px;
}

.two-column {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 26px;
  align-items: start;
}

.section-title h2,
.center-title h2,
.contact-card h2 {
  margin: 0 0 4px;
  color: var(--plum);
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.12;
}

.section-title h3,
.center-title h3,
.contact-card h3 {
  margin: 0;
  color: var(--rose);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.45;
  font-weight: 700;
}

.text-card,
.info-card,
.steps,
.contact-card {
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(255,255,255,.82);
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.text-card {
  padding: 26px;
}

.text-card p,
.info-card p,
.contact-card p {
  margin: 0 0 14px;
  font-size: 21px;
  color: var(--muted);
}

.text-card p[dir="rtl"],
.info-card p[dir="rtl"],
.contact-card p[dir="rtl"] {
  font-size: 21px;
  color: #604f5c;
}

.center-title {
  max-width: 720px;
  margin: 0 auto 22px;
  text-align: center;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.info-card {
  padding: 24px;
}

.info-card span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: #f3dfb6;
  color: var(--plum);
  font-size: 16px;
  font-weight: 900;
}

.info-card h3 {
  margin: 0 0 2px;
  color: var(--plum);
  font-size: 23px;
}

.info-card h4 {
  margin: 0 0 12px;
  color: var(--rose);
  font-size: 23px;
  line-height: 1.35;
}

.steps {
  padding: 18px;
  display: grid;
  gap: 12px;
}

.step {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: center;
  padding: 16px;
  border-radius: 18px;
  background: var(--cream);
}

.step b {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--gold);
  color: white;
}

.step h3 {
  margin: 0 0 2px;
  color: var(--plum);
  font-size: 21px;
}

.step p {
  margin: 0;
  color: var(--rose);
  font-size: 21px;
  line-height: 1.4;
}

.contact-sectiona {
  padding-bottom: 46px;
}

.contact-card {
  padding: 28px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 26px;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(255,255,255,.82), rgba(255,255,255,.68)),
    radial-gradient(circle at top right, rgba(201,148,49,.16), transparent 20rem);
}

.contact-buttons {
  display: grid;
  gap: 12px;
}

.site-footer {
  max-width: 1180px;
  margin: 0 auto;
  padding: 24px 24px 38px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--plum);
}

.site-footer img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.site-footer strong {
  font-size: 21px;
}

.site-footer p {
  margin: 4px 0 0;
  font-size: 16px;
}

.site-footer a {
  color: var(--plum);
  font-weight: 700;
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }

  .hero,
  .two-column,
  .card-grid,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 28px;
  }

  .hero-logo-card {
    max-width: 460px;
    margin: 0 auto;
  }
}

@media (max-width: 520px) {
  .site-header,
  .hero,
  .section,
  .site-footer {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero h2 {
    font-size: 30px;
  }

  .button {
    width: 100%;
  }

  .nav-links {
    gap: 6px;
  }

  .nav-links a {
    font-size: 16px;
    padding: 9px 10px;
  }

  .nav-links span {
    font-size: 16px;
  }
}


@media (max-width: 520px) {
  .eyebrow,
  .label {
    font-size: 21px;
    line-height: 1.45;
  }
}


/* Final readability adjustments */
.hero-copy p,
.text-card p,
.info-card p,
.contact-card p {
  font-size: 20px;
  line-height: 1.72;
}

.hero-copy p[dir="rtl"],
.text-card p[dir="rtl"],
.info-card p[dir="rtl"],
.contact-card p[dir="rtl"],
.step p {
  font-size: 22px;
  line-height: 1.75;
}

.button {
  font-size: 18px;
}

.button span {
  font-size: 17px;
}

.label,
.eyebrow {
  font-size: 18px;
  line-height: 1.45;
}

.site-footer p {
  font-size: 17px;
}

@media (max-width: 520px) {
  .hero-copy p,
  .text-card p,
  .info-card p,
  .contact-card p {
    font-size: 18px;
  }

  .hero-copy p[dir="rtl"],
  .text-card p[dir="rtl"],
  .info-card p[dir="rtl"],
  .contact-card p[dir="rtl"],
  .step p {
    font-size: 20px;
  }

  .button {
    font-size: 17px;
  }

  .button span {
    font-size: 16px;
  }
}

/* IMPROVED HOVER EFFECTS */
.button {
  transition: all 0.3s ease;
}

.button:hover {
  transform: translateY(-3px) scale(1.02);
}

.info-card,
.text-card,
.contact-card {
  transition: all 0.3s ease;
}

.info-card:hover,
.text-card:hover,
.contact-card:hover {
  transform: translateY(-6px);
}

.hero {
  padding: 80px 40px;
  gap: 60px;
}

.hero h1 {
  font-size: 58px;
  letter-spacing: -1px;
}

.hero-copy p {
  opacity: 0.85;
  line-height: 1.7;
}

.hero-logo-card {
  border-radius: 25px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.1);
}

.testimonials {
  background: #fff;
  border-radius: 30px;
}

.testimonial-card {
  background: #fff;
  padding: 25px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  font-style: italic;
  text-align: center;
  transition: 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-8px);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.gallery-grid img {
  width: 100%;
  border-radius: 15px;
  transition: 0.4s;
}

.gallery-grid img:hover {
  transform: scale(1.07);
}


.price-card {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: 0.3s;
}

.price-card:hover {
  transform: translateY(-8px);
}

.price-card .price {
  font-size: 36px;
  color: var(--plum);
  font-weight: bold;
}

.price-card.featured {
  border: 2px solid var(--gold);
  transform: scale(1.05);
}


.cta {
  background: linear-gradient(135deg, var(--plum), var(--rose));
  color: white;
  text-align: center;
  padding: 80px 20px;
  border-radius: 30px;
  margin: 40px;
}

.cta h2 {
  margin-bottom: 20px;
}


@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero {
    padding: 50px 20px;
  }

  .hero h1 {
    font-size: 40px;
  }
}

/**************************** Play Store *****************************/

.store-buttons{
  display:flex;
  gap:20px;
  flex-wrap:wrap;
}

.store-btn{
  background:#2d1b69;
  color:white;
  padding:14px 28px;
  border-radius:10px;
  text-decoration:none;
  font-weight:600;
  transition:.3s;
}

.store-btn:hover{
  transform:translateY(-4px);
  opacity:.9;
}

.store-buttons{
    justify-content:center;
  }

.app-content{
  flex:1;
}

.app-content h2{
  font-size:52px;
  font-weight:800;
  margin-bottom:20px;
  color:#111;
}

.app-content h2 span{
  color:#6C4DFF;
}

.app-content p{
  font-size:18px;
  line-height:1.8;
  color:#555;
  margin-bottom:35px;
}

/************* Floating Button *****************/

.whatsapp-floatings{
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 55px;
  height: 55px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  z-index: 999;
  transition: 0.3s;
}

.whatsapp-floatings:hover{
  transform: scale(1.1);
  background: #1ebe5d;
}

/**************Social Icons *******************/


.footer-social {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 15px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #222;
  color: #fff;
  font-size: 18px;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: #e91e63;
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .social-icons {
    justify-content: center;
  }
}

.footer-social a:nth-child(1):hover { background: #1877f2; } /* Facebook */
.footer-social a:nth-child(2):hover { background: #e4405f; } /* Instagram */
.footer-social a:nth-child(3):hover { background: #ff0000; } /* YouTube */
.footer-social a:nth-child(4):hover { background: #25d366; } /* WhatsApp */