/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* border: 1px solid red !important; */
}

body {
  font-family: "Vazirmatn", sans-serif;
  overflow-x: hidden;
  background: #fff;
  background: var(--lz-white);
  color: var(--lz-text);
}
i {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ================= header ================ */

/* =============== HEADER (Premium) =============== */
.lz-header {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
}

.lz-navbar {
  padding: 14px 0;
  background: transparent;
}

.lz-navbar-inner {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lz-brand {
  display: inline-flex;
  align-items: center;
}

.lz-logo {
  height: 40px;
  width: auto;
  display: block;
}

/* Desktop nav */
.lz-nav {
  gap: 6px;
}

.lz-nav .nav-link {
  position: relative;
  color: var(--lz-muted);
  font-weight: 780;
  padding: 10px 14px;
  border-radius: 12px;
  transition: color 0.15s ease, transform 0.15s ease;
}

.lz-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 6px;
  height: 2px;
  background: var(--lz-accent);
  border-radius: 999px;
  transform: scaleX(0);
  opacity: 0.95;
  transition: transform 0.18s ease;
}

.lz-nav .nav-link:hover,
.lz-nav .nav-link:focus {
  color: var(--lz-text);
}

.lz-nav .nav-link:hover::after,
.lz-nav .nav-link:focus::after {
  transform: scaleX(1);
}

/* Buttons */
.lz-btn {
  border-radius: 14px;
  padding: 10px 16px;
  font-weight: 850;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease,
    border-color 0.16s ease, color 0.16s ease;
}

.lz-btn-primary {
  color: #fff;
  background: linear-gradient(
    180deg,
    #2f4ea0 0%,
    var(--lz-accent) 55%,
    #1f335f 100%
  );
  border: 1px solid rgba(40, 64, 121, 0.55);
  box-shadow: 0 10px 22px rgba(40, 64, 121, 0.18);
}

.lz-btn-primary:hover,
.lz-btn-primary:focus {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(40, 64, 121, 0.22);
  color: white;
}

.lz-btn-outline {
  border: 1px solid rgba(15, 23, 42, 0.22);
  color: var(--lz-text);
  background: rgba(255, 255, 255, 0.9);
}

.lz-btn-outline:hover,
.lz-btn-outline:focus {
  background: rgba(40, 64, 121, 0.06);
  border-color: rgba(40, 64, 121, 0.28);
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.08);
}

/* Accessible focus */
.lz-btn:focus,
.lz-toggler:focus,
.lz-nav .nav-link:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(40, 64, 121, 0.16);
}

/* Mobile toggler (hamburger) */
.lz-toggler {
  width: 46px;
  height: 42px;
  padding: 0;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.14);
  background: rgba(255, 255, 255, 0.9);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.16s ease, box-shadow 0.16s ease,
    border-color 0.16s ease;
}

.lz-toggler:hover {
  border-color: rgba(40, 64, 121, 0.25);
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.08);
  transform: translateY(-1px);
}

.lz-burger {
  width: 22px;
  height: 2px;
  background: var(--lz-text);
  border-radius: 999px;
  position: relative;
  display: block;
}

.lz-burger::before,
.lz-burger::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: var(--lz-text);
  border-radius: 999px;
}

.lz-burger::before {
  top: -7px;
}
.lz-burger::after {
  top: 7px;
}

/* =============== OFFCANVAS (Premium) =============== */
.lz-offcanvas {
  width: min(92vw, 380px);
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: -32px 0 70px rgba(15, 23, 42, 0.16);
}

.lz-oc-header {
  padding: 16px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.lz-oc-logo {
  height: 34px;
  width: auto;
  display: block;
}

.lz-oc-close {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: rgba(255, 255, 255, 0.85);
  color: rgba(15, 23, 42, 0.75);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.lz-oc-close:hover {
  transform: translateY(-1px);
  background: rgba(40, 64, 121, 0.06);
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.1);
}

.lz-oc-body {
  padding: 16px;
}

.lz-oc-nav {
  display: grid;
  gap: 10px;
}

.lz-oc-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 12px;
  border-radius: 16px;
  text-decoration: none;
  color: var(--lz-text);
  font-weight: 850;
  background: rgba(15, 23, 42, 0.03);
  border: 1px solid rgba(15, 23, 42, 0.06);
  transition: transform 0.15s ease, background 0.15s ease,
    border-color 0.15s ease, box-shadow 0.15s ease;
}

