/* InfoShalaa — Contact page styles (self-contained) */
:root {
  --bg: #fff;
  --bg-soft: #f8fafc;
  --bg-hero: #eff4ff;
  --text: #0b1220;
  --text-soft: #475569;
  --text-muted: #64748b;
  --border: #e5eaf3;
  --border-strong: #d5deee;
  --card: #fff;
  --primary: #2563eb;
  --primary-600: #1d4ed8;
  --primary-soft: #eef4ff;
  --primary-soft-2: #dbeafe;
  --tag-bg: #eaf1ff;
  --tag-text: #1d4ed8;
  --card-shadow: 0 1px 2px rgba(15, 23, 42, .04), 0 8px 24px -12px rgba(15, 23, 42, .08);
  --card-shadow-hover: 0 4px 8px rgba(15, 23, 42, .06), 0 24px 40px -18px rgba(37, 99, 235, .22);
  --danger: #dc2626;
  --danger-soft: #fef2f2;
  --success: #16a34a;
  --success-soft: #f0fdf4;
}

[data-theme="dark"] {
  --bg: #070b17;
  --bg-soft: #0b1226;
  --bg-hero: #0d1633;
  --text: #eef2f7;
  --text-soft: #b6c1d8;
  --text-muted: #8b98b3;
  --border: #1a2340;
  --border-strong: #223055;
  --card: #0e1730;
  --primary: #3b82f6;
  --primary-600: #60a5fa;
  --primary-soft: #10214a;
  --primary-soft-2: #172a5e;
  --tag-bg: #172a5e;
  --tag-text: #93c5fd;
  --card-shadow: 0 1px 2px rgba(0, 0, 0, .3), 0 12px 30px -14px rgba(0, 0, 0, .6);
  --card-shadow-hover: 0 4px 10px rgba(0, 0, 0, .35), 0 28px 40px -18px rgba(59, 130, 246, .35);
  --danger: #f87171;
  --danger-soft: #3f1414;
  --success: #4ade80;
  --success-soft: #0b2a1a;
}

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

html,
body {
  margin: 0;
  padding: 0
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Manrope", ui-sans-serif, system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  transition: background-color .3s ease, color .3s ease
}

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

::selection {
  background: var(--primary);
  color: #fff
}

h1,
h2,
h3,
h4 {
  font-family: "Sora", "Manrope", sans-serif;
  color: var(--text);
  letter-spacing: -.01em;
  margin: 0
}

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px
}

/* NAVBAR */
.navbar {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, .85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--border);
  transition: background-color .3s ease, border-color .3s ease
}

[data-theme="dark"] .navbar {
  background: rgba(7, 11, 23, .78)
}

.navbar__inner {
  display: flex;
  align-items: center;
  gap: 14px;
  height: 76px
}

.logo {
    font-family: "Sora", sans-serif;
    font-weight: 800;
    font-size: 22px;
    color: var(--text);
    letter-spacing: -0.02em;
    flex-shrink: 0;
    display: flex;

    align-items: center;

    gap: 8px;
}

.logo-img {

    width: 60px;

    height: 60px;

    object-fit: contain;

}

.logo > span span {

    color: var(--primary);

}


/* Logo Text */

.logo > span {
    color: var(--text);
}

.logo > span span {
    color: var(--primary);
}




.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 32px
}

.nav-link {
  padding: 8px 14px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-soft);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color .18s, background .18s;
  position: relative
}

.nav-link:hover {
  color: var(--primary);
  background: var(--primary-soft)
}

.nav-link.is-active {
  color: var(--primary);
  background: var(--primary-soft)
}

.nav-link.is-active::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: -2px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px
}

.nav-dropdown {
  position: relative
}

.nav-link--dropdown .chev {
  transition: transform .2s ease
}

.nav-dropdown:hover .nav-link--dropdown,
.nav-dropdown.is-open .nav-link--dropdown {
  color: var(--primary);
  background: var(--primary-soft)
}

