
/* ==================================================
   ABOUT PAGE — APADANA INDUSTRIAL GROUP
================================================== */

:root {
  --primary: #22d3ee;
  --primary-dark: #0891b2;
  --blue: #2563eb;
  --purple: #7c3aed;
  --orange: #d97706;

  --dark: #061426;
  --dark-soft: #0b2940;

  --text: #102a43;
  --muted: #40566b;
  --page-bg: #f1f5f7;
  --white: #ffffff;
}

/* ==================================================
   RESET
================================================== */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body.about-page {
  font-family: "Estedad", sans-serif;

  color: var(--text);
  background: var(--page-bg);

  line-height: 1.8;
  overflow-x: hidden;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

button {
  font: inherit;
}

/* ==================================================
   HEADER
================================================== */

header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 9999;

  width: 100%;

  background: rgba(5, 15, 31, 0.9);
  border-bottom: 1px solid rgba(34, 211, 238, 0.14);

  backdrop-filter: blur(22px) saturate(150%);
  -webkit-backdrop-filter: blur(22px) saturate(150%);

  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.22);

  transition:
    background 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

header.scrolled {
  background: rgba(5, 13, 27, 0.97);
  border-bottom-color: rgba(34, 211, 238, 0.2);

  box-shadow: 0 15px 42px rgba(0, 0, 0, 0.34);
}

.nav-wrapper {
  width: 100%;
  max-width: 1240px;
  height: 92px;

  margin: 0 auto;
  padding: 0 34px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 55px;
}

/* ==================================================
   BRAND
================================================== */

.brand-box {
  display: flex;
  align-items: center;

  gap: 15px;
  flex-shrink: 0;
}

.brand-box > a {
  display: block;

  line-height: 0;
  flex-shrink: 0;
  text-decoration: none;
}

.brand-box img {
  width: 62px;
  height: 62px;

  padding: 5px;

  object-fit: contain;

  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(34, 211, 238, 0.2);
  border-radius: 16px;

  box-shadow:
    0 10px 28px rgba(0, 0, 0, 0.32),
    0 0 18px rgba(34, 211, 238, 0.12);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.brand-box:hover img {
  transform: translateY(-2px) scale(1.03);

  box-shadow:
    0 14px 32px rgba(0, 0, 0, 0.38),
    0 0 24px rgba(34, 211, 238, 0.2);
}

.brand-box .title {
  color: #ffffff;

  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.4;

  white-space: nowrap;
}

.brand-box small {
  display: block;

  margin-top: 2px;

  color: #8caabb;

  font-size: 0.72rem;
  font-weight: 500;
  line-height: 1.5;

  letter-spacing: 0.4px;
  white-space: nowrap;
}

/* ==================================================
   DESKTOP MENU
================================================== */

.menu {
  margin: 0;
  padding: 7px 9px;

  display: flex;
  align-items: center;

  gap: 10px;

  list-style: none;

  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 18px;

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    0 12px 28px rgba(0, 0, 0, 0.15);
}

.menu-item {
  position: relative;

  margin: 0;
  padding: 0;

  list-style: none;
}

.menu-item > a {
  position: relative;

  min-width: 92px;
  min-height: 46px;
  padding: 11px 18px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #d7e3eb;

  font-size: 0.94rem;
  font-weight: 600;
  line-height: 1;

  text-decoration: none;

  background: transparent;
  border: 1px solid transparent;
  border-radius: 13px;

  transition:
    color 0.25s ease,
    background 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.menu-item > a::after {
  content: "";

  position: absolute;
  right: 24px;
  bottom: 5px;
  left: 24px;

  height: 2px;

  background:
    linear-gradient(
      90deg,
      transparent,
      var(--primary),
      transparent
    );

  border-radius: 20px;

  opacity: 0;
  transform: scaleX(0);

  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

.menu-item:hover > a {
  color: #ffffff;

  background:
    linear-gradient(
      135deg,
      rgba(34, 211, 238, 0.14),
      rgba(34, 211, 238, 0.05)
    );

  box-shadow:
    0 8px 22px rgba(0, 0, 0, 0.16),
    inset 0 0 0 1px rgba(34, 211, 238, 0.12);

  transform: translateY(-2px);
}

.menu-item:hover > a::after,
.menu-item.active > a::after {
  opacity: 1;
  transform: scaleX(1);
}

.menu-item.active > a {
  color: var(--primary);

  background:
    linear-gradient(
      135deg,
      rgba(34, 211, 238, 0.18),
      rgba(34, 211, 238, 0.07)
    );

  border-color: rgba(34, 211, 238, 0.2);

  box-shadow:
    0 10px 24px rgba(34, 211, 238, 0.08),
    inset 0 0 0 1px rgba(34, 211, 238, 0.08);
}

/* ==================================================
   SUBMENU
================================================== */

.submenu {
  position: absolute;
  top: calc(100% + 16px);
  right: 0;
  z-index: 10000;

  min-width: 250px;
  padding: 10px;

  background:
    linear-gradient(
      145deg,
      rgba(10, 26, 46, 0.99),
      rgba(5, 14, 28, 0.99)
    );

  border: 1px solid rgba(34, 211, 238, 0.14);
  border-radius: 20px;

  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);

  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.035);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transform: translateY(10px) scale(0.98);
  transform-origin: top right;

  transition:
    opacity 0.22s ease,
    visibility 0.22s ease,
    transform 0.22s ease;
}

.submenu::before {
  content: "";

  position: absolute;
  right: 0;
  bottom: 100%;
  left: 0;

  height: 17px;
}

.submenu::after {
  content: "";

  position: absolute;
  top: 0;
  right: 22px;

  width: 68px;
  height: 3px;

  background:
    linear-gradient(
      90deg,
      transparent,
      var(--primary),
      transparent
    );

  border-radius: 20px;
}

.menu-item:hover > .submenu,
.menu-item:focus-within > .submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;

  transform: translateY(0) scale(1);
}

