/* =========================================================
   Hi Baby Contact Menu
========================================================= */


/* =========================================================
   Variables
========================================================= */

:root {
  --blue: #08A8DF;
  --blue-dark: #087EA7;

  --pink: #EE83BA;
  --pink-dark: #DF1970;

  --green: #35D15F;
  --green-dark: #098B42;

  --text: #17262C;
  --text-soft: #607078;
  --text-light: #89979D;

  --background: #F8FBFC;

  --border:
    rgba(23, 38, 44, 0.08);

  --shadow-sm:
    0 8px 25px
    rgba(23, 38, 44, 0.055);

  --shadow-md:
    0 16px 45px
    rgba(23, 38, 44, 0.085);

  --radius-md: 22px;
  --radius-lg: 30px;
  --radius-pill: 999px;

  --page-width: 680px;

  --ease-premium:
    cubic-bezier(0.16, 1, 0.3, 1);
}


/* =========================================================
   Reset
========================================================= */

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


html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}


body {
  margin: 0;

  min-height: 100vh;

  overflow-x: hidden;

  font-family:
    "IBM Plex Sans Arabic",
    sans-serif;

  color: var(--text);

  background: var(--background);

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}


a {
  color: inherit;

  text-decoration: none;

  -webkit-tap-highlight-color:
    transparent;
}


img {
  display: block;

  max-width: 100%;
}


/* =========================================================
   Background
========================================================= */

.page-background {
  position: fixed;

  inset: 0;

  z-index: 0;

  overflow: hidden;

  pointer-events: none;

  background:
    radial-gradient(
      circle at 50% -10%,
      rgba(8, 168, 223, 0.07),
      transparent 34%
    ),
    linear-gradient(
      180deg,
      #FFFFFF 0%,
      #F8FBFC 30%,
      #FFFFFF 100%
    );
}


.page-background::before {
  content: "";

  position: absolute;

  inset: 0;

  opacity: 0.28;

  background-image:
    linear-gradient(
      rgba(23, 38, 44, 0.018) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(23, 38, 44, 0.018) 1px,
      transparent 1px
    );

  background-size:
    34px 34px;
}


.fashion-shape {
  position: absolute;

  border-radius:
    52% 48% 60% 40% /
    42% 58% 42% 58%;

  will-change: transform;
}


.fashion-shape-blue {
  width: 280px;
  height: 280px;

  top: -120px;
  right: -120px;

  opacity: 0.13;

  background: var(--blue);

  animation:
    floatBlue
    18s
    ease-in-out
    infinite
    alternate;
}


.fashion-shape-pink {
  width: 300px;
  height: 300px;

  top: 35%;
  left: -190px;

  opacity: 0.10;

  background: var(--pink);

  animation:
    floatPink
    22s
    ease-in-out
    infinite
    alternate;
}


.fashion-shape-green {
  width: 210px;
  height: 210px;

  bottom: -100px;
  right: -110px;

  opacity: 0.07;

  background: var(--green);

  animation:
    floatGreen
    20s
    ease-in-out
    infinite
    alternate;
}


/* =========================================================
   Wrapper
========================================================= */

.site-wrapper {
  position: relative;

  z-index: 1;

  width:
    min(
      100%,
      var(--page-width)
    );

  margin-inline: auto;

  padding:
    max(
      24px,
      env(safe-area-inset-top)
    )
    18px
    max(
      28px,
      env(safe-area-inset-bottom)
    );
}


/* =========================================================
   Hero
========================================================= */

.hero-section {
  display: flex;

  flex-direction: column;

  align-items: center;

  padding:
    24px 8px 5px;

  text-align: center;
}


/* =========================================================
   Logo
========================================================= */

.hero-logo-wrapper {
  position: relative;

  width: 132px;
  height: 132px;

  display: grid;

  place-items: center;

  margin-bottom: 22px;

  isolation: isolate;
}


.hero-logo-wrapper::before {
  content: "";

  position: absolute;

  inset: -12px;

  z-index: -1;

  border:
    1px solid
    rgba(8, 168, 223, 0.22);

  border-radius: 50%;

  box-shadow:
    0 0 0 8px
    rgba(8, 168, 223, 0.028),

    0 0 38px
    rgba(8, 168, 223, 0.085),

    0 0 50px
    rgba(238, 131, 186, 0.065);

  animation:
    logoRingBreath
    4.4s
    ease-in-out
    infinite;
}