.nav-dropdown:hover .nav-link--dropdown .chev,
.nav-dropdown.is-open .nav-link--dropdown .chev {
  transform: rotate(180deg)
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 280px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 12px;
  box-shadow: 0 20px 40px -12px rgba(15, 23, 42, .18);
  opacity: 0;
  visibility: hidden;
  transition: opacity .18s, transform .2s, visibility .18s;
  z-index: 100
}

.dropdown-menu::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.is-open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0)
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--text-soft);
  font-weight: 500;
  font-size: 14px;
  transition: background .15s, color .15s
}

.dropdown-item:hover {
  background: var(--primary-soft);
  color: var(--primary)
}

.dropdown-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--primary-soft);
  color: var(--primary)
}

.dropdown-divider {
  height: 1px;
  background: var(--border);
  margin: 8px 4px
}

.dropdown-view-all {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 10px 12px;
  color: var(--primary);
  font-weight: 600;
  font-size: 14px;
  border-radius: 10px;
  transition: background .15s
}

.dropdown-view-all:hover {
  background: var(--primary-soft)
}

.navbar__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto
}

.search-wrap {
  position: relative;
  max-width: 300px;
  flex: 0 1 300px
}

.search-ico {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none
}

.search-input {
  width: 100%;
  height: 44px;
  padding: 0 14px 0 42px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text);
  font: inherit;
  font-size: 14px;
  outline: none;
  transition: border-color .18s, box-shadow .18s, background .18s
}

.search-input:focus {
  border-color: var(--primary);
  background: var(--card);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, .12)
}

.theme-btn {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  color: var(--text-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color .18s, background .18s, border-color .18s;
  flex-shrink: 0
}

.theme-btn:hover {
  color: var(--primary);
  border-color: var(--primary-soft-2);
  background: var(--primary-soft)
}

.theme-btn .ico-moon {
  display: none
}

.theme-btn .ico-sun {
  display: inline-block
}

[data-theme="dark"] .theme-btn .ico-moon {
  display: inline-block
}

[data-theme="dark"] .theme-btn .ico-sun {
  display: none
}

.account-dropdown {
  position: relative;
  flex-shrink: 0
}

.account-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 44px;
  padding: 0 14px 0 8px;
  border-radius: 999px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  color: var(--text);
  font-weight: 600;
  font-size: 13.5px;
  transition: background .18s, border-color .18s, color .18s
}

.account-btn:hover,
.account-dropdown.is-open .account-btn {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary)
}

.account-avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.account-btn:hover .account-avatar,
.account-dropdown.is-open .account-avatar {
  background: rgba(255, 255, 255, .22)
}

.account-btn .chev {
  transition: transform .2s
}

.account-dropdown.is-open .account-btn .chev {
  transform: rotate(180deg)
}

.account-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 260px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 8px;
  box-shadow: 0 20px 40px -12px rgba(15, 23, 42, .18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .18s, transform .2s, visibility .18s;
  z-index: 100
}

.account-dropdown.is-open .account-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0)
}

.account-menu__head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: var(--primary-soft);
  border-radius: 12px;
  margin-bottom: 6px
}

.account-menu__avatar {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--primary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center
}

.account-menu__name {
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--text);
  line-height: 1.2
}

.account-menu__sub {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px
}

.account-menu__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--text-soft);
  font-weight: 500;
  font-size: 13.5px;
  transition: background .15s, color .15s
}

.account-menu__item:hover {
  background: var(--primary-soft);
  color: var(--primary)
}

.account-menu__divider {
  height: 1px;
  background: var(--border);
  margin: 6px 8px
}

.mobile-menu-btn {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  color: var(--text);
  background: var(--bg-soft);
  border: 1px solid var(--border)
}

.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 8px 24px 20px;
  background: var(--card);
  border-top: 1px solid var(--border);
  gap: 2px
}

.mobile-nav__link {
  padding: 12px 14px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  color: var(--text-soft);
  transition: background .15s, color .15s
}

.mobile-nav__link:hover {
  background: var(--primary-soft);
  color: var(--primary)
}

.mobile-nav.is-open {
  display: flex;
  animation: slideDown .2s ease
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-6px)
  }

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

/* Utilities */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 20px 0 18px;
  font-size: 13.5px;
  color: var(--text-muted);
  flex-wrap: wrap
}