.submenu a {
  min-height: 46px;
  padding: 11px 15px;

  display: flex;
  align-items: center;

  color: #c6d6e0;

  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.7;

  text-decoration: none;

  border-radius: 12px;

  transition:
    color 0.22s ease,
    background 0.22s ease,
    padding 0.22s ease;
}

.submenu a::before {
  content: "";

  width: 6px;
  height: 6px;

  margin-left: 9px;
  flex-shrink: 0;

  background: rgba(34, 211, 238, 0.58);
  border-radius: 50%;
}

.submenu a:hover,
.submenu a.current-sub {
  color: #ffffff;

  padding-right: 20px;

  background:
    linear-gradient(
      135deg,
      rgba(34, 211, 238, 0.16),
      rgba(255, 255, 255, 0.035)
    );
}

/* جلوگیری از بیرون‌زدن آخرین زیرمنو */

.menu > .menu-item:last-child .submenu {
  right: auto;
  left: 0;

  transform-origin: top left;
}

/* ==================================================
   MOBILE BUTTON
================================================== */

#mobMenuBtn {
  position: static;

  width: 45px;
  height: 45px;
  padding: 0;

  display: none;
  align-items: center;
  justify-content: center;

  color: #dce8ef;

  font-size: 20px;

  cursor: pointer;

  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;

  transition:
    color 0.25s ease,
    background 0.25s ease;
}

#mobMenuBtn:hover,
#mobMenuBtn.active {
  color: #ffffff;
  background: rgba(34, 211, 238, 0.14);
}

#mobMenuBtn i {
  transition: transform 0.3s ease;
}

#mobMenuBtn.active i {
  transform: rotate(90deg);
}

/* ==================================================
   MOBILE MENU
================================================== */

