
    :root {
      --primary: #0891b2;
      --primary-dark: #075985;
      --secondary: #22c55e;
      --dark: #0f172a;
      --muted: #64748b;
      --light: #f8fafc;
      --soft-blue: #e0f2fe;
      --white: #ffffff;
      --border: #dbeafe;
      --shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
      --radius-xl: 34px;
      --radius-lg: 24px;
      --radius-md: 16px;
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: "Vazirmatn", sans-serif;
      background: #f8fbff;
      color: var(--dark);
      line-height: 1.8;
      overflow-x: hidden;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

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

    .container {
      width: min(1180px, calc(100% - 36px));
      margin: 0 auto;
    }

    .topbar {
      background: linear-gradient(90deg, #082f49, #0f3d5e);
      color: #e0f2fe;
      font-size: 14px;
      padding: 10px 0;
    }

    .topbar .container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      flex-wrap: wrap;
    }

    .topbar span {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      white-space: nowrap;
    }

    .navbar {
      background: rgba(255, 255, 255, 0.82);
      backdrop-filter: blur(18px);
      border-bottom: 1px solid rgba(191, 219, 254, 0.7);
      position: sticky;
      top: 0;
      z-index: 20;
    }

    .nav-inner {
      min-height: 82px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .brand-logo {
      width: 54px;
      height: 54px;
      border-radius: 18px;
      display: grid;
      place-items: center;
      background: linear-gradient(135deg, #06b6d4, #075985);
      color: white;
      box-shadow: 0 16px 34px rgba(8, 145, 178, 0.28);
      font-weight: 900;
      font-size: 21px;
    }

    .brand strong {
      display: block;
      font-size: 20px;
      color: #0f172a;
      line-height: 1.3;
    }

    .brand small {
      color: var(--muted);
      font-weight: 600;
      font-size: 13px;
    }

    .menu {
      display: flex;
      align-items: center;
      gap: 8px;
      list-style: none;
    }

    .menu a {
      padding: 10px 15px;
      border-radius: 999px;
      color: #334155;
      font-weight: 700;
      transition: 0.25s ease;
    }

    .menu a:hover,
    .menu a.active {
      background: #e0f2fe;
      color: #0369a1;
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .btn {
      border: 0;
      cursor: pointer;
      font-family: inherit;
      font-weight: 800;
      border-radius: 999px;
      padding: 13px 22px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      transition: 0.25s ease;
      white-space: nowrap;
    }

    .btn-primary {
      color: white;
      background: linear-gradient(135deg, #06b6d4, #0891b2);
      box-shadow: 0 18px 34px rgba(8, 145, 178, 0.28);
    }

    .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 22px 45px rgba(8, 145, 178, 0.38);
    }

    .btn-outline {
      color: #0369a1;
      background: #ffffff;
      border: 1px solid #bae6fd;
    }

    .btn-outline:hover {
      background: #f0f9ff;
      transform: translateY(-3px);
    }

    .mobile-toggle {
      display: none;
      width: 46px;
      height: 46px;
      border-radius: 15px;
      border: 1px solid #bae6fd;
      background: #ffffff;
      color: #075985;
      font-size: 24px;
      cursor: pointer;
    }

    .hero {
      position: relative;
      padding: 82px 0 70px;
      overflow: hidden;
      background:
        radial-gradient(circle at top right, rgba(34, 211, 238, 0.22), transparent 34%),
        radial-gradient(circle at bottom left, rgba(14, 165, 233, 0.18), transparent 38%),
        linear-gradient(180deg, #f0fbff 0%, #ffffff 100%);
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(14, 165, 233, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(14, 165, 233, 0.05) 1px, transparent 1px);
      background-size: 44px 44px;
      mask-image: linear-gradient(to bottom, black, transparent 85%);
      pointer-events: none;
    }

    .hero-grid {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 1.02fr 0.98fr;
      align-items: center;
      gap: 54px;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 10px 17px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.86);
      border: 1px solid #bae6fd;
      color: #0369a1;
      font-weight: 900;
      box-shadow: 0 12px 30px rgba(14, 165, 233, 0.08);
      margin-bottom: 24px;
    }

    .eyebrow i {
      width: 10px;
      height: 10px;
      background: #14b8a6;
      border-radius: 50%;
      box-shadow: 0 0 0 6px rgba(20, 184, 166, 0.12);
    }

    .hero h1 {
      font-size: clamp(38px, 5vw, 68px);
      line-height: 1.25;
      letter-spacing: -1.8px;
      color: #07111f;
      margin-bottom: 24px;
      font-weight: 950;
    }

    .hero h1 span {
      color: #0891b2;
      position: relative;
      white-space: nowrap;
    }

    .hero h1 span::after {
      content: "";
      position: absolute;
      right: 0;
      left: 0;
      bottom: 2px;
      height: 13px;
      background: rgba(34, 211, 238, 0.24);
      z-index: -1;
      border-radius: 999px;
    }

    .hero p {
      color: #475569;
      font-size: 18px;
      max-width: 650px;
      margin-bottom: 30px;
    }

    .hero-actions {
      display: flex;
      gap: 14px;
      align-items: center;
      flex-wrap: wrap;
      margin-bottom: 34px;
    }

    .trust-row {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
      max-width: 650px;
    }

    .trust-card {
      background: rgba(255, 255, 255, 0.86);
      border: 1px solid rgba(186, 230, 253, 0.9);
      border-radius: 22px;
      padding: 17px;
      box-shadow: 0 16px 34px rgba(15, 23, 42, 0.06);
    }

    .trust-card strong {
      display: block;
      font-size: 24px;
      color: #075985;
      line-height: 1.2;
    }

    .trust-card small {
      color: #64748b;
      font-weight: 700;
    }

    .visual {
      position: relative;
      min-height: 560px;
    }

    .photo-card {
      position: absolute;
      overflow: hidden;
      border-radius: 32px;
      box-shadow: var(--shadow);
      border: 8px solid rgba(255, 255, 255, 0.88);
      background: white;
    }

    .photo-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .photo-main {
      width: 72%;
      height: 390px;
      right: 0;
      top: 64px;
    }

    .photo-small {
      width: 45%;
      height: 230px;
      left: 0;
      top: 0;
      border-radius: 28px;
    }

    .photo-bottom {
      width: 50%;
      height: 225px;
      left: 20px;
      bottom: 12px;
      border-radius: 28px;
    }

    .doctor-badge {
      position: absolute;
      right: 34px;
      bottom: 42px;
      width: 320px;
      background: rgba(255, 255, 255, 0.94);
      backdrop-filter: blur(18px);
      border: 1px solid rgba(186, 230, 253, 0.95);
      border-radius: 28px;
      padding: 18px;
      display: flex;
      align-items: center;
      gap: 15px;
      box-shadow: 0 24px 50px rgba(15, 23, 42, 0.14);
      z-index: 3;
    }

    .doctor-avatar {
      width: 68px;
      height: 68px;
      border-radius: 22px;
      overflow: hidden;
      flex: 0 0 auto;
      border: 3px solid #e0f2fe;
    }

    .doctor-badge strong {
      display: block;
      color: #0f172a;
      font-size: 16px;
      margin-bottom: 3px;
    }

    .doctor-badge small {
      color: #64748b;
      font-weight: 700;
    }

    .pulse {
      position: absolute;
      left: 44px;
      top: 285px;
      width: 116px;
      height: 116px;
      border-radius: 50%;
      background: linear-gradient(135deg, #22c55e, #06b6d4);
      display: grid;
      place-items: center;
      color: white;
      box-shadow: 0 22px 42px rgba(6, 182, 212, 0.28);
      z-index: 4;
      animation: float 4s ease-in-out infinite;
    }

    .pulse::before {
      content: "";
      position: absolute;
      inset: -14px;
      border-radius: inherit;
      border: 1px solid rgba(6, 182, 212, 0.28);
      animation: pulse 2.4s ease-out infinite;
    }

    .pulse span {
      text-align: center;
      font-weight: 900;
      line-height: 1.5;
      font-size: 14px;
    }

    .section {
      padding: 76px 0;
    }

    .section-head {
      text-align: center;
      max-width: 720px;
      margin: 0 auto 42px;
    }

    .section-head .eyebrow {
      margin-bottom: 14px;
    }

    .section-head h2 {
      font-size: clamp(30px, 4vw, 46px);
      line-height: 1.35;
      margin-bottom: 14px;
      letter-spacing: -1px;
    }

    .section-head p {
      color: #64748b;
      font-size: 17px;
    }

    .services {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
    }

    .service-card {
      background: #ffffff;
      border: 1px solid #dbeafe;
      border-radius: 28px;
      padding: 26px 22px;
      box-shadow: 0 18px 50px rgba(15, 23, 42, 0.06);
      transition: 0.25s ease;
      position: relative;
      overflow: hidden;
    }

    .service-card::after {
      content: "";
      position: absolute;
      width: 110px;
      height: 110px;
      left: -48px;
      top: -48px;
      background: rgba(34, 211, 238, 0.13);
      border-radius: 50%;
    }

    .service-card:hover {
      transform: translateY(-8px);
      border-color: #7dd3fc;
      box-shadow: 0 26px 60px rgba(8, 145, 178, 0.14);
    }

    .icon {
      width: 58px;
      height: 58px;
      border-radius: 20px;
      display: grid;
      place-items: center;
      background: linear-gradient(135deg, #e0f2fe, #f0fdfa);
      color: #0891b2;
      font-size: 27px;
      margin-bottom: 20px;
      position: relative;
      z-index: 1;
    }

    .service-card h3 {
      font-size: 19px;
      margin-bottom: 9px;
    }

    .service-card p {
      color: #64748b;
      font-size: 15px;
    }

    .doctor-section {
      background:
        radial-gradient(circle at 15% 10%, rgba(34, 211, 238, 0.17), transparent 28%),
        linear-gradient(135deg, #082f49, #0f172a);
      color: white;
      overflow: hidden;
    }

    .doctor-grid {
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 42px;
      align-items: center;
    }

    .doctor-image {
      border-radius: 36px;
      overflow: hidden;
      border: 8px solid rgba(255, 255, 255, 0.12);
      box-shadow: 0 34px 80px rgba(0, 0, 0, 0.26);
      height: 470px;
    }

    .doctor-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .doctor-content h2 {
      font-size: clamp(32px, 4vw, 48px);
      line-height: 1.35;
      margin-bottom: 18px;
    }

    .doctor-content p {
      color: #cbd5e1;
      font-size: 17px;
      margin-bottom: 24px;
    }

    .features {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 14px;
      margin-bottom: 28px;
    }

    .feature {
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 18px;
      padding: 14px 16px;
      color: #e0f2fe;
      font-weight: 700;
    }

    .gallery {
      display: grid;
      grid-template-columns: 1.15fr 0.85fr 0.85fr;
      grid-template-rows: 240px 240px;
      gap: 18px;
    }

    .gallery-card {
      border-radius: 30px;
      overflow: hidden;
      position: relative;
      box-shadow: 0 20px 50px rgba(15, 23, 42, 0.1);
    }

    .gallery-card.large {
      grid-row: span 2;
    }

    .gallery-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: 0.4s ease;
    }

    .gallery-card:hover img {
      transform: scale(1.06);
    }

    .gallery-card::after {
      content: attr(data-title);
      position: absolute;
      right: 18px;
      bottom: 18px;
      left: 18px;
      color: white;
      font-weight: 900;
      padding: 14px 16px;
      border-radius: 18px;
      background: linear-gradient(90deg, rgba(8, 47, 73, 0.85), rgba(8, 145, 178, 0.65));
      backdrop-filter: blur(12px);
    }

    .cta {
      padding: 40px;
      border-radius: 36px;
      background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.35), transparent 28%),
        linear-gradient(135deg, #06b6d4, #075985);
      color: white;
      display: grid;
      grid-template-columns: 1fr auto;
      align-items: center;
      gap: 24px;
      box-shadow: 0 26px 70px rgba(8, 145, 178, 0.26);
    }

    .cta h2 {
      font-size: clamp(28px, 4vw, 42px);
      line-height: 1.35;
      margin-bottom: 8px;
    }

    .cta p {
      color: #e0f2fe;
    }

    .cta .btn {
      background: white;
      color: #0369a1;
    }

    .floating-actions {
      position: fixed;
      right: 22px;
      bottom: 22px;
      z-index: 50;
      display: flex;
      gap: 12px;
      align-items: center;
    }

    .float-btn {
      border: none;
      cursor: pointer;
      height: 58px;
      border-radius: 999px;
      padding: 0 20px;
      color: white;
      background: linear-gradient(135deg, #06b6d4, #0891b2);
      box-shadow: 0 16px 34px rgba(8, 145, 178, 0.32);
      font-family: inherit;
      font-weight: 900;
      display: inline-flex;
      align-items: center;
      gap: 9px;
    }

    .chat-btn {
      width: 58px;
      padding: 0;
      justify-content: center;
      background: linear-gradient(135deg, #0ea5e9, #0369a1);
      font-size: 24px;
    }

    @keyframes pulse {
      from {
        opacity: 1;
        transform: scale(0.86);
      }
      to {
        opacity: 0;
        transform: scale(1.35);
      }
    }

    @keyframes float {
      0%, 100% {
        transform: translateY(0);
      }
      50% {
        transform: translateY(-12px);
      }
    }

    .reveal {
      opacity: 0;
      transform: translateY(22px);
      transition: 0.65s ease;
    }

    .reveal.show {
      opacity: 1;
      transform: translateY(0);
    }

    @media (max-width: 1024px) {
      .hero-grid,
      .doctor-grid,
      .cta {
        grid-template-columns: 1fr;
      }

      .visual {
        min-height: 520px;
      }

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

      .gallery {
        grid-template-columns: 1fr 1fr;
      }

      .gallery-card.large {
        grid-row: span 1;
      }
    }

    @media (max-width: 820px) {
      .mobile-toggle {
        display: grid;
        place-items: center;
      }

      .menu {
        position: fixed;
        top: 122px;
        right: 18px;
        left: 18px;
        background: white;
        border: 1px solid #dbeafe;
        border-radius: 24px;
        padding: 16px;
        flex-direction: column;
        align-items: stretch;
        box-shadow: var(--shadow);
        transform: translateY(-16px);
        opacity: 0;
        pointer-events: none;
        transition: 0.25s ease;
      }

      .menu.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
      }

      .menu a {
        display: block;
      }

      .nav-actions .btn-outline {
        display: none;
      }

      .hero {
        padding-top: 48px;
      }

      .hero h1 {
        letter-spacing: -0.8px;
      }

      .trust-row,
      .features,
      .services,
      .gallery {
        grid-template-columns: 1fr;
      }

      .visual {
        min-height: 610px;
      }

      .photo-main,
      .photo-small,
      .photo-bottom {
        position: relative;
        width: 100%;
        height: 260px;
        right: auto;
        left: auto;
        top: auto;
        bottom: auto;
        margin-bottom: 16px;
      }

      .doctor-badge,
      .pulse {
        position: relative;
        right: auto;
        left: auto;
        top: auto;
        bottom: auto;
        width: 100%;
        margin-top: 12px;
      }

      .doctor-image {
        height: 360px;
      }

      .floating-actions {
        right: 14px;
        left: 14px;
      }

      .float-btn {
        flex: 1;
        justify-content: center;
      }

      .chat-btn {
        flex: 0 0 58px;
      }
    }

    @media (max-width: 520px) {
      .topbar .container {
        justify-content: center;
      }

      .brand small {
        display: none;
      }

      .nav-inner {
        min-height: 74px;
      }

      .brand-logo {
        width: 48px;
        height: 48px;
      }

      .hero-actions .btn {
        width: 100%;
      }

      .section {
        padding: 56px 0;
      }

      .cta {
        padding: 28px;
      }
    }

/* =========================================================
   FORCE PUBLIC HEADER EXACT STYLE
   این بخش باید در noorvista-pro.css هم باشد تا همه صفحات عمومی، مخصوصاً contact و services، دقیقاً مثل index دیده شوند.
========================================================= */

.contact-topbar,
.contact-nav {
  display: none !important;
}

.topbar {
  width: 100% !important;
  min-height: 56px !important;
  height: 56px !important;
  background: #073b57 !important;
  color: #ffffff !important;
  font-family: Vazir, Shabnam, Tahoma, Arial, sans-serif !important;
  font-size: 14px !important;
  direction: rtl !important;
  display: block !important;
  box-sizing: border-box !important;
  overflow: visible !important;
}

.topbar * {
  box-sizing: border-box !important;
}

.topbar-inner,
.topbar .container {
  width: min(100% - 32px, 1180px) !important;
  height: 56px !important;
  min-height: 56px !important;
  margin-inline: auto !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 18px !important;
}

.topbar-info,
.socials {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  flex-wrap: nowrap !important;
  margin: 0 !important;
  padding: 0 !important;
}

.topbar-info span,
.topbar-info a {
  display: inline-flex !important;
  align-items: center !important;
  line-height: 1 !important;
  white-space: nowrap !important;
}

.topbar a {
  color: inherit !important;
  text-decoration: none !important;
}

.topbar-phone {
  display: inline-flex !important;
  align-items: center !important;
  gap: 7px !important;
  color: #ffffff !important;
  font-weight: 900 !important;
  direction: ltr !important;
  unicode-bidi: plaintext !important;
  background: rgba(255,255,255,.12) !important;
  border: 1px solid rgba(255,255,255,.16) !important;
  border-radius: 999px !important;
  padding: 6px 12px !important;
  height: 34px !important;
}

.social-link {
  width: 36px !important;
  height: 36px !important;
  min-width: 36px !important;
  border-radius: 14px !important;
  display: grid !important;
  place-items: center !important;
  overflow: hidden !important;
  color: #fff !important;
  text-decoration: none !important;
  font-size: 12px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  margin: 0 !important;
  padding: 0 !important;
}

.social-link svg {
  width: 22px !important;
  height: 22px !important;
  display: block !important;
}

.navbar {
  position: sticky !important;
  top: 0 !important;
  z-index: 120 !important;
  width: 100% !important;
  min-height: 82px !important;
  background: rgba(255,255,255,.96) !important;
  backdrop-filter: blur(14px) !important;
  border-bottom: 1px solid #dbeafe !important;
  direction: rtl !important;
  display: block !important;
  box-sizing: border-box !important;
}

.navbar * {
  box-sizing: border-box !important;
}

.nav-inner {
  width: min(100% - 32px, 1180px) !important;
  margin-inline: auto !important;
  min-height: 82px !important;
  height: 82px !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 18px !important;
}

.brand {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  color: #0f172a !important;
  text-decoration: none !important;
  min-width: 0 !important;
  margin: 0 !important;
}

.brand-logo {
  width: 56px !important;
  height: 56px !important;
  min-width: 56px !important;
  border-radius: 18px !important;
  background: linear-gradient(135deg,#06b6d4,#075985) !important;
  color: #fff !important;
  display: grid !important;
  place-items: center !important;
  font-size: 13px !important;
  font-weight: 950 !important;
  box-shadow: 0 14px 28px rgba(8,145,178,.18) !important;
  line-height: 1 !important;
}

.brand strong {
  display: block !important;
  color: #0f172a !important;
  font-size: 18px !important;
  line-height: 1.35 !important;
  font-weight: 950 !important;
  margin: 0 !important;
}

.brand small {
  display: block !important;
  color: #64748b !important;
  font-size: 12px !important;
  line-height: 1.65 !important;
  font-weight: 800 !important;
  margin: 0 !important;
}

.menu {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
}

.menu > li {
  position: relative !important;
  margin: 0 !important;
  padding: 0 !important;
}

.menu > li > a {
  min-height: 44px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 10px 14px !important;
  border-radius: 999px !important;
  color: #334155 !important;
  font-weight: 900 !important;
  text-decoration: none !important;
  transition: .2s ease !important;
  line-height: 1 !important;
  margin: 0 !important;
}

.menu > li > a:hover,
.menu > li > a.active {
  color: #075985 !important;
  background: #e0f2fe !important;
}

.nav-actions {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  margin: 0 !important;
  padding: 0 !important;
}

.nav-actions .btn,
.nav-actions a,
.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 10px 20px;
  font-weight: 950;
  text-decoration: none;
}

.btn-primary {
  color: #fff !important;
  background: linear-gradient(135deg,#06b6d4,#0891b2) !important;
  border: 0 !important;
  box-shadow: 0 14px 28px rgba(8,145,178,.18) !important;
}

.btn-outline {
  color: #075985 !important;
  background: #fff !important;
  border: 1px solid #bae6fd !important;
}

.mobile-toggle {
  display: none !important;
}

@media (max-width: 980px) {
  .topbar {
    height: auto !important;
    min-height: 56px !important;
  }

  .topbar-inner,
  .topbar .container {
    height: auto !important;
    min-height: 56px !important;
    padding: 10px 0 !important;
    flex-wrap: wrap !important;
  }

  .nav-inner {
    height: auto !important;
    min-height: 82px !important;
    flex-wrap: wrap !important;
    padding-top: 8px !important;
  }

  .menu {
    order: 3 !important;
    width: 100% !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
    padding-bottom: 12px !important;
  }
}

@media (max-width: 720px) {
  .topbar-inner,
  .topbar .container {
    justify-content: center !important;
    text-align: center !important;
  }

  .topbar-info,
  .socials {
    justify-content: center !important;
    flex-wrap: wrap !important;
  }

  .brand-logo {
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    border-radius: 15px !important;
    font-size: 11px !important;
  }

  .brand strong {
    font-size: 15px !important;
  }

  .brand small {
    font-size: 11px !important;
  }

  .nav-actions {
    display: none !important;
  }

  .menu > li > a {
    min-height: 38px !important;
    padding: 8px 10px !important;
    font-size: 13px !important;
  }
}

/* END FORCE PUBLIC HEADER EXACT STYLE */


/* =========================================================
   FIX: topbar vertical alignment
   آیتم‌های topbar به پایین کادر نچسبند و دقیقاً وسط قرار بگیرند.
========================================================= */

.topbar {
  min-height: 58px !important;
  height: auto !important;
  padding: 6px 0 !important;
  display: flex !important;
  align-items: center !important;
}

.topbar-inner,
.topbar .container {
  min-height: 46px !important;
  height: auto !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  display: flex !important;
  align-items: center !important;
}

.topbar-info,
.socials {
  align-items: center !important;
}

.topbar-info span,
.topbar-info a,
.topbar-phone {
  line-height: 1.6 !important;
  display: inline-flex !important;
  align-items: center !important;
}

.topbar-phone {
  height: 34px !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.social-link {
  display: inline-grid !important;
  place-items: center !important;
  align-self: center !important;
}

@media (max-width: 720px) {
  .topbar {
    padding: 8px 0 !important;
  }

  .topbar-inner,
  .topbar .container {
    row-gap: 8px !important;
  }
}