.lz-oc-link i {
  font-size: 14px;
  opacity: 0.7;
}

.lz-oc-link:hover {
  transform: translateY(-1px);
  background: rgba(40, 64, 121, 0.06);
  border-color: rgba(40, 64, 121, 0.18);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.1);
}

.lz-oc-actions {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}
/* ============== header ========= */

/* ===================  hero section =============== */

/* =================== HERO SECTION (Premium + Glossy + FULL Responsive) =================== */

.lz-hero {
  padding: 44px 0 30px;

  /* Glossy colorful background (still premium) */
  background: radial-gradient(
      900px 480px at 15% 15%,
      rgba(40, 64, 121, 0.22),
      transparent 62%
    ),
    radial-gradient(
      760px 420px at 92% 25%,
      rgba(40, 64, 121, 0.16),
      transparent 60%
    ),
    radial-gradient(520px 340px at 55% 0%, rgba(0, 0, 0, 0.06), transparent 65%),
    linear-gradient(
      180deg,
      rgba(40, 64, 121, 0.085) 0%,
      rgba(255, 255, 255, 1) 72%
    ) !important;
}

/* Content */
.lz-hero-content {
  max-width: 560px;
}

/* Badge */
.lz-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(40, 64, 121, 0.16);
  color: rgba(15, 23, 42, 0.86);
  font-weight: 850;
  font-size: 13px;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.06);
}

/* Title + subtitle */
.lz-hero-title {
  margin-top: 14px;
  font-weight: 950;
  letter-spacing: -0.4px;
  line-height: 1.22;
  color: var(--lz-text);
  font-size: clamp(26px, 3.2vw, 44px);
}

.lz-accent {
  color: var(--lz-accent);
}

.lz-hero-subtitle {
  margin-top: 10px;
  color: rgba(15, 23, 42, 0.7);
  font-size: 16px;
  line-height: 1.85;
}

/* CTA row (responsive: row -> 2 cols -> 1 col) */
.lz-hero-cta-row {
  margin-top: 12px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.lz-hero-cta {
  min-width: 0;
  width: auto;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* Chips (responsive: row -> grid) */
.lz-hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.lz-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(15, 23, 42, 0.08);
  color: rgba(15, 23, 42, 0.84);
  font-weight: 850;
  font-size: 14px;
  box-shadow: 0 10px 18px rgba(15, 23, 42, 0.05);
}

.lz-chip i {
  opacity: 0.85;
}

/* Card */
.lz-hero-card {
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(15, 23, 42, 0.1);
  box-shadow: 0 26px 70px rgba(15, 23, 42, 0.12);
  padding: 18px;
  position: relative;
  overflow: hidden;
}

.lz-hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    520px 220px at 25% 0%,
    rgba(40, 64, 121, 0.1),
    transparent 55%
  );
  pointer-events: none;
}

/* Card top */
.lz-hero-card-top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.lz-card-title {
  font-weight: 950;
  color: var(--lz-text);
}

.lz-card-sub {
  color: rgba(15, 23, 42, 0.62);
  font-size: 13px;
  margin-top: 2px;
}

.lz-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(40, 64, 121, 0.1);
  border: 1px solid rgba(40, 64, 121, 0.18);
  color: var(--lz-accent);
}

/* Inputs */
.lz-label {
  color: rgba(15, 23, 42, 0.8);
  font-weight: 850;
  font-size: 13px;
  margin-bottom: 6px;
}

.lz-input {
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.14);
  padding: 11px 12px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: none !important;
}

.lz-input:focus {
  border-color: rgba(40, 64, 121, 0.38);
  box-shadow: 0 0 0 4px rgba(40, 64, 121, 0.14) !important;
}