.hero-logo-wrapper::after {
  content: "";

  position: absolute;

  inset: -21px;

  z-index: -2;

  border:
    1px dashed
    rgba(238, 131, 186, 0.40);

  border-radius: 50%;

  animation:
    logoOrbit
    18s
    linear
    infinite;
}


.hero-logo {
  position: relative;

  z-index: 2;

  width: 120px;
  height: 120px;

  padding: 5px;

  object-fit: contain;

  border-radius: 50%;

  background: #FFFFFF;

  box-shadow:
    0 18px 48px
    rgba(8, 168, 223, 0.11),

    0 9px 32px
    rgba(238, 131, 186, 0.09);

  animation:
    logoFloating
    5.2s
    ease-in-out
    infinite;
}


/* =========================================================
   Hero Text
========================================================= */

.hero-content {
  width: 100%;
}


.hero-title {
  margin: 0;

  display: flex;

  flex-direction: column;

  align-items: center;

  line-height: 1.15;
}


#store-name {
  display: block;

  font-family:
    "IBM Plex Sans Arabic",
    sans-serif;

  font-size:
    clamp(
      2.05rem,
      9vw,
      3.2rem
    );

  font-weight: 700;

  letter-spacing: -0.03em;

  color: var(--text);
}


.hero-title-en {
  display: block;

  margin-top: 9px;

  font-family:
    "Manrope",
    sans-serif;

  font-size: 0.95rem;

  font-weight: 700;

  letter-spacing: 0.18em;

  text-transform: uppercase;

  color: var(--pink-dark);
}


.hero-description {
  max-width: 560px;

  margin:
    19px
    auto
    0;

  white-space: pre-line;

  font-size: 0.98rem;

  font-weight: 400;

  line-height: 2;

  color: var(--text-soft);
}


.hero-content::after {
  content: "";

  display: block;

  width: 44px;
  height: 3px;

  margin:
    20px
    auto
    0;

  border-radius:
    var(--radius-pill);

  background:
    linear-gradient(
      90deg,
      var(--blue),
      var(--pink)
    );
}


/* =========================================================
   Sections
========================================================= */

.content-section {
  position: relative;

  padding:
    5px 0 24px;
}


.section-heading {
  margin-bottom: 17px;

  text-align: center;
}


.section-eyebrow {
  display: inline-flex;

  margin-bottom: 5px;

  font-family:
    "Manrope",
    "IBM Plex Sans Arabic",
    sans-serif;

  font-size: 0.72rem;

  font-weight: 700;

  letter-spacing: 0.15em;

  color: var(--blue-dark);
}


.section-title {
  margin: 0;

  font-size: 1.42rem;

  font-weight: 700;

  line-height: 1.55;

  color: var(--text);
}


.section-description {
  max-width: 500px;

  margin:
    6px
    auto
    0;

  font-size: 0.9rem;

  font-weight: 400;

  line-height: 1.85;

  color: var(--text-soft);
}


/* =========================================================
   Contact
========================================================= */

.contact-list {
  display: grid;

  grid-template-columns: 1fr;

  gap: 11px;
}


.contact-card {
  position: relative;

  display: flex;

  align-items: center;

  min-height: 86px;

  padding:
    14px 15px;

  overflow: hidden;

  border:
    1px solid
    rgba(53, 209, 95, 0.14);

  border-radius:
    var(--radius-md);

  background:
    rgba(255, 255, 255, 0.95);

  box-shadow:
    var(--shadow-sm);

  transition:
    transform
    0.38s
    var(--ease-premium),

    box-shadow
    0.38s
    var(--ease-premium),

    border-color
    0.35s
    ease;
}


.contact-card::before {
  content: "";

  position: absolute;

  top: 14px;
  right: 0;
  bottom: 14px;

  width: 3px;

  border-radius:
    999px 0 0 999px;

  background:
    linear-gradient(
      to bottom,
      var(--green),
      var(--green-dark)
    );
}


.contact-icon {
  width: 52px;
  height: 52px;

  flex: 0 0 auto;

  display: grid;

  place-items: center;

  margin-left: 13px;

  border-radius: 17px;

  background:
    linear-gradient(
      145deg,
      rgba(53, 209, 95, 0.15),
      rgba(9, 139, 66, 0.08)
    );

  color: var(--green-dark);

  font-size: 1.45rem;

  transition:
    transform
    0.4s
    var(--ease-premium);
}


.contact-content {
  min-width: 0;

  flex: 1;

  text-align: right;
}


.contact-title {
  display: block;

  margin-bottom: 2px;

  font-size: 1rem;

  font-weight: 700;

  color: var(--text);
}


