/* Exact offer section from hamraz-responsive-single-file.html — scoped to #hamraz-offer */

#hamraz-offer {
  --brand-950: #073d3a;
  --brand-900: #064b47;
  --brand-800: #075b55;
  --brand-100: #eaf4f2;
  --brand-50: #f5faf9;
  --ink: #183331;
  --muted: #71817f;
  --line: #d5dfdd;
  --surface: rgba(255, 255, 255, 0.88);
  --page: #eff4f3;
  --radius-sm: 15px;
  --radius-md: 22px;
  --shadow-soft: 0 12px 30px rgba(15, 62, 59, 0.07);
  --shadow-hover: 0 18px 42px rgba(15, 62, 59, 0.13);

  position: relative;
  overflow: hidden;
  padding: 64px 24px;
  color: var(--ink);
  background: transparent;
}

#hamraz-offer svg {
  display: block;
}

#hamraz-offer a {
  color: inherit;
}

#hamraz-offer .services-container {
  width: min(1100px, 100%);
  margin-inline: auto;
}

#hamraz-offer .section-heading {
  max-width: 650px;
  margin: 0 auto 34px;
  text-align: center;
}

#hamraz-offer .section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  color: var(--brand-800);
  font-size: 0.88rem;
  font-weight: 700;
}

#hamraz-offer .section-kicker::before,
#hamraz-offer .section-kicker::after {
  content: "";
  width: 22px;
  height: 1px;
  background: currentColor;
  opacity: 0.45;
}

#hamraz-offer .section-heading h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.65rem);
  line-height: 1.45;
  letter-spacing: -0.04em;
  color: var(--brand-950);
}

#hamraz-offer .section-heading p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.9;
}

#hamraz-offer .trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 24px;
}

#hamraz-offer .trust-card {
  min-width: 0;
  min-height: 92px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px;
  border: 1px solid rgba(147, 170, 166, 0.45);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.73);
  box-shadow: 0 7px 19px rgba(23, 67, 64, 0.045);
  backdrop-filter: blur(10px);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

#hamraz-offer .trust-card:hover {
  transform: translateY(-3px);
  border-color: rgba(6, 91, 85, 0.38);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
}

#hamraz-offer .trust-icon {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(111, 144, 139, 0.24);
  border-radius: 15px;
  color: var(--brand-800);
  background: linear-gradient(145deg, rgba(255,255,255,.96), rgba(231,241,238,.88));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.9),
    0 7px 15px rgba(16, 75, 70, 0.07);
}

#hamraz-offer .trust-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

#hamraz-offer .trust-card h3 {
  margin: 0 0 4px;
  font-size: 0.98rem;
  color: var(--brand-950);
}

#hamraz-offer .trust-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.79rem;
  white-space: nowrap;
}

#hamraz-offer .service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

#hamraz-offer .service-card,
#hamraz-offer .offer-card {
  min-width: 0;
  min-height: 228px;
  height: auto;
  display: grid;
  grid-template-columns: 126px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  padding: 22px;
  margin: 0;
  border: 1px solid rgba(151, 173, 169, 0.42);
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, rgba(255,255,255,.96), rgba(249,252,251,.82));
  box-shadow: var(--shadow-soft);
  text-align: right;
  overflow: visible;
  position: relative;
  flex-direction: unset;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

#hamraz-offer .service-card::before,
#hamraz-offer .offer-card::before,
#hamraz-offer .service-card::after,
#hamraz-offer .offer-card::after {
  content: none !important;
  display: none !important;
  background: none !important;
  opacity: 0 !important;
}

#hamraz-offer .service-card:hover,
#hamraz-offer .offer-card:hover {
  transform: translateY(-5px);
  border-color: rgba(7, 91, 85, 0.42);
  box-shadow: var(--shadow-hover);
  background: linear-gradient(145deg, rgba(255,255,255,.96), rgba(249,252,251,.82));
}

#hamraz-offer .service-visual {
  position: relative;
  width: 126px;
  height: 160px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(133, 158, 153, 0.18);
  border-radius: 19px;
  background:
    radial-gradient(circle at 25% 20%, #ffffff 0 18%, transparent 19%),
    linear-gradient(145deg, #f8fbfa, #e8f1ef);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.95),
    0 12px 24px rgba(24, 73, 69, 0.08);
}

#hamraz-offer .service-visual::after {
  content: "";
  position: absolute;
  inset: auto -22px -35px auto;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: rgba(100, 158, 149, 0.10);
}

#hamraz-offer .service-visual svg {
  position: relative;
  z-index: 1;
  width: 104px;
  height: 104px;
  fill: none;
  stroke: var(--brand-800);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