/* Estimate row (responsive) */
.lz-estimate {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding: 14px 12px;
  border-radius: 16px;
  background: rgba(40, 64, 121, 0.075);
  border: 1px solid rgba(40, 64, 121, 0.14);
}

.lz-estimate-info {
  min-width: 0;
}

.lz-estimate-label {
  color: rgba(15, 23, 42, 0.72);
  font-weight: 850;
  font-size: 13px;
}

.lz-estimate-value {
  color: var(--lz-text);
  font-weight: 950;
  font-size: 18px;
  margin-top: 2px;
}

.lz-estimate-btn {
  white-space: nowrap;
  padding: 10px 16px;
  min-width: 150px;
}

/* Note */
.lz-note {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: rgba(15, 23, 42, 0.62);
  font-size: 13px;
  line-height: 1.7;
}

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

/* lg and down */
@media (max-width: 991.98px) {
  .lz-hero {
    padding: 30px 0 22px;
  }
  .lz-hero-content {
    max-width: 100%;
  }
  .lz-hero-card {
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.12);
  }
}

/* phones */
@media (max-width: 575.98px) {
  .lz-hero-title {
    font-size: 30px;
    line-height: 1.28;
  }

  .lz-hero-subtitle {
    font-size: 15px;
  }

  /* CTA becomes 2 columns */
  .lz-hero-cta-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .lz-hero-cta {
    width: 100%;
  }

  /* chips becomes 2 columns */
  .lz-hero-chips {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .lz-chip {
    width: 100%;
    justify-content: center;
  }

  /* estimate button full width */
  .lz-estimate-btn {
    width: 100%;
  }

  .lz-hero-card {
    padding: 14px;
    border-radius: 16px;
  }

  .lz-hero-card-top {
    padding-bottom: 10px;
  }
}

/* very small phones */
@media (max-width: 360px) {
  .lz-hero-cta-row {
    grid-template-columns: 1fr;
  }
  .lz-hero-chips {
    grid-template-columns: 1fr;
  }
}
/* checkbox style (matches your theme) */
.lz-check-box {
  padding: 12px 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(15, 23, 42, 0.12);
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.06);
  cursor: pointer;
  transition: transform 0.15s ease, border-color 0.15s ease,
    box-shadow 0.15s ease, background 0.15s ease;
}
.lz-check-box:hover {
  transform: translateY(-1px);
  border-color: rgba(40, 168, 232, 0.26);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.08);
  background: rgba(0, 80, 208, 0.04);
}

/* Notice inside hero card */
.lz-card-notice {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 16px;
  background: rgba(40, 64, 121, 0.06);
  border: 1px solid rgba(40, 64, 121, 0.16);
  color: rgba(15, 23, 42, 0.82);
  font-weight: 900;
}

.lz-card-notice i {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(40, 64, 121, 0.1);
  border: 1px solid rgba(40, 64, 121, 0.18);
  color: var(--lz-accent);
}

.lz-card-notice b {
  color: var(--lz-accent);
}

/* ===== Card subtitle (optional but nice) ===== */
.lz-card-sub {
  color: rgba(15, 23, 42, 0.62);
  font-size: 13px;
  margin-top: 2px;
}

/* ===== Minimal notice (clean + small) ===== */
.lz-card-notice {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 16px;
  background: rgba(40, 64, 121, 0.06);
  border: 1px solid rgba(40, 64, 121, 0.14);
  color: rgba(15, 23, 42, 0.82);
  font-weight: 850;
}

.lz-card-notice i {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(40, 64, 121, 0.1);
  border: 1px solid rgba(40, 64, 121, 0.18);
  color: var(--lz-accent);
}

.lz-card-notice b {
  color: var(--lz-accent);
}

/* ===== Results parent (both rows inside one box) ===== */
.lz-results {
  border-radius: 16px;
  background: rgba(40, 64, 121, 0.06);
  border: 1px solid rgba(40, 64, 121, 0.14);
  padding: 12px;
  display: grid;
  gap: 10px;
}

.lz-result-row {
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(15, 23, 42, 0.08);
  padding: 12px;
}