.contact-subtitle {
  display: block;

  margin-bottom: 3px;

  font-size: 0.82rem;

  font-weight: 400;

  line-height: 1.6;

  color: var(--text-soft);
}


.contact-phone {
  display: block;

  direction: ltr;

  text-align: right;

  font-family:
    "Manrope",
    sans-serif;

  font-size: 0.8rem;

  font-weight: 700;

  letter-spacing: 0.015em;

  color: var(--green-dark);
}


.contact-arrow {
  width: 34px;
  height: 34px;

  flex: 0 0 auto;

  display: grid;

  place-items: center;

  margin-right: 8px;

  border-radius: 50%;

  background:
    rgba(53, 209, 95, 0.08);

  color: var(--green-dark);

  font-size: 0.72rem;

  transition:
    transform
    0.38s
    var(--ease-premium);
}


/* =========================================================
   Divider
========================================================= */

.section-divider {
  display: flex;

  align-items: center;

  justify-content: center;

  gap: 9px;

  padding:
    0 16px;
}


.section-divider span {
  width: 44px;
  height: 1px;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(23, 38, 44, 0.13)
    );
}


.section-divider span:last-child {
  transform: scaleX(-1);
}


.section-divider i {
  font-size: 0.36rem;

  color: var(--pink);
}


/* =========================================================
   Social
========================================================= */

.social-list {
  display: grid;

  grid-template-columns: 1fr;

  gap: 10px;
}


.social-card {
  display: flex;

  align-items: center;

  min-height: 78px;

  padding:
    12px 14px;

  border:
    1px solid
    var(--border);

  border-radius:
    var(--radius-md);

  background:
    rgba(255, 255, 255, 0.93);

  box-shadow:
    var(--shadow-sm);

  transition:
    transform
    0.38s
    var(--ease-premium),

    box-shadow
    0.38s
    var(--ease-premium);
}


.social-icon {
  width: 48px;
  height: 48px;

  flex: 0 0 auto;

  display: grid;

  place-items: center;

  margin-left: 13px;

  border-radius: 16px;

  font-size: 1.25rem;

  transition:
    transform
    0.4s
    var(--ease-premium);
}


.social-card.facebook
.social-icon {
  color: #1877F2;

  background:
    rgba(24, 119, 242, 0.09);
}


.social-card.instagram
.social-icon {
  color: #D62976;

  background:
    linear-gradient(
      145deg,
      rgba(253, 29, 29, 0.08),
      rgba(214, 41, 118, 0.12),
      rgba(79, 91, 213, 0.08)
    );
}


.social-content {
  flex: 1;

  min-width: 0;

  text-align: right;
}


.social-name {
  display: block;

  font-family:
    "Manrope",
    sans-serif;

  font-size: 0.93rem;

  font-weight: 700;

  color: var(--text);
}


.social-label {
  display: block;

  margin-top: 2px;

  font-size: 0.81rem;

  font-weight: 400;

  line-height: 1.55;

  color: var(--text-soft);
}


.social-username {
  display: block;

  margin-top: 3px;

  direction: ltr;

  text-align: right;

  font-family:
    "Manrope",
    sans-serif;

  font-size: 0.75rem;

  font-weight: 600;

  color: var(--text-light);
}


.social-arrow {
  width: 34px;
  height: 34px;

  flex: 0 0 auto;

  display: grid;

  place-items: center;

  margin-right: 7px;

  border-radius: 50%;

  background:
    rgba(23, 38, 44, 0.04);

  color: var(--text-soft);

  font-size: 0.7rem;

  transition:
    transform
    0.38s
    var(--ease-premium);
}


/* =========================================================
   Branches
========================================================= */

.branches-list {
  display: grid;

  grid-template-columns: 1fr;

  gap: 10px;
}


.branch-card {
  display: flex;

  align-items: center;

  min-height: 84px;

  padding:
    14px 16px;

  border:
    1px solid
    rgba(8, 168, 223, 0.11);

  border-radius:
    var(--radius-md);

  background:
    rgba(255, 255, 255, 0.92);

  box-shadow:
    var(--shadow-sm);

  transition:
    transform
    0.38s
    var(--ease-premium),

    box-shadow
    0.38s
    var(--ease-premium);
}


.branch-icon {
  width: 50px;
  height: 50px;

  flex: 0 0 auto;

  display: grid;

  place-items: center;

  margin-left: 13px;

  border-radius: 17px;

  background:
    linear-gradient(
      145deg,
      rgba(8, 168, 223, 0.12),
      rgba(238, 131, 186, 0.09)
    );

  color: var(--blue-dark);
}


