/* ========================================================
   JAYEEK.PS - EXACT BRAND AESTHETIC
   Exact Background: #0000C4 (From Logo Image)
   Brand Accent: #FB6519 (From Logo Image)
   WhatsApp Green: #25D366
   No Boxes / Single Viewport / Centered Middle Marketing Content
   ======================================================== */

:root {
  --brand-blue: #0000C4;
  --brand-orange: #FB6519;
  --brand-white: #ffffff;
  --wa-green: #25D366;
  --wa-green-hover: #2ee071;
  --font-ar: 'IBM Plex Sans Arabic', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-en: 'Outfit', sans-serif;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  width: 100%;
  height: 100%;
  height: 100dvh;
  max-height: 100dvh;
  overflow: hidden;
  font-family: var(--font-ar);
  background-color: var(--brand-blue);
  color: var(--brand-white);
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-font-smoothing: antialiased;
}

/* Page Content */
.page-content {
  width: 100%;
  max-width: 700px;
  height: 100%;
  padding: clamp(20px, 4vh, 44px) clamp(24px, 4vw, 40px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: clamp(20px, 3.4vh, 32px);
}

/* Logo */
.logo-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  margin-bottom: clamp(6px, 1.2vh, 14px);
}

.brand-logo {
  width: clamp(96px, 15vh, 130px);
  height: clamp(96px, 15vh, 130px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  border: 4px solid #ffffff;
  object-fit: cover;
  display: block;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
}

/* Middle Marketing Content (Centered with generous breathing room) */
.middle-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2.8vh, 24px);
  width: 100%;
}

/* Sale Badge */
.sale-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  font-size: clamp(0.92rem, 1.7vh, 1.05rem);
  font-weight: 600;
  padding: 8px 22px;
  border-radius: 9999px;
  letter-spacing: 0.3px;
}

/* Domain Name */
.domain-area {
  display: flex;
  justify-content: center;
  align-items: center;
  direction: ltr;
  margin: clamp(4px, 0.8vh, 8px) 0;
}

.domain-name {
  font-family: var(--font-en);
  font-size: clamp(3.2rem, 7.2vh, 4.6rem);
  font-weight: 900;
  letter-spacing: -1px;
  color: var(--brand-white);
  line-height: 1;
}

.domain-tld {
  color: var(--brand-orange);
}

/* Respectful Message */
.brand-message {
  font-size: clamp(1.12rem, 2.3vh, 1.32rem);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.95);
  max-width: 580px;
  font-weight: 500;
  text-wrap: balance;
  margin: clamp(4px, 1vh, 10px) 0;
}

/* Price Section */
.price-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-top: clamp(4px, 0.8vh, 10px);
}

.price-label {
  font-size: clamp(0.88rem, 1.6vh, 1rem);
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
}

.price-figure {
  display: flex;
  align-items: baseline;
  gap: 8px;
  direction: ltr;
  font-family: var(--font-en);
}

.price-number {
  font-size: clamp(3rem, 6.4vh, 4.4rem);
  font-weight: 900;
  color: var(--brand-white);
  line-height: 1;
}

.price-currency {
  font-size: clamp(1.15rem, 2.3vh, 1.4rem);
  font-weight: 800;
  color: var(--brand-orange);
}

.price-status {
  font-size: clamp(0.9rem, 1.7vh, 1.05rem);
  color: #7affb5;
  font-weight: 700;
}

/* WhatsApp CTA */
.cta-wrapper {
  width: 100%;
  max-width: 420px;
  display: flex;
  justify-content: center;
  flex-shrink: 0;
  margin-top: clamp(6px, 1.5vh, 16px);
}

.whatsapp-btn {
  width: 100%;
  background: var(--wa-green);
  color: #ffffff;
  text-decoration: none;
  font-family: var(--font-ar);
  font-size: clamp(1.1rem, 2.2vh, 1.28rem);
  font-weight: 700;
  padding: clamp(15px, 2.5vh, 19px) 32px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.whatsapp-btn:hover {
  background: var(--wa-green-hover);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.45);
}

.wa-icon {
  width: clamp(24px, 3.2vh, 28px);
  height: clamp(24px, 3.2vh, 28px);
  flex-shrink: 0;
  fill: #ffffff;
  display: block;
}

/* ========================================================
   MOBILE: Logo Top, WhatsApp Bottom, Marketing Centered
   ======================================================== */
@media (max-width: 640px) {
  .page-content {
    justify-content: space-between;
    padding-top: calc(16px + env(safe-area-inset-top, 0px));
    padding-bottom: 96px; /* Reserve space for sticky button */
    gap: 0;
  }

  .logo-wrapper {
    margin-top: 6px;
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .brand-logo {
    width: 95px;
    height: 95px;
    border-width: 3.5px;
  }

  /* Perfectly Centered Marketing Content between Logo & Bottom Bar */
  .middle-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 8px 0;
  }

  .domain-name {
    font-size: 2.7rem;
  }

  .brand-message {
    font-size: 1.05rem;
    line-height: 1.6;
    padding: 0 6px;
  }

  .price-number {
    font-size: 2.9rem;
  }

  .price-status {
    font-size: 0.92rem;
  }

  /* Fixed Bottom Bar on Mobile */
  .cta-wrapper {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    padding: 12px 18px calc(12px + env(safe-area-inset-bottom, 0px));
    background: linear-gradient(
      180deg, 
      rgba(0, 0, 196, 0) 0%, 
      rgba(0, 0, 196, 0.88) 25%, 
      var(--brand-blue) 75%
    );
    z-index: 100;
  }

  .whatsapp-btn {
    font-size: 1.12rem;
    padding: 14px 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
  }
}