/* keep your labels/values, just tighten */
.lz-estimate-label {
  color: rgba(15, 23, 42, 0.72);
  font-weight: 850;
  font-size: 13px;
}
.lz-estimate-value {
  color: var(--lz-text);
  font-weight: 950;
  font-size: 18px;
  margin-top: 4px;
}

/* submit button inside results */
.lz-results .lz-estimate-btn {
  min-width: 0;
  padding: 11px 16px;
}
/* make disabled selects look clean (not gray ugly) */
.lz-input:disabled,
.lz-input[disabled] {
  opacity: 0.85;
  cursor: not-allowed;
  background: rgba(15, 23, 42, 0.03) !important;
  border-color: rgba(15, 23, 42, 0.1) !important;
}
.lz-form-alert {
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(180, 35, 24, 0.06);
  border: 1px solid rgba(180, 35, 24, 0.18);
  color: #b42318;
  font-weight: 850;
  font-size: 13px;
  line-height: 1.7;
}
/* =============== HERO =============== */

/* ============== steps =========== */

/* =================== STEPS SECTION (Optimized) =================== */

.lz-steps {
  background: radial-gradient(
      820px 360px at 80% 0%,
      rgba(40, 64, 121, 0.1),
      transparent 60%
    ),
    linear-gradient(
      180deg,
      rgba(15, 23, 42, 0.02) 0%,
      rgba(255, 255, 255, 1) 62%
    );
}

/* Step card */
.lz-step {
  height: 100%;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(15, 23, 42, 0.1);
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.08);
  position: relative;
  overflow: hidden;
  transition: transform 0.16s ease, box-shadow 0.16s ease,
    border-color 0.16s ease;
}

.lz-step::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    520px 220px at 30% 0%,
    rgba(40, 64, 121, 0.11),
    transparent 56%
  );
  pointer-events: none;
  opacity: 0.85;
}

.lz-step:hover {
  transform: translateY(-2px);
  border-color: rgba(40, 64, 121, 0.18);
  box-shadow: 0 26px 60px rgba(15, 23, 42, 0.1);
}

/* Top row */
.lz-step-top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.lz-step-num {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 950;
  color: var(--lz-accent);
  background: rgba(40, 64, 121, 0.1);
  border: 1px solid rgba(40, 64, 121, 0.18);
}

.lz-step-ic {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--lz-accent);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.lz-step-title {
  position: relative;
  margin-top: 12px;
  font-weight: 950;
  color: var(--lz-text);
  font-size: 16px;
}

.lz-step-text {
  position: relative;
  margin-top: 6px;
  color: rgba(15, 23, 42, 0.7);
  line-height: 1.9;
  font-size: 14px;
}

/* CTA box */
.lz-steps-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(40, 64, 121, 0.075);
  border: 1px solid rgba(40, 64, 121, 0.14);
}

.lz-steps-cta-title {
  font-weight: 950;
  color: var(--lz-text);
}

.lz-steps-cta-sub {
  margin-top: 2px;
  color: rgba(15, 23, 42, 0.7);
  font-size: 13px;
}

.lz-steps-btn {
  white-space: nowrap;
  min-width: 170px;
}

/* Responsive */
@media (max-width: 991.98px) {
  .lz-step {
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
  }
}

@media (max-width: 575.98px) {
  .lz-steps-cta {
    flex-direction: column;
    align-items: stretch;
  }
  .lz-steps-btn {
    width: 100%;
    min-width: 0;
  }
}

/* ================= faq =============== */

/* =================== FAQ SECTION =================== */
.lz-faq {
  background: radial-gradient(
      820px 360px at 18% 0%,
      rgba(40, 64, 121, 0.1),
      transparent 60%
    ),
    linear-gradient(
      180deg,
      rgba(15, 23, 42, 0.02) 0%,
      rgba(255, 255, 255, 1) 62%
    );
}

/* Accordion wrapper */
.lz-accordion {
  border-radius: 18px;
  overflow: hidden;
  border: 0.1px solid #2f4ea0;
}

.lz-acc-item {
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: rgba(255, 255, 255, 0.88);
}