.branch-content {
  flex: 1;

  min-width: 0;

  text-align: right;
}


.branch-name {
  display: block;

  margin-bottom: 3px;

  font-size: 0.98rem;

  font-weight: 700;

  color: var(--text);
}


.branch-address {
  display: block;

  font-size: 0.84rem;

  font-weight: 400;

  line-height: 1.75;

  color: var(--text-soft);
}


.branch-number {
  min-width: 32px;

  margin-right: 8px;

  font-family:
    "Manrope",
    sans-serif;

  font-size: 0.73rem;

  font-weight: 700;

  text-align: center;

  color: var(--pink-dark);
}


/* =========================================================
   Footer
========================================================= */

.site-footer {
  position: relative;

  margin-top: 40px;

  padding:
    34px 20px 22px;

  border:
    1px solid
    var(--border);

  border-radius:
    var(--radius-lg);

  background:
    rgba(255, 255, 255, 0.80);

  box-shadow:
    var(--shadow-md);

  text-align: center;
}


.site-footer::before {
  content: "";

  position: absolute;

  top: 0;
  left: 50%;

  width: 90px;
  height: 3px;

  transform:
    translateX(-50%);

  background:
    linear-gradient(
      90deg,
      var(--blue),
      var(--pink),
      var(--green)
    );
}


.footer-brand {
  display: flex;

  flex-direction: column;

  align-items: center;
}


.footer-developed {
  font-family:
    "Manrope",
    sans-serif;

  font-size: 0.67rem;

  font-weight: 600;

  letter-spacing: 0.08em;

  color: var(--text-light);
}


.footer-developer-name {
  font-family:
    "Manrope",
    sans-serif;

  font-size: 1.05rem;

  font-weight: 800;

  color: var(--text);
}


.footer-copyright {
  margin:
    13px auto 0;

  font-size: 0.75rem;

  line-height: 1.85;

  color: var(--text-light);
}


.footer-marketing {
  margin-top: 21px;

  padding-top: 20px;

  border-top:
    1px solid
    var(--border);
}


.footer-marketing-text {
  max-width: 470px;

  margin:
    0 auto 15px;

  font-size: 0.82rem;

  font-weight: 500;

  line-height: 1.9;

  color: var(--text-soft);
}


.developer-whatsapp {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 8px;

  min-height: 44px;

  padding:
    9px 17px;

  border:
    1px solid
    rgba(53, 209, 95, 0.18);

  border-radius:
    var(--radius-pill);

  background:
    rgba(53, 209, 95, 0.09);

  color: var(--green-dark);

  font-size: 0.81rem;

  font-weight: 600;

  transition:
    transform
    0.35s
    var(--ease-premium);
}


/* =========================================================
   Entrance Animations
========================================================= */

.reveal-logo {
  opacity: 0;

  transform:
    translate3d(
      0,
      24px,
      0
    );

  filter:
    blur(7px);

  transition:
    opacity
    1s
    var(--ease-premium),

    transform
    1s
    var(--ease-premium),

    filter
    1s
    var(--ease-premium);
}


.reveal-logo.is-visible {
  opacity: 1;

  transform:
    translate3d(
      0,
      0,
      0
    );

  filter: blur(0);
}


.hero-reveal {
  opacity: 0;

  transform:
    translate3d(
      0,
      25px,
      0
    );

  filter:
    blur(7px);

  transition:
    opacity
    1.05s
    var(--ease-premium),

    transform
    1.05s
    var(--ease-premium),

    filter
    1.05s
    var(--ease-premium);
}


.hero-reveal.is-visible {
  opacity: 1;

  transform:
    translate3d(
      0,
      0,
      0
    );

  filter: blur(0);
}


.reveal-heading {
  opacity: 0;

  transform:
    translate3d(
      0,
      22px,
      0
    );

  filter:
    blur(6px);

  transition:
    opacity
    0.9s
    var(--ease-premium),

    transform
    0.9s
    var(--ease-premium),

    filter
    0.9s
    var(--ease-premium);
}


.reveal-heading.is-visible {
  opacity: 1;

  transform:
    translate3d(
      0,
      0,
      0
    );

  filter: blur(0);
}