#hamraz-offer .service-visual .bubble,
#hamraz-offer .service-visual .secondary {
  fill: #9fc6bf;
  stroke: var(--brand-800);
}

#hamraz-offer .service-visual .bubble-dot,
#hamraz-offer .service-visual .dot {
  fill: var(--brand-800);
  stroke: none;
}

#hamraz-offer .service-visual .plant {
  stroke: #7ba494;
}

#hamraz-offer .service-content {
  min-width: 0;
}

#hamraz-offer .service-label {
  display: inline-block;
  margin-bottom: 7px;
  color: var(--brand-800);
  font-size: 0.72rem;
  font-weight: 700;
}

#hamraz-offer .service-content h3,
#hamraz-offer .service-card h3 {
  margin: 0 0 9px;
  color: var(--brand-950);
  font-size: 1.24rem;
  line-height: 1.5;
}

#hamraz-offer .service-content p,
#hamraz-offer .service-card > .service-content > p {
  min-height: 72px;
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.95;
}

#hamraz-offer .service-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 15px;
  padding-top: 13px;
  border-top: 1px solid rgba(164, 181, 178, 0.42);
  color: var(--brand-800);
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
  transition: gap 180ms ease, color 180ms ease;
}

#hamraz-offer .service-link:hover {
  gap: 14px;
  color: var(--brand-950);
}

@media (max-width: 1050px) {
  #hamraz-offer .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #hamraz-offer .service-grid {
    grid-template-columns: 1fr;
  }

  #hamraz-offer .service-card,
  #hamraz-offer .offer-card {
    min-height: 210px;
    grid-template-columns: 150px minmax(0, 1fr);
  }

  #hamraz-offer .service-visual {
    width: 150px;
    height: 165px;
  }

  #hamraz-offer .service-content p {
    min-height: auto;
    max-width: 650px;
  }
}

@media (max-width: 640px) {
  #hamraz-offer {
    padding: 42px 16px 54px;
  }

  #hamraz-offer .section-heading {
    margin-bottom: 25px;
  }

  #hamraz-offer .section-heading h2 {
    font-size: 1.55rem;
  }

  #hamraz-offer .section-heading p {
    font-size: 0.88rem;
  }

  #hamraz-offer .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 16px;
  }

  #hamraz-offer .trust-card {
    min-height: 104px;
    flex-direction: column;
    justify-content: center;
    gap: 9px;
    padding: 12px 8px;
    text-align: center;
    border-radius: 16px;
  }

  #hamraz-offer .trust-icon {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
    border-radius: 14px;
  }

  #hamraz-offer .trust-card h3 {
    margin: 0;
    font-size: 0.86rem;
  }

  #hamraz-offer .trust-card p {
    display: none;
  }

  #hamraz-offer .service-grid {
    gap: 14px;
  }

  #hamraz-offer .service-card,
  #hamraz-offer .offer-card {
    min-height: 0;
    grid-template-columns: 104px minmax(0, 1fr);
    gap: 15px;
    align-items: stretch;
    padding: 15px;
    border-radius: 19px;
  }

  #hamraz-offer .service-visual {
    width: 104px;
    height: 142px;
    align-self: center;
    border-radius: 17px;
  }

  #hamraz-offer .service-visual svg {
    width: 88px;
    height: 88px;
  }

  #hamraz-offer .service-label {
    margin-bottom: 4px;
    font-size: 0.65rem;
  }

  #hamraz-offer .service-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  #hamraz-offer .service-content h3,
  #hamraz-offer .service-card h3 {
    margin-bottom: 5px;
    font-size: 1rem;
  }

  #hamraz-offer .service-content p {
    min-height: 0;
    margin-bottom: 3px;
    font-size: 0.75rem;
    line-height: 1.8;
  }

  #hamraz-offer .service-link {
    width: 100%;
    justify-content: space-between;
    margin-top: 9px;
    padding-top: 9px;
    font-size: 0.77rem;
  }
}

@media (max-width: 370px) {
  #hamraz-offer {
    padding-inline: 11px;
  }

  #hamraz-offer .service-card,
  #hamraz-offer .offer-card {
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 11px;
    padding: 12px;
  }

  #hamraz-offer .service-visual {
    width: 88px;
    height: 126px;
  }

  #hamraz-offer .service-visual svg {
    width: 74px;
    height: 74px;
  }

  #hamraz-offer .service-content p {
    font-size: 0.7rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  #hamraz-offer .trust-card,
  #hamraz-offer .service-card,
  #hamraz-offer .offer-card,
  #hamraz-offer .service-link {
    transition: none;
  }
}