.lz-acc-item + .lz-acc-item {
  border-top: none;
}

.lz-acc-btn {
  background: transparent;
  font-weight: 900;
  color: var(--lz-text);
  padding: 16px 16px;
  box-shadow: none !important;
}

.lz-acc-btn:focus {
  box-shadow: 0 0 0 4px rgba(40, 64, 121, 0.14) !important;
}

.accordion-button:not(.collapsed) {
  background: rgba(40, 64, 121, 0.06);
  color: var(--lz-text);
}

.lz-acc-body {
  color: rgba(15, 23, 42, 0.72);
  line-height: 1.9;
  font-size: 14px;
  padding: 14px 16px 16px;
}

/* Side card */
.lz-faq-side {
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  border: 0.2px solid #2f4ea0;
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.08);
  padding: 16px;
  position: relative;
  overflow: hidden;
}

.lz-faq-side::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    520px 220px at 30% 0%,
    rgba(40, 64, 121, 0.1),
    transparent 56%
  );
  pointer-events: none;
  opacity: 0.85;
}

.lz-faq-side-top {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.lz-faq-side-ic {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(40, 64, 121, 0.1);
  border: 1px solid rgba(40, 64, 121, 0.18);
  color: var(--lz-accent);
}

.lz-faq-side-title {
  position: relative;
  font-weight: 950;
  color: var(--lz-text);
}

.lz-faq-side-sub {
  position: relative;
  margin-top: 2px;
  color: rgba(15, 23, 42, 0.7);
  font-size: 13px;
}

.lz-faq-mini {
  position: relative;
  margin-top: 12px;
  display: grid;
  gap: 10px;
}

.lz-faq-mini-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.03);
  border: 1px solid rgba(15, 23, 42, 0.06);
  color: rgba(15, 23, 42, 0.8);
  font-weight: 850;
  font-size: 14px;
}

.lz-faq-mini-row i {
  opacity: 0.85;
}

/* Responsive */
@media (max-width: 991.98px) {
  .lz-faq-side {
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
  }
}

/* =============== faq ============= */

/* ============== contact ============ */
/* =================== CONTACT (No form / Row-style) =================== */
.lz-contact {
  background: radial-gradient(
      820px 360px at 18% 0%,
      rgba(40, 64, 121, 0.1),
      transparent 60%
    ),
    linear-gradient(
      180deg,
      rgba(15, 23, 42, 0.02) 0%,
      rgba(255, 255, 255, 1) 62%
    );
}

.lz-contact-rowwrap {
  display: block;
}

/* Main card */
.lz-contact-card {
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(15, 23, 42, 0.1);
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.08);
  padding: 16px;
  position: relative;
  overflow: hidden;
}

.lz-contact-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    520px 220px at 30% 0%,
    rgba(40, 64, 121, 0.1),
    transparent 56%
  );
  pointer-events: none;
  opacity: 0.85;
}

/* Top bar (row style) */
.lz-contact-top {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.lz-contact-ic {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(40, 64, 121, 0.1);
  border: 1px solid rgba(40, 64, 121, 0.18);
  color: var(--lz-accent);
  flex: 0 0 auto;
}

.lz-contact-title {
  font-weight: 950;
  color: var(--lz-text);
}

.lz-contact-sub {
  margin-top: 2px;
  color: rgba(15, 23, 42, 0.7);
  font-size: 13px;
}

.lz-contact-cta {
  margin-right: auto; /* RTL: pushes button to left side of row */
  white-space: nowrap;
  min-width: 170px;
  justify-content: center;
}

/* Grid rows inside card */
.lz-contact-grid {
  position: relative;
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1fr 1fr; /* two columns on desktop/tablet */
  gap: 12px;
}

/* Contact item */
.lz-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 12px;
  border-radius: 16px;
  text-decoration: none;
  color: rgba(15, 23, 42, 0.86);
  font-weight: 850;
  background: rgba(15, 23, 42, 0.03);
  border: 1px solid rgba(15, 23, 42, 0.06);
  transition: transform 0.15s ease, background 0.15s ease,
    border-color 0.15s ease, box-shadow 0.15s ease;
}