#mobileMenu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 99998;

  width: min(88%, 360px);
  height: 100dvh;

  padding: 84px 21px 30px;

  background: rgba(6, 16, 32, 0.99);
  border-left: 1px solid rgba(34, 211, 238, 0.17);

  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);

  box-shadow: -18px 0 55px rgba(0, 0, 0, 0.5);

  overflow-y: auto;

  transform: translateX(105%);

  transition: transform 0.36s ease;
}

#mobileMenu.open {
  transform: translateX(0);
}

#mobileMenu ul {
  margin: 0;
  padding: 0;

  list-style: none;
}

.mob-close-btn {
  position: absolute;
  top: 19px;
  left: 19px;

  width: 42px;
  height: 42px;
  padding: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #dce8ef;

  font-size: 19px;

  cursor: pointer;

  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 11px;

  transition:
    color 0.25s ease,
    background 0.25s ease;
}

.mob-close-btn:hover {
  color: #ffffff;
  background: rgba(34, 211, 238, 0.14);
}

#mobileMenu .menu-item {
  margin: 0 0 6px;
  padding: 0;
}

#mobileMenu .menu-item > a {
  min-width: 0;
  min-height: 48px;

  padding: 11px 13px;

  display: flex;
  align-items: center;
  justify-content: flex-start;

  color: #e0eaf1;

  font-size: 0.98rem;
  font-weight: 600;

  text-decoration: none;

  background: transparent;
  border: 0;
  border-radius: 10px;

  transform: none;
}

#mobileMenu .menu-item > a::after {
  display: none;
}

#mobileMenu .menu-item:hover > a,
#mobileMenu .menu-item.active > a {
  color: #ffffff;

  padding-right: 13px;

  background: rgba(34, 211, 238, 0.09);

  transform: none;
}

/* زیرمنوی موبایل */

#mobileMenu .submenu {
  position: static;

  width: 100%;
  min-width: 0;
  max-width: 100%;

  margin-top: 5px;
  padding: 7px;

  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 13px;

  box-shadow: none;

  opacity: 1;
  visibility: visible;
  pointer-events: auto;

  transform: none;
}

#mobileMenu .submenu::before,
#mobileMenu .submenu::after,
#mobileMenu .submenu a::before {
  display: none;
}

#mobileMenu .submenu a {
  min-height: 39px;
  padding: 8px 11px;

  display: flex;
  align-items: center;

  color: #a9becb;

  font-size: 0.86rem;

  text-decoration: none;
  background: transparent;
}

#mobileMenu .submenu a:hover,
#mobileMenu .submenu a.current-sub {
  color: #ffffff;

  padding-right: 15px;

  background: rgba(34, 211, 238, 0.08);
}

/* ==================================================
   ABOUT HERO
================================================== */

.about-hero {
  position: relative;

  min-height: 560px;
  padding: 185px 20px 115px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;

  background:
    radial-gradient(
      circle at 15% 20%,
      rgba(34, 211, 238, 0.22),
      transparent 28%
    ),
    radial-gradient(
      circle at 85% 80%,
      rgba(139, 92, 246, 0.2),
      transparent 30%
    ),
    linear-gradient(
      135deg,
      #061426 0%,
      #0b2940 50%,
      #101c35 100%
    );

  overflow: hidden;
}

.about-hero::before {
  content: "";

  position: absolute;
  inset: 0;

  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.035) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.035) 1px,
      transparent 1px
    );

  background-size: 45px 45px;
  opacity: 0.65;
}

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

  position: absolute;
  right: -5%;
  bottom: -75px;
  left: -5%;

  height: 140px;

  background: var(--page-bg);

  border-radius:
    50% 50% 0 0 /
    100% 100% 0 0;
}

.about-hero h1 {
  position: relative;
  z-index: 2;

  margin: 0;

  color: transparent;

  font-size: clamp(2.8rem, 6vw, 5.4rem);
  font-weight: 900;
  line-height: 1.25;

  background:
    linear-gradient(
      90deg,
      #ffffff,
      #67e8f9,
      #60a5fa,
      #c084fc,
      #ffffff
    );

  background-size: 240% auto;

  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;

  animation:
    aboutTitleShow 0.9s ease forwards,
    aboutTitleMove 6s linear infinite;
}