.breadcrumb a {
  color: var(--text-muted);
  transition: color .15s
}

.breadcrumb a:hover {
  color: var(--primary)
}

.breadcrumb__sep {
  color: var(--border-strong)
}

.breadcrumb__current {
  color: var(--primary);
  font-weight: 600
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary);
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 22px
}

[data-theme="dark"] .badge {
  color: var(--primary-600)
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 48px;
  padding: 0 24px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14.5px;
  transition: transform .15s ease, box-shadow .18s ease, background .18s ease, color .18s, border-color .18s
}

.btn--primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 8px 18px -4px rgba(37, 99, 235, .45)
}

.btn--primary:hover {
  background: var(--primary-600);
  transform: translateY(-1px);
  box-shadow: 0 12px 22px -4px rgba(37, 99, 235, .55)
}

.btn--outline {
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--text)
}

.btn--outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-soft);
  transform: translateY(-1px)
}

.btn--block {
  width: 100%
}

.btn svg {
  transition: transform .2s
}

.btn:hover svg {
  transform: translateX(3px)
}

.text-primary {
  color: var(--primary)
}

.section {
  padding: 70px 0
}

.section--tight {
  padding: 16px 0 70px
}

.section-head {
  text-align: center;
  margin-bottom: 44px
}

.section-title {
  font-family: "Sora", sans-serif;
  font-size: clamp(26px, 3vw, 32px);
  font-weight: 800;
  letter-spacing: -.02em;
  margin-bottom: 8px
}

.section-underline {
  display: inline-block;
  width: 40px;
  height: 3px;
  border-radius: 2px;
  background: var(--primary)
}

/* Fade animations */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease
}

.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0)
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  background: var(--bg-soft);
  padding: 60px 0 24px;
  transition: background-color .3s ease, border-color .3s ease
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border)
}

.footer__brand .logo {
  display: inline-block;
  margin-bottom: 14px
}

.footer__tagline {
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 20px;
  max-width: 260px
}

.socials {
  display: flex;
  gap: 8px
}

.social-btn {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color .18s, border-color .18s, background .18s, transform .15s
}

.social-btn:hover {
  color: var(--primary);
  border-color: var(--primary);
  background: var(--primary-soft);
  transform: translateY(-2px)
}

.footer-col h4 {
  font-family: "Sora", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px
}

.footer-col ul a {
  color: var(--text-soft);
  font-size: 14px;
  transition: color .15s, padding-left .2s
}

.footer-col ul a:hover {
  color: var(--primary);
  padding-left: 4px
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 20px
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 13px;
  margin: 0
}

.heart {
  color: #ef4444;
  display: inline-block;
  animation: hb 1.4s ease-in-out infinite
}

@keyframes hb {

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

  50% {
    transform: scale(1.15)
  }
}

@media (max-width:900px) {

  .nav-links,
  .search-wrap {
    display: none
  }

  .account-btn__label,
  .account-btn .chev {
    display: none
  }

  .account-btn {
    padding: 0 10px 0 8px
  }

  .mobile-menu-btn {
    display: inline-flex
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 28px
  }

  .footer__brand {
    grid-column: 1 / -1
  }
}

@media (max-width:640px) {
  .section {
    padding: 48px 0
  }

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

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px
  }

  .navbar__inner {
    gap: 10px
  }
}

/* ============ CONTACT HERO ============ */
.contact-hero {
  padding: 36px 0 70px;
  background: linear-gradient(180deg, var(--bg-hero) 0%, var(--bg) 100%);
  position: relative;
  overflow: hidden
}

.contact-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 40px;
  align-items: center
}

.contact-hero h1 {
  font-size: clamp(30px, 4.4vw, 56px);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -.02em;
  margin-bottom: 20px
}

.contact-hero__desc {
  font-size: 16px;
  color: var(--text-soft);
  max-width: 520px;
  line-height: 1.7;
  margin: 0 0 30px
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap
}

.contact-hero__visual {
  width: 100%;
  max-width: 620px;
  justify-self: end
}