.lz-contact-item:hover {
  transform: translateY(-1px);
  background: rgba(40, 64, 121, 0.06);
  border-color: rgba(40, 64, 121, 0.18);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.1);
}

.lz-contact-item-ic {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(15, 23, 42, 0.08);
  color: var(--lz-accent);
  flex: 0 0 auto;
}

.lz-contact-item-txt {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lz-contact-item-arrow {
  opacity: 0.65;
  margin-right: auto; /* RTL alignment */
}

.lz-contact-item-static {
  cursor: default;
}
.lz-contact-item-static:hover {
  transform: none;
  box-shadow: none;
}

/* Mobile CTA */
.lz-contact-cta-mobile {
  margin-top: 12px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* Responsive */
@media (max-width: 991.98px) {
  .lz-contact-grid {
    grid-template-columns: 1fr; /* single column on small devices */
  }
}

@media (max-width: 575.98px) {
  .lz-contact-card {
    padding: 14px;
    border-radius: 16px;
  }
}
/* =================== CONTACT SECTION =================== */

/* ========================== footer =================== */

/* =================== FOOTER (Premium + Responsive) =================== */
.lz-footer {
  padding: 22px 0;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  background: radial-gradient(
      900px 360px at 20% 0%,
      rgba(40, 64, 121, 0.08),
      transparent 60%
    ),
    linear-gradient(
      180deg,
      rgba(15, 23, 42, 0.015) 0%,
      rgba(255, 255, 255, 1) 70%
    );
}

.lz-footer-top {
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  gap: 16px;
  align-items: center;
}

.lz-footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lz-footer-logo {
  height: 36px;
  width: auto;
  display: block;
}

.lz-footer-title {
  font-weight: 950;
  color: var(--lz-text);
}

.lz-footer-sub {
  margin-top: 2px;
  color: rgba(15, 23, 42, 0.7);
  font-size: 13px;
  line-height: 1.6;
}

.lz-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-start;
}

.lz-footer-links a {
  text-decoration: none;
  color: rgba(15, 23, 42, 0.78);
  font-weight: 850;
}

.lz-footer-links a:hover {
  color: var(--lz-text);
  text-decoration: underline;
  text-underline-offset: 6px;
}

.lz-footer-cta {
  display: flex;
  gap: 10px;
  /* justify-content: flex-start; */
  /* flex-wrap: wrap; */
}

.lz-footer-btn {
  white-space: nowrap;
  min-width: 140px;
}

/* Bottom */
.lz-footer-bottom {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  color: rgba(15, 23, 42, 0.62);
  font-size: 13px;
  justify-content: center;
  align-items: center;
}

.lz-footer-sep {
  opacity: 0.7;
}

/* NEBKA credit */
.lz-footer-credit {
  color: rgba(15, 23, 42, 0.62);
  font-weight: 750;
}

.lz-footer-credit-link {
  color: var(--lz-accent);
  font-weight: 950;
  text-decoration: none;
  border-bottom: 1px solid rgba(40, 64, 121, 0.3);
  padding-bottom: 2px;
}

.lz-footer-credit-link:hover {
  color: var(--lz-text);
  border-bottom-color: rgba(15, 23, 42, 0.35);
}

/* Responsive */
@media (max-width: 991.98px) {
  .lz-footer-top {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .lz-footer-brand {
    justify-content: center;
  }
  .lz-footer-links {
    justify-content: center;
  }
  .lz-footer-cta {
    justify-content: center;
  }
}

@media (max-width: 575.98px) {
  .lz-footer-btn {
    width: 100%;
    min-width: 0;
  }
}

/* ========================== footer =================== */

/* =================== FOOTER (Company-grade) =================== */
.lz-footer {
  padding: 44px 0 18px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  background: radial-gradient(
      900px 360px at 15% 0%,
      rgba(40, 64, 121, 0.1),
      transparent 60%
    ),
    radial-gradient(
      700px 300px at 90% 20%,
      rgba(0, 0, 0, 0.06),
      transparent 65%
    ),
    linear-gradient(
      180deg,
      rgba(15, 23, 42, 0.02) 0%,
      rgba(255, 255, 255, 1) 70%
    );
}

.lz-footer-main {
  padding-bottom: 18px;
}

/* Brand */
.lz-footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lz-footer-logo {
  height: 42px;
  width: auto;
  display: block;
}

.lz-footer-name {
  font-weight: 950;
  color: var(--lz-text);
  letter-spacing: -0.2px;
}

.lz-footer-tagline {
  margin-top: 2px;
  color: rgba(15, 23, 42, 0.7);
  font-size: 13px;
  line-height: 1.6;
}

.lz-footer-about {
  margin-top: 10px;
  color: rgba(15, 23, 42, 0.72);
  line-height: 1.9;
  font-size: 14px;
  max-width: 560px;
}

/* Contact list */
.lz-footer-contact {
  display: grid;
  gap: 10px;
  margin-top: 14px;
  max-width: 420px;
}

.lz-footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  text-decoration: none;
  color: rgba(15, 23, 42, 0.86);
  font-weight: 850;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(15, 23, 42, 0.08);
  transition: transform 0.15s ease, box-shadow 0.15s ease,
    border-color 0.15s ease;
}

.lz-footer-contact-item i {
  color: var(--lz-accent);
  opacity: 0.9;
}

.lz-footer-contact-item:hover {
  transform: translateY(-1px);
  border-color: rgba(40, 64, 121, 0.18);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08);
}