.about-hero h1::before {
  content: "گروه صنعتی آپادانا";

  display: block;
  width: fit-content;

  margin: 0 auto 20px;
  padding: 8px 17px;

  color: #baf7ff;
  -webkit-text-fill-color: #baf7ff;

  font-size: 0.8rem;
  font-weight: 700;

  background: rgba(34, 211, 238, 0.1);
  border: 1px solid rgba(103, 232, 249, 0.25);
  border-radius: 30px;

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.about-hero p {
  position: relative;
  z-index: 2;

  max-width: 780px;

  margin: 25px auto 0;

  color: rgba(232, 244, 252, 0.9);

  font-size: clamp(1rem, 1.8vw, 1.25rem);
  line-height: 2.1;

  opacity: 0;
  transform: translateY(25px);

  animation:
    aboutTextShow 0.8s ease forwards 0.3s;
}

/* ==================================================
   ABOUT CONTENT
================================================== */

.container {
  width: min(100%, 1200px);

  margin: 0 auto;
  padding: 0 20px;
}

.about-content {
  position: relative;

  padding: 90px 20px 120px;

  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap: 28px;

  background:
    radial-gradient(
      circle at 5% 15%,
      rgba(34, 211, 238, 0.08),
      transparent 24%
    ),
    radial-gradient(
      circle at 95% 85%,
      rgba(245, 158, 11, 0.08),
      transparent 25%
    );
}

/* کارت معرفی در عرض کامل */

.about-content .about-card:first-child {
  grid-column: 1 / -1;
}

/* ==================================================
   ABOUT CARDS
================================================== */

.about-card {
  --about-color: #06b6d4;
  --about-soft: rgba(6, 182, 212, 0.13);

  position: relative;

  margin: 0;
  padding: 46px 42px 44px;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.98),
      rgba(245, 249, 251, 0.96)
    );

  border: 1px solid rgba(15, 42, 65, 0.08);

  border-radius:
    12px 32px 12px 32px;

  box-shadow:
    0 22px 55px rgba(15, 42, 65, 0.09);

  overflow: hidden;

  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease,
    border-color 0.4s ease;
}

.about-card:nth-child(1) {
  --about-color: #0891b2;
  --about-soft: rgba(8, 145, 178, 0.14);
}

.about-card:nth-child(2) {
  --about-color: #2563eb;
  --about-soft: rgba(37, 99, 235, 0.13);
}

.about-card:nth-child(3) {
  --about-color: #d97706;
  --about-soft: rgba(217, 119, 6, 0.14);
}

.about-card:nth-child(4) {
  --about-color: #7c3aed;
  --about-soft: rgba(124, 58, 237, 0.13);
}

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

  position: absolute;
  top: 25px;
  right: 0;
  bottom: 25px;

  width: 6px;

  background:
    linear-gradient(
      180deg,
      transparent,
      var(--about-color),
      transparent
    );

  border-radius: 8px 0 0 8px;
}

.about-card::after {
  content: "";

  position: absolute;
  top: -90px;
  left: -70px;

  width: 230px;
  height: 230px;

  background:
    radial-gradient(
      circle,
      var(--about-soft),
      transparent 68%
    );

  border-radius: 50%;

  pointer-events: none;

  transition: transform 0.45s ease;
}

.about-card:hover {
  transform: translateY(-10px);

  border-color: var(--about-color);

  box-shadow:
    0 35px 80px rgba(15, 42, 65, 0.15),
    0 0 30px var(--about-soft);
}

.about-card:hover::after {
  transform: scale(1.3);
}

.about-card h2 {
  position: relative;
  z-index: 2;

  margin: 0 0 24px;
  padding-bottom: 16px;

  color: #102a43;

  font-size: clamp(1.6rem, 2.7vw, 2.25rem);
  font-weight: 800;
  line-height: 1.6;

  text-align: right;
}