.contact-hero__visual svg {
  width: 100%;
  height: auto;
  animation: float 6s ease-in-out infinite
}

@keyframes float {

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

  50% {
    transform: translateY(-8px)
  }
}

/* Reach cards */
.reach-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px
}

.rcard {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: transform .25s, box-shadow .25s, border-color .25s
}

.rcard:hover {
  transform: translateY(-6px);
  border-color: var(--primary-soft-2);
  box-shadow: var(--card-shadow-hover)
}

.rcard__ico {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--primary-soft);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
  transition: transform .3s
}

[data-theme="dark"] .rcard__ico {
  color: var(--primary-600)
}

.rcard:hover .rcard__ico {
  transform: scale(1.08) rotate(-6deg)
}

.rcard__title {
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--text)
}

.rcard__desc {
  color: var(--text-muted);
  font-size: 13.5px;
  line-height: 1.55;
  margin: 0 0 4px
}

.rcard__link {
  color: var(--primary);
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  transition: color .15s, gap .2s
}

[data-theme="dark"] .rcard__link {
  color: var(--primary-600)
}

.rcard__link:hover {
  color: var(--primary-600);
  gap: 10px
}

/* Form + FAQ */
.form-faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px;
  margin-top: 24px
}

.form-card,
.faq-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  box-shadow: var(--card-shadow)
}

.form-card__head {
  margin-bottom: 22px
}

.form-card__title {
  font-family: "Sora", sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 4px
}

.form-card__sub {
  color: var(--text-muted);
  font-size: 14px;
  margin: 0
}

.cform {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.cform__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0
}

.field__label {
  font-size: 13px;
  color: var(--text-soft);
  font-weight: 600
}

.field__input {
  width: 100%;
  padding: 11px 14px;
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font: inherit;
  font-size: 14.5px;
  color: var(--text);
  outline: none;
  transition: border-color .18s, box-shadow .18s, background .18s
}

.field__input::placeholder {
  color: var(--text-muted);
  opacity: .85
}

.field__input:hover {
  border-color: var(--border-strong)
}

.field__input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, .14)
}

.field__input--area {
  min-height: 130px;
  resize: vertical;
  font-family: inherit
}

.field.is-invalid .field__input {
  border-color: var(--danger);
  background: var(--danger-soft)
}

[data-theme="dark"] .field.is-invalid .field__input {
  background: rgba(220, 38, 38, .08)
}

.field__err {
  font-size: 12.5px;
  color: var(--danger);
  min-height: 16px;
  display: block
}

.field__err[data-err-for="agree"] {
  margin-top: -6px
}

.agree {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: var(--text-soft);
  cursor: pointer;
  user-select: none
}

.agree input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0
}

.agree__box {
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--border-strong);
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--card);
  transition: background .15s, border-color .15s;
  flex-shrink: 0;
  margin-top: 1px
}

.agree__box svg {
  opacity: 0;
  transition: opacity .12s
}

.agree input:checked~.agree__box {
  background: var(--primary);
  border-color: var(--primary)
}

.agree input:checked~.agree__box svg {
  opacity: 1
}

.agree input:focus-visible~.agree__box {
  box-shadow: 0 0 0 4px rgba(37, 99, 235, .18)
}

.agree__link {
  color: var(--primary);
  font-weight: 600
}

[data-theme="dark"] .agree__link {
  color: var(--primary-600)
}

.agree__link:hover {
  text-decoration: underline
}

#cf-submit {
  margin-top: 4px;
  position: relative
}

#cf-submit .btn__spinner {
  display: none;
  animation: spin 1s linear infinite
}

#cf-submit.is-loading .btn__label,
#cf-submit.is-loading .btn__arrow {
  opacity: .5
}

#cf-submit.is-loading .btn__spinner {
  display: inline-block
}

#cf-submit.is-loading {
  pointer-events: none
}

@keyframes spin {
  to {
    transform: rotate(360deg)
  }
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px
}

.faq-item {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: border-color .2s, background .2s
}

.faq-item[open] {
  background: var(--primary-soft);
  border-color: var(--primary-soft-2)
}