.lz-footer-contact-static {
  cursor: default;
}
.lz-footer-contact-static:hover {
  transform: none;
  box-shadow: none;
}

/* Columns */
.lz-footer-col-title {
  font-weight: 950;
  color: var(--lz-text);
  margin-bottom: 10px;
}

/* Links */
.lz-footer-links {
  display: grid;
  gap: 10px;
}

.lz-footer-links a {
  text-decoration: none;
  color: rgba(15, 23, 42, 0.78);
  font-weight: 850;
  padding: 8px 10px;
  border-radius: 12px;
  transition: background 0.15s ease, color 0.15s ease;
}

.lz-footer-links a:hover {
  background: rgba(40, 64, 121, 0.06);
  color: var(--lz-text);
}

/* CTA */
.lz-footer-cta {
  display: grid;
  gap: 10px;
  max-width: 320px;
}

.lz-footer-btn {
  width: 100%;
  justify-content: center;
  white-space: nowrap;
}

/* Mini trust */
.lz-footer-mini {
  margin-top: 12px;
  display: grid;
  gap: 10px;
  max-width: 320px;
}

.lz-footer-mini-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.03);
  border: 1px solid rgba(15, 23, 42, 0.06);
  color: rgba(15, 23, 42, 0.82);
  font-weight: 850;
  font-size: 14px;
}

.lz-footer-mini-item i {
  opacity: 0.85;
  color: var(--lz-accent);
}

/* Bottom bar */
.lz-footer-bottom {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.lz-footer-copy {
  color: rgba(15, 23, 42, 0.62);
  font-size: 13px;
}

.lz-footer-credit {
  color: rgba(15, 23, 42, 0.62);
  font-size: 13px;
  font-weight: 850;
}

.lz-footer-credit-link {
  color: var(--lz-accent);
  text-decoration: none;
  font-weight: 950;
  border-bottom: 1px solid rgba(40, 64, 121, 0.28);
  padding-bottom: 2px;
}

.lz-footer-credit-link:hover {
  color: var(--lz-text);
  border-bottom-color: rgba(15, 23, 42, 0.35);
}

/* Responsive */
@media (max-width: 991.98px) {
  .lz-footer {
    padding: 34px 0 18px;
  }
  .lz-footer-about,
  .lz-footer-contact {
    max-width: 100%;
  }
  .lz-footer-cta,
  .lz-footer-mini {
    max-width: 100%;
  }
}

@media (max-width: 575.98px) {
  .lz-footer-bottom {
    justify-content: center;
    text-align: center;
  }
}