.about-card h2::after {
  content: "";

  position: absolute;
  right: 0;
  bottom: 0;

  width: 75px;
  height: 4px;

  background:
    linear-gradient(
      90deg,
      var(--about-color),
      transparent
    );

  border-radius: 30px;
}

.about-card p {
  position: relative;
  z-index: 2;

  margin: 0;

  color: var(--muted);

  font-size: 1.02rem;
  line-height: 2.25;

  text-align: justify;
}

.about-card p + p {
  margin-top: 18px;
}

.about-card strong {
  padding: 2px 7px;

  color: var(--about-color);

  background: var(--about-soft);
  border-radius: 7px;
}

/* ==================================================
   FOOTER
================================================== */

.footer {
  position: relative;

  margin-top: 0;
  padding: 105px 30px 35px;

  color: #e8f4ff;

  background: #060b15;
  border-top: 1px solid rgba(34, 211, 238, 0.18);

  overflow: hidden;
}

.footer::before {
  content: "";

  position: absolute;
  top: 0;
  left: 50%;

  width: 520px;
  max-width: 80%;
  height: 4px;

  background:
    linear-gradient(
      90deg,
      transparent,
      var(--primary),
      transparent
    );

  border-radius: 20px;

  transform: translateX(-50%);

  box-shadow:
    0 0 45px rgba(34, 211, 238, 0.55);
}

.footer-grid {
  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap: 70px;

  text-align: right;
}

.footer-col h4 {
  position: relative;

  width: fit-content;

  margin-bottom: 30px;
  padding-bottom: 13px;

  color: var(--primary);

  font-size: 1.45rem;
  font-weight: 800;
}

.footer-col h4::after {
  content: "";

  position: absolute;
  right: 0;
  bottom: 0;

  width: 70px;
  height: 3px;

  background:
    linear-gradient(
      90deg,
      var(--primary),
      transparent
    );

  border-radius: 10px;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 12px;

  color: #b9cbd7;

  font-size: 0.94rem;
  line-height: 1.9;
}

.footer-col a {
  color: #c8e6ff;
  text-decoration: none;

  transition:
    color 0.25s ease,
    transform 0.25s ease;
}

.footer-col a:hover {
  color: var(--primary);

  transform: translateX(-4px);
}

.footer-col iframe {
  display: block;

  width: 100%;
  height: 190px;

  margin-top: 18px;

  border: 1px solid rgba(34, 211, 238, 0.13) !important;
  border-radius: 14px !important;

  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.3);
}

.footer-bottom {
  width: min(100%, 1200px);

  margin: 55px auto 0;
  padding-top: 25px;

  color: #7f9bac;

  font-size: 0.85rem;
  text-align: center;

  border-top:
    1px solid rgba(255, 255, 255, 0.08);
}

/* ==================================================
   WHATSAPP
================================================== */