.reveal-card {
  opacity: 0;

  transform:
    translate3d(
      0,
      32px,
      0
    );

  filter:
    blur(8px);

  will-change:
    opacity,
    transform,
    filter;

  transition:
    opacity
    0.9s
    var(--ease-premium),

    transform
    0.9s
    var(--ease-premium),

    filter
    0.85s
    var(--ease-premium),

    box-shadow
    0.38s
    var(--ease-premium);
}


.reveal-card.is-visible {
  opacity: 1;

  transform:
    translate3d(
      0,
      0,
      0
    );

  filter: blur(0);
}


/* =========================================================
   Hover
========================================================= */

@media (hover: hover) and (pointer: fine) {

  .contact-card:hover,
  .social-card:hover {
    transform:
      translateY(-5px);

    box-shadow:
      var(--shadow-md);
  }


  .branch-card:hover {
    transform:
      translateY(-4px);

    box-shadow:
      var(--shadow-md);
  }


  .contact-card:hover
  .contact-icon {
    transform:
      scale(1.08)
      rotate(-4deg);
  }


  .contact-card:hover
  .contact-arrow {
    transform:
      translateX(-5px);
  }


  .social-card:hover
  .social-icon {
    transform:
      scale(1.08)
      rotate(-3deg);
  }


  .social-card:hover
  .social-arrow {
    transform:
      translate(-4px, -3px);
  }


  .developer-whatsapp:hover {
    transform:
      translateY(-3px);
  }
}


/* =========================================================
   Touch
========================================================= */

.contact-card:active,
.social-card:active {
  transform:
    scale(0.97);

  transition-duration:
    0.12s;
}


.developer-whatsapp:active {
  transform:
    scale(0.96);
}


/* =========================================================
   Logo Animations
========================================================= */

@keyframes logoOrbit {

  from {
    transform:
      rotate(0deg);
  }

  to {
    transform:
      rotate(360deg);
  }
}


@keyframes logoRingBreath {

  0%,
  100% {
    transform:
      scale(1);

    opacity: 0.68;
  }

  50% {
    transform:
      scale(1.065);

    opacity: 1;
  }
}


@keyframes logoFloating {

  0%,
  100% {
    transform:
      translateY(0);
  }

  50% {
    transform:
      translateY(-5px);
  }
}


@keyframes floatBlue {

  from {
    transform:
      translate3d(
        0,
        0,
        0
      );
  }

  to {
    transform:
      translate3d(
        -24px,
        35px,
        0
      )
      rotate(10deg);
  }
}


@keyframes floatPink {

  from {
    transform:
      translate3d(
        0,
        0,
        0
      );
  }

  to {
    transform:
      translate3d(
        40px,
        -35px,
        0
      )
      rotate(-12deg);
  }
}


@keyframes floatGreen {

  from {
    transform:
      translate3d(
        0,
        0,
        0
      );
  }

  to {
    transform:
      translate3d(
        -30px,
        -25px,
        0
      );
  }
}


/* =========================================================
   Tablet
========================================================= */

@media (min-width: 640px) {

  .site-wrapper {
    padding-inline:
      28px;
  }


  .contact-list {
    grid-template-columns:
      repeat(
        2,
        1fr
      );
  }


  .social-list {
    grid-template-columns:
      repeat(
        2,
        1fr
      );
  }


  .social-card:last-child:nth-child(odd) {
    grid-column:
      1 / -1;
  }


  .branches-list {
    grid-template-columns:
      repeat(
        2,
        1fr
      );
  }
}


/* =========================================================
   Desktop
========================================================= */

@media (min-width: 900px) {

  :root {
    --page-width:
      760px;
  }


  .site-wrapper {
    padding-top:
      40px;

    padding-bottom:
      45px;
  }
}


/* =========================================================
   Small Phones
========================================================= */

@media (max-width: 370px) {

  .site-wrapper {
    padding-inline:
      13px;
  }


  #store-name {
    font-size:
      1.9rem;
  }


  .hero-description {
    font-size: 0.93rem;
  }


  .section-description {
    font-size: 0.85rem;
  }


  .contact-subtitle,
  .social-label {
    font-size: 0.78rem;
  }


  .branch-address {
    font-size: 0.8rem;
  }


  .content-section {
    padding-block:
      12px;
  }
}


/* =========================================================
   Reduced Motion
========================================================= */

@media (
  prefers-reduced-motion: reduce
) {

  *,
  *::before,
  *::after {
    animation-duration:
      0.01ms !important;

    transition-duration:
      0.01ms !important;
  }


  .reveal-logo,
  .hero-reveal,
  .reveal-heading,
  .reveal-card {
    opacity: 1;

    transform: none;

    filter: none;
  }
}