.faq-item__q {
  list-style: none;
  padding: 14px 16px;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer
}

.faq-item__q::-webkit-details-marker {
  display: none
}

.faq-item__ico {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--text-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform .25s, background .2s, color .2s
}

.faq-item[open] .faq-item__ico {
  transform: rotate(180deg);
  background: var(--primary);
  color: #fff;
  border-color: var(--primary)
}

.faq-item__a {
  padding: 0 16px 16px;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.65;
  animation: fadeIn .3s ease
}

.faq-item__a a {
  color: var(--primary);
  font-weight: 600
}

[data-theme="dark"] .faq-item__a a {
  color: var(--primary-600)
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-4px)
  }

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

.faq-more {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--border)
}

.faq-more__ico {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary-soft);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

[data-theme="dark"] .faq-more__ico {
  color: var(--primary-600)
}

.faq-more__title {
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 14.5px;
  color: var(--text)
}

.faq-more__desc {
  font-size: 13.5px;
  color: var(--text-soft);
  margin: 2px 0 0
}

/* Bottom banner */
.help-banner {
  margin-top: 28px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap
}

.help-banner__ico {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--primary-soft);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

[data-theme="dark"] .help-banner__ico {
  color: var(--primary-600)
}

.help-banner__text {
  flex: 1;
  min-width: 220px
}

.help-banner__title {
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--text);
  margin-bottom: 2px
}

.help-banner__desc {
  color: var(--text-soft);
  font-size: 14px;
  margin: 0
}

/* Toast */
.toast-wrap {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none
}

.toast {
  pointer-events: auto;
  min-width: 280px;
  max-width: 360px;
  background: var(--card);
  color: var(--text);
  border: 1px solid var(--border);
  border-left: 4px solid var(--primary);
  border-radius: 12px;
  padding: 14px 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  box-shadow: 0 20px 40px -12px rgba(15, 23, 42, .25);
  animation: toastIn .35s cubic-bezier(.2, .9, .3, 1.2)
}

.toast.toast--success {
  border-left-color: var(--success)
}

.toast.toast--error {
  border-left-color: var(--danger)
}

.toast__ico {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--success-soft);
  color: var(--success);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.toast.toast--error .toast__ico {
  background: var(--danger-soft);
  color: var(--danger)
}

.toast__title {
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 14.5px;
  color: var(--text);
  margin-bottom: 2px
}

.toast__desc {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5
}

.toast__close {
  margin-left: auto;
  padding: 2px;
  border-radius: 6px;
  color: var(--text-muted);
  transition: color .15s, background .15s;
  background: transparent;
  line-height: 0
}

.toast__close:hover {
  color: var(--text);
  background: var(--bg-soft)
}

.toast.is-leaving {
  animation: toastOut .3s ease forwards
}

@keyframes toastIn {
  from {
    opacity: 0;
    transform: translateX(30px) scale(.96)
  }

  to {
    opacity: 1;
    transform: translateX(0) scale(1)
  }
}

@keyframes toastOut {
  to {
    opacity: 0;
    transform: translateX(30px) scale(.96)
  }
}

@media (max-width:1100px) {
  .reach-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .form-faq-grid {
    grid-template-columns: 1fr;
    gap: 20px
  }
}

@media (max-width:900px) {
  .contact-hero__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* Hero image upar */
  .contact-hero__visual {
    order: -1;
    max-width: 480px;
    justify-self: center;
  }

  /* Hero content neeche */
  .contact-hero__content {
    order: 2;
  }
}

@media (max-width:640px) {
  .reach-grid {
    grid-template-columns: 1fr;
    gap: 14px
  }

  .cform__row {
    grid-template-columns: 1fr;
    gap: 10px
  }

  .form-card,
  .faq-card {
    padding: 24px 20px
  }

  .help-banner {
    padding: 20px;
    flex-direction: column;
    text-align: center;
    align-items: stretch
  }

  .help-banner__text {
    min-width: 0
  }

  .toast-wrap {
    top: auto;
    bottom: 16px;
    right: 16px;
    left: 16px
  }

  .toast {
    min-width: 0;
    max-width: none
  }
}