/*==================================================
MOBILE
Breakpoint : 768px
==================================================*/

@media (max-width: 768px) {
  /*==============================
    NAVBAR
    ==============================*/

  .logo {
    flex: 1;
    min-width: 0;
    gap: 10px;
  }

  .logo img {
    width: 44px;
    flex-shrink: 0;
  }

  .logo-text {
    min-width: 0;
  }

  .logo-title {
    font-size: 1.5rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .logo-subtitle {
    font-size: 0.8rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .nav-right {
    flex-shrink: 0;
    display: flex;
    align-items: center;
  }

  .nav-right .btn {
    display: none !important;
  }

  .menu-toggle {
    display: flex;
  }

  .hero-scroll {
    bottom: 10px;
  }

  .navbar {
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .nav-menu {
    position: fixed;

    top: 88px;
    left: 0;
    right: 0;

    display: flex;
    flex-direction: column;

    gap: 0;

    padding: 24px;

    background: #fff;

    box-shadow: var(--shadow-mobile-menu);

    opacity: 0;
    visibility: hidden;

    transform: translateY(-20px);

    pointer-events: none;

    transition:
      opacity 0.25s ease,
      transform 0.25s ease,
      visibility 0.25s;
  }

  .parent-icon {
    width: 120px;
    height: 120px;
    margin-bottom: 50px;
    margin-top: 20px;
  }

  .parent-icon img {
    width: 100px;
    height: 100px;

    transform: scale(4);
    transform-origin: center;
  }

  .nav-menu.show {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);

    pointer-events: auto;
  }

  .nav-menu a {
    width: 100%;

    padding: 16px 0;

    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }

  .nav-menu a:last-child {
    border-bottom: none;
  }

  /*==============================
    SPACING
    ==============================*/

  section {
    padding: 80px 0;
  }

  .container {
    width: min(100%, calc(100% - 32px));
  }

  /*==============================
    TYPOGRAPHY
    ==============================*/

  h1 {
    font-size: 2.3rem;
  }

  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.35rem;
  }

  /*==============================
    BUTTON
    ==============================*/

  .hero-buttons,
  .cta-buttons {
    flex-direction: column;

    gap: 16px;
  }

  .hero-buttons .btn,
  .cta-buttons .btn {
    width: 100%;
  }

  /*==============================
    CARD
    ==============================*/

  .card {
    padding: 60px 28px 28px;
  }

  .card-icon {
    left: 28px;
  }

  /*==============================
    CTA
    ==============================*/

  .cta {
    text-align: center;
  }

  .cta-quote .arabic {
    font-size: 1.5rem;
  }

  /*==============================
    FOOTER
    ==============================*/

  .footer {
    padding-top: 72px;
  }

  .footer-brand,
  .footer-links,
  .footer-contact {
    text-align: center;
  }

  .footer-brand {
    align-items: center;
  }

  .footer-logo {
    margin-inline: auto;
  }

  .footer-grid {
    gap: 40px;
  }
}