.whatsapp-float {
  position: fixed;
  bottom: 26px;
  left: 26px;
  z-index: 99999;

  width: 64px;
  height: 64px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #ffffff;

  font-size: 34px;
  text-decoration: none;

  background: #25d366;
  border-radius: 50%;

  box-shadow:
    0 10px 30px rgba(37, 211, 102, 0.42);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.whatsapp-float:hover {
  color: #ffffff;

  transform:
    translateY(-7px)
    scale(1.07);

  box-shadow:
    0 16px 42px rgba(37, 211, 102, 0.6);
}

.whatsapp-tooltip {
  position: absolute;
  left: 78px;

  padding: 9px 13px;

  color: #ffffff;

  font-size: 0.78rem;
  white-space: nowrap;

  background: #07111f;
  border-radius: 10px;

  opacity: 0;
  visibility: hidden;

  transform: translateX(-8px);

  transition:
    opacity 0.25s ease,
    visibility 0.25s ease,
    transform 0.25s ease;
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;

  transform: translateX(0);
}

.whatsapp-pulse {
  position: absolute;
  inset: 0;
  z-index: -1;

  background: rgba(37, 211, 102, 0.38);
  border-radius: 50%;

  animation:
    whatsappPulse 2.4s infinite;
}

/* ==================================================
   ANIMATIONS
================================================== */

@keyframes aboutTitleShow {
  from {
    opacity: 0;

    transform: translateY(35px);
    filter: blur(7px);
  }

  to {
    opacity: 1;

    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes aboutTextShow {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes aboutTitleMove {
  from {
    background-position: 0 center;
  }

  to {
    background-position: 240% center;
  }
}

@keyframes whatsappPulse {
  0% {
    transform: scale(1);
    opacity: 0.65;
  }

  75% {
    transform: scale(1.55);
    opacity: 0;
  }

  100% {
    transform: scale(1.7);
    opacity: 0;
  }
}

/* ==================================================
   RESPONSIVE
================================================== */

@media (max-width: 1200px) {
  .nav-wrapper {
    max-width: 1100px;

    padding: 0 22px;
    gap: 30px;
  }

  .menu {
    gap: 5px;
  }

  .menu-item > a {
    min-width: auto;

    padding: 10px 14px;

    font-size: 0.9rem;
  }

  .brand-box .title {
    font-size: 1.2rem;
  }
}

@media (max-width: 992px) {
  .nav-wrapper {
    height: 78px;
  }

  .menu {
    display: none;
  }

  #mobMenuBtn {
    display: flex;
  }

  .brand-box img {
    width: 52px;
    height: 52px;
  }

  .brand-box .title {
    font-size: 1.15rem;
  }

  .brand-box small {
    font-size: 0.68rem;
  }
}

@media (max-width: 800px) {
  .about-hero {
    min-height: 490px;

    padding:
      150px
      18px
      90px;
  }

  .about-content {
    padding:
      70px
      14px
      85px;

    grid-template-columns: 1fr;

    gap: 20px;
  }

  .about-content .about-card:first-child {
    grid-column: auto;
  }

  .about-card {
    padding:
      34px
      26px
      35px;

    border-radius:
      10px
      24px
      10px
      24px;
  }

  .about-card h2 {
    font-size: 1.5rem;
  }

  .about-card p {
    font-size: 0.94rem;
    line-height: 2.05;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 50px;

    text-align: center;
  }

  .footer-col h4 {
    margin-right: auto;
    margin-left: auto;
  }

  .footer-col h4::after {
    right: 50%;

    transform: translateX(50%);
  }
}

@media (max-width: 500px) {
  .nav-wrapper {
    padding: 0 14px;
  }

  .brand-box {
    gap: 9px;
  }

  .brand-box img {
    width: 47px;
    height: 47px;

    border-radius: 11px;
  }

  .brand-box .title {
    font-size: 0.98rem;
  }

  .brand-box small {
    display: none;
  }

  #mobMenuBtn {
    width: 41px;
    height: 41px;

    font-size: 18px;
  }

  #mobileMenu {
    width: min(90%, 340px);
  }

  .about-hero {
    min-height: 450px;

    padding:
      135px
      16px
      80px;
  }

  .about-hero::after {
    bottom: -55px;
    height: 105px;
  }

  .about-hero h1 {
    font-size: 2.35rem;
  }

  .about-hero h1::before {
    padding: 6px 12px;

    font-size: 0.67rem;
  }

  .about-hero p {
    margin-top: 17px;

    font-size: 0.9rem;
    line-height: 1.9;
  }

  .about-card {
    padding:
      30px
      21px
      31px;
  }

  .footer {
    padding:
      80px
      18px
      30px;
  }

  .whatsapp-float {
    width: 57px;
    height: 57px;

    bottom: 18px;
    left: 18px;

    font-size: 30px;
  }

  .whatsapp-tooltip {
    display: none;
  }
}

/* ==================================================
   REDUCED MOTION
================================================== */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;

    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;

    transition-duration: 0.01ms !important;
  }

  .about-hero h1,
  .about-hero p {
    opacity: 1;
    transform: none;
  }
}
