:root {
  --ink: #111316;
  --muted: #66706d;
  --line: rgba(17, 19, 22, .12);
  --gold: #c79a3b;
  --green: #0f7664;
  --red: #9f2733;
  --paper: #f4f2ec;
  --white: #fff;
  --shadow: 0 20px 58px rgba(17, 19, 22, .14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "IBM Plex Sans Arabic", "Tajawal", "Cairo", Tahoma, Arial, sans-serif;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(199, 154, 59, .1), rgba(15, 118, 100, .08)),
    repeating-linear-gradient(0deg, rgba(17, 19, 22, .035) 0 1px, transparent 1px 34px),
    repeating-linear-gradient(90deg, rgba(159, 39, 51, .028) 0 1px, transparent 1px 44px),
    var(--paper);
  line-height: 1.58;
  font-size: 14.5px;
}

img {
  max-width: 100%;
}

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

.site-shell {
  width: min(100% - 52px, 1560px);
  margin-inline: auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.topbar-inner {
  min-height: 78px;
  display: grid;
  grid-template-columns: minmax(320px, 1fr) auto auto;
  gap: 24px;
  align-items: center;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 900;
  background: linear-gradient(135deg, var(--red), var(--gold) 50%, var(--green));
  box-shadow: 0 10px 24px rgba(18, 109, 87, .24);
}

.brand-logo {
  width: 58px;
  height: 58px;
  border-radius: 8px;
  object-fit: contain;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 10px 24px rgba(18, 109, 87, .16);
}

.brand strong {
  display: block;
  font-size: 20px;
  line-height: 1.25;
  font-weight: 900;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  white-space: nowrap;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

.nav a {
  padding: 7px 9px;
  border-radius: 6px;
  font-weight: 900;
  color: #29313a;
}

.nav a:hover,
.nav-cta:hover {
  background: rgba(18, 109, 87, .1);
  color: var(--green);
}

.nav-cta,
.primary-btn,
.secondary-btn,
.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 6px;
  font-weight: 900;
}

.nav-cta {
  padding: 0 15px;
  color: #fff;
  background: var(--green);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  padding: 0 16px;
  color: var(--ink);
  background: #fff;
  font: inherit;
  cursor: pointer;
}

.egulf-info-bars {
  background: rgba(255, 255, 255, .92);
  border-bottom: 1px solid var(--line);
}

.info-bars-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 10px;
  padding-block: 8px;
}

.info-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  overflow-x: auto;
  white-space: nowrap;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 5px 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .98), rgba(249, 247, 241, .92)),
    repeating-linear-gradient(90deg, rgba(15, 118, 100, .035) 0 1px, transparent 1px 28px);
}

.info-bar strong {
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
}

.info-bar span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  border-radius: 999px;
  padding: 0 9px;
  color: #26302c;
  background: rgba(15, 118, 100, .08);
  font-size: 12px;
  font-weight: 800;
}

.currency-bar span {
  background: rgba(199, 154, 59, .13);
}

.hero {
  padding: 28px 0 30px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(310px, .78fr) minmax(540px, 1.34fr) minmax(300px, .68fr);
  grid-template-areas: "copy media about";
  gap: 22px;
  align-items: stretch;
  direction: ltr;
}

.hero-copy,
.hero-media,
.hero-about-panel {
  direction: rtl;
}

.hero-copy {
  grid-area: copy;
  align-self: center;
}

.hero-media {
  grid-area: media;
}

.hero-about-panel {
  grid-area: about;
}

.eyebrow,
.section-head span {
  display: inline-flex;
  color: var(--red);
  font-weight: 900;
  margin-bottom: 10px;
}

.hero h1 {
  margin: 0 0 18px;
  font-size: clamp(34px, 3vw, 54px);
  line-height: 1.12;
  letter-spacing: 0;
  font-weight: 900;
}

.hero p,
.section-head p,
.order-section p,
.footer p {
  color: var(--muted);
  margin: 0;
}

.hero-copy > p {
  max-width: 760px;
  font-size: 16.5px;
  color: #525c59;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0;
}

.primary-btn {
  background: var(--green);
  color: #fff;
  padding: 0 22px;
}

.secondary-btn {
  background: #fff;
  color: var(--ink);
  padding: 0 22px;
  border: 1px solid var(--line);
}

.hero-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.hero-stats span {
  background: rgba(255, 255, 255, .82);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px;
  box-shadow: 0 8px 20px rgba(16, 24, 32, .06);
}

.hero-stats b {
  display: block;
  color: var(--red);
  font-size: 21px;
}

.hero-media {
  position: relative;
  min-height: 520px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #ddd;
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  display: block;
}

.hero-media:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .04), rgba(17, 19, 22, .7));
}

.media-card {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 22px;
  left: 22px;
  background: rgba(255, 255, 255, .94);
  border-radius: 8px;
  padding: 18px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, .16);
}

.media-card strong,
.media-card span {
  display: block;
}

.media-card span {
  color: var(--muted);
}

.hero-about-panel {
  display: grid;
  align-content: stretch;
  gap: 14px;
}

.about-panel-head,
.hero-about-panel article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(248, 247, 242, .94)),
    repeating-linear-gradient(0deg, rgba(15, 118, 100, .04) 0 1px, transparent 1px 24px);
  box-shadow: 0 12px 30px rgba(17, 19, 22, .08);
  overflow: hidden;
}

.about-panel-head {
  padding: 14px;
  background:
    linear-gradient(135deg, rgba(17, 19, 22, .96), rgba(159, 39, 51, .9)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, .08) 0 1px, transparent 1px 30px);
  color: #fff;
}

.about-panel-head span,
.about-panel-head strong {
  display: block;
}

.about-panel-head span {
  color: rgba(255, 255, 255, .72);
  font-weight: 800;
}

.about-panel-head strong {
  font-size: 20px;
  line-height: 1.25;
}

.hero-about-panel article div {
  padding: 12px;
}

.hero-about-panel article b {
  display: block;
  font-size: 16px;
  line-height: 1.35;
  color: var(--ink);
}

.hero-about-panel article p {
  margin: 6px 0 12px;
  color: var(--muted);
  font-size: 14px;
}

.hero-about-panel article a {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  padding: 0 12px;
  color: #fff;
  background: var(--red);
  font-weight: 900;
}

.about-feature {
  position: relative;
}

.about-feature:before {
  content: "";
  position: absolute;
  inset-block: 16px;
  right: 0;
  width: 4px;
  background: var(--gold);
}

.service-band,
.catalog-section,
.order-section,
.about-section,
.featured-section {
  padding: 32px 0;
}

.featured-section {
  padding-top: 30px;
  background:
    linear-gradient(135deg, rgba(159, 39, 51, .08), rgba(15, 118, 100, .08)),
    repeating-linear-gradient(90deg, rgba(17, 19, 22, .03) 0 1px, transparent 1px 34px);
  border-block: 1px solid var(--line);
}

.featured-grid .item-card {
  border-color: rgba(199, 154, 59, .38);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.service-tile,
.item-card,
.pricing-table article,
.order-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .98), rgba(249, 247, 241, .94)),
    repeating-linear-gradient(90deg, rgba(15, 118, 100, .035) 0 1px, transparent 1px 28px);
  box-shadow: 0 12px 32px rgba(16, 24, 32, .08);
}

.service-tile {
  display: block;
  padding: 14px;
  min-height: 116px;
}

.service-tile span {
  color: var(--gold);
  font-weight: 900;
  font-size: 18px;
}

.service-tile h2,
.section-head h2,
.order-section h2 {
  margin: 6px 0 10px;
  line-height: 1.25;
}

.service-tile h2 {
  font-size: 20px;
  font-weight: 900;
}

.service-tile p {
  margin: 0;
  color: var(--muted);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, .55fr);
  gap: 18px;
  align-items: end;
  margin-bottom: 14px;
}

.section-head h2 {
  font-size: clamp(24px, 2.1vw, 36px);
  font-weight: 900;
}

.toolbar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.filter-btn {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 6px;
  min-height: 36px;
  padding: 0 12px;
  font-weight: 900;
  cursor: pointer;
}

.filter-btn.active {
  background: var(--ink);
  color: #fff;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 11px;
}

.cards-grid.wide {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.item-card {
  overflow: hidden;
}

.item-card img,
.pricing-table img {
  width: 100%;
  height: 158px;
  object-fit: cover;
  display: block;
}

.item-card div,
.pricing-table div {
  padding: 11px;
}

.tag {
  display: inline-flex;
  color: var(--green);
  font-weight: 900;
  font-size: 12px;
  margin-bottom: 6px;
}

.item-card h3,
.pricing-table h3 {
  margin: 0 0 6px;
  font-size: 17px;
  line-height: 1.35;
  font-weight: 900;
}

.item-card p,
.pricing-table p {
  margin: 0 0 8px;
  color: var(--muted);
}

.item-card b,
.pricing-table b {
  display: block;
  margin-bottom: 8px;
  color: var(--red);
}

.item-card a,
.pricing-table a {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  padding: 0 10px;
  color: #fff;
  background: var(--green);
  font-weight: 900;
}

.card-actions {
  display: flex !important;
  gap: 6px;
  flex-wrap: wrap;
  padding: 0 !important;
}

.card-actions a {
  flex: 1 1 116px;
}

.alt-section {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .54), rgba(240, 235, 224, .52)),
    repeating-linear-gradient(90deg, rgba(17, 19, 22, .03) 0 1px, transparent 1px 36px);
  border-block: 1px solid var(--line);
}

.about-section {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .7), rgba(244, 239, 226, .58)),
    repeating-linear-gradient(0deg, rgba(15, 118, 100, .034) 0 1px, transparent 1px 30px);
  border-block: 1px solid var(--line);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .72fr);
  gap: 24px;
  align-items: center;
}

.about-grid h2 {
  margin: 0 0 14px;
  font-size: clamp(30px, 3vw, 50px);
  line-height: 1.25;
  font-weight: 900;
}

.about-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.about-points {
  display: grid;
  gap: 12px;
}

.about-points span {
  display: flex;
  gap: 12px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 12px 26px rgba(16, 24, 32, .06);
  font-weight: 900;
}

.about-points b {
  color: var(--red);
  font-size: 22px;
}

.pricing-table {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.pricing-table article {
  overflow: hidden;
}

.order-section {
  background:
    linear-gradient(135deg, rgba(16, 24, 32, .94), rgba(18, 109, 87, .9)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, .08) 0 1px, transparent 1px 36px);
  color: #fff;
}

.order-grid {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(440px, .75fr);
  gap: 32px;
  align-items: start;
}

.order-section .eyebrow,
.order-section p {
  color: rgba(255, 255, 255, .78);
}

.order-section h2 {
  font-size: clamp(30px, 3vw, 52px);
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 10px;
}

.check-list li {
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 6px;
  padding: 10px 12px;
}

.order-form {
  padding: 20px;
  display: grid;
  gap: 12px;
  color: var(--ink);
}

.order-form label {
  display: grid;
  gap: 6px;
  font-weight: 900;
}

.order-form input,
.order-form select,
.order-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  min-height: 46px;
  padding: 10px 12px;
  font: inherit;
  background: #fff;
}

.order-form textarea {
  min-height: 120px;
  resize: vertical;
}

.order-form button {
  min-height: 48px;
  border: 0;
  border-radius: 6px;
  color: #fff;
  background: var(--red);
  font-weight: 900;
  font: inherit;
  cursor: pointer;
}

.form-note {
  font-size: 13px;
  color: var(--muted) !important;
}

.footer {
  background: #0d1319;
  color: #fff;
  padding: 34px 0 0;
}

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

.footer h2,
.footer h3 {
  margin: 0 0 10px;
}

.footer a {
  display: block;
  color: rgba(255, 255, 255, .78);
  margin: 7px 0;
}

.copyright {
  text-align: center;
  color: rgba(255, 255, 255, .62);
  border-top: 1px solid rgba(255, 255, 255, .12);
  margin-top: 26px;
  padding: 14px;
}

.is-hidden {
  display: none;
}

.inner-topbar {
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(14px);
}

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

.inner-hero {
  padding: 34px 0;
}

.inner-hero-grid {
  display: grid;
  grid-template-columns: minmax(320px, .7fr) minmax(520px, 1.3fr);
  gap: 24px;
  align-items: stretch;
}

.inner-hero h1 {
  margin: 0 0 16px;
  font-size: clamp(38px, 4vw, 70px);
  line-height: 1.1;
  font-weight: 900;
}

.inner-hero p {
  color: var(--muted);
  font-size: 18px;
  margin: 0 0 24px;
}

.inner-hero img {
  width: 100%;
  min-height: 470px;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.inner-hero-grid > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(247, 244, 236, .9)),
    repeating-linear-gradient(90deg, rgba(17, 19, 22, .035) 0 1px, transparent 1px 32px);
  box-shadow: 0 14px 36px rgba(17, 19, 22, .08);
}

.real-estate-hero {
  background: linear-gradient(135deg, rgba(159, 39, 51, .08), rgba(199, 154, 59, .08));
}

.food-hero {
  background: linear-gradient(135deg, rgba(15, 118, 100, .09), rgba(199, 154, 59, .08));
}

.cars-hero {
  background: linear-gradient(135deg, rgba(17, 19, 22, .08), rgba(159, 39, 51, .08));
}

.control-hero {
  background:
    linear-gradient(135deg, rgba(15, 118, 100, .11), rgba(199, 154, 59, .12)),
    repeating-linear-gradient(90deg, rgba(17, 19, 22, .03) 0 1px, transparent 1px 34px);
  border-bottom: 1px solid var(--line);
}

.control-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.control-card,
.control-login-box {
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .98), rgba(249, 247, 241, .94)),
    repeating-linear-gradient(90deg, rgba(15, 118, 100, .035) 0 1px, transparent 1px 28px);
  box-shadow: 0 10px 26px rgba(16, 24, 32, .07);
}

.control-card {
  display: grid;
  gap: 6px;
  min-height: 108px;
  padding: 14px;
}

.control-card b {
  color: var(--red);
  font-size: 18px;
}

.control-card span {
  color: var(--muted);
  font-weight: 700;
}

.manager-card {
  border-color: rgba(199, 154, 59, .44);
}

.control-login-box {
  max-width: 820px;
  padding: 18px;
}

.control-login-box form {
  display: grid;
  gap: 10px;
}

.control-login-box label {
  display: grid;
  gap: 6px;
  font-weight: 900;
}

.control-login-box input[type="text"],
.control-login-box input[type="password"] {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0 12px;
  font: inherit;
}

.control-login-box input[type="submit"] {
  min-height: 42px;
  border: 0;
  border-radius: 6px;
  padding: 0 18px;
  color: #fff;
  background: var(--green);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.panel-notice {
  margin-bottom: 14px;
  border: 1px solid rgba(15, 118, 100, .28);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--green);
  background: rgba(15, 118, 100, .08);
  font-weight: 900;
}

.panel-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 14px;
}

.panel-summary article,
.panel-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .98), rgba(249, 247, 241, .94)),
    repeating-linear-gradient(90deg, rgba(15, 118, 100, .035) 0 1px, transparent 1px 28px);
  box-shadow: 0 10px 26px rgba(16, 24, 32, .07);
}

.panel-summary article {
  display: grid;
  gap: 4px;
  padding: 14px;
}

.panel-summary span,
.panel-table small {
  color: var(--muted);
  font-weight: 800;
}

.panel-summary b {
  color: var(--red);
  font-size: 20px;
}

.panel-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, .55fr);
  gap: 14px;
  align-items: start;
  margin-bottom: 14px;
}

.panel-card {
  padding: 16px;
}

.external-post-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.member-create-form {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr)) auto;
  gap: 10px;
  align-items: end;
}

.external-post-form label,
.member-create-form label,
.panel-role-form {
  display: grid;
  gap: 6px;
}

.external-post-form span,
.member-create-form span {
  font-weight: 900;
}

.external-post-form input,
.external-post-form select,
.external-post-form textarea,
.member-create-form input,
.member-create-form select,
.panel-role-form select {
  width: 100%;
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 8px 10px;
  font: inherit;
  background: #fff;
}

.external-post-form textarea {
  resize: vertical;
}

.wide-field {
  grid-column: 1 / -1;
}

.external-post-form button,
.member-create-form button,
.panel-role-form button {
  min-height: 40px;
  border: 0;
  border-radius: 6px;
  padding: 0 14px;
  color: #fff;
  background: var(--green);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.member-news-list,
.activity-list {
  display: grid;
  gap: 8px;
}

.member-news-list a,
.activity-list article {
  display: grid;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px;
  background: rgba(255, 255, 255, .74);
}

.member-news-list span,
.activity-list span,
.activity-list time {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.activity-list p {
  margin: 0;
}

.manager-panel {
  margin-bottom: 14px;
}

.panel-table-wrap {
  overflow-x: auto;
}

.panel-table {
  width: 100%;
  min-width: 980px;
  border-collapse: collapse;
}

.panel-table th,
.panel-table td {
  border-bottom: 1px solid var(--line);
  padding: 10px;
  text-align: right;
  vertical-align: top;
}

.panel-table th {
  color: var(--red);
  background: rgba(159, 39, 51, .06);
  font-weight: 900;
}

.panel-table td:first-child {
  display: grid;
  gap: 3px;
}

.project-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.project-strip article {
  min-height: 150px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .97), rgba(249, 247, 241, .94)),
    repeating-linear-gradient(0deg, rgba(15, 118, 100, .035) 0 1px, transparent 1px 28px);
  box-shadow: 0 12px 32px rgba(16, 24, 32, .08);
}

.project-strip strong {
  display: block;
  color: var(--red);
  font-size: 22px;
  line-height: 1.35;
  margin-bottom: 8px;
  font-weight: 900;
}

.project-strip span {
  color: var(--muted);
}

.egulf-card-meta {
  display: block;
  color: #5f6b68;
  margin: -4px 0 10px;
  font-weight: 800;
}

.home-empty {
  grid-column: 1 / -1;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .9);
  padding: 22px;
  color: var(--muted);
  font-weight: 800;
}

.basic-content {
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .98), rgba(249, 247, 241, .94)),
    repeating-linear-gradient(90deg, rgba(15, 118, 100, .035) 0 1px, transparent 1px 28px);
  box-shadow: 0 12px 32px rgba(16, 24, 32, .08);
  padding: 28px;
  font-size: 19px;
  color: #3e4744;
}

.basic-content p {
  margin: 0 0 14px;
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .45fr);
  gap: 18px;
  align-items: start;
}

.detail-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .98), rgba(249, 247, 241, .94)),
    repeating-linear-gradient(0deg, rgba(15, 118, 100, .035) 0 1px, transparent 1px 28px);
  box-shadow: 0 12px 32px rgba(16, 24, 32, .08);
  padding: 22px;
}

.detail-gallery {
  margin: 0 0 22px;
}

.detail-gallery img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.share-box {
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.share-box h3 {
  margin: 0 0 12px;
  font-size: 22px;
}

.share-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.share-actions a,
.share-actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 0;
  border-radius: 6px;
  padding: 0 16px;
  color: #fff;
  background: var(--green);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.share-actions a:nth-child(2) {
  background: #1877f2;
}

.share-actions button {
  background: var(--ink);
}

.detail-panel h3 {
  margin: 0 0 12px;
  font-size: 24px;
}

.detail-panel p {
  margin: 0 0 10px;
  color: var(--muted);
}

.detail-panel .primary-btn,
.detail-panel .secondary-btn {
  width: 100%;
  margin-top: 10px;
}

.egulf-floating-wa {
  position: fixed;
  left: 22px;
  bottom: 22px;
  z-index: 60;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 20px;
  color: #fff !important;
  background: #128c7e;
  box-shadow: 0 14px 34px rgba(18, 140, 126, .32);
  font-weight: 900;
}

.quick-filters,
.commerce-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 16px;
}

.quick-filters a,
.commerce-strip article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 10px 24px rgba(16, 24, 32, .06);
}

.quick-filters a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  color: #fff;
  background: var(--green);
  font-weight: 900;
}

.commerce-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.commerce-strip strong,
.commerce-strip span {
  display: block;
}

.commerce-strip strong {
  color: var(--red);
  font-size: 18px;
  line-height: 1.35;
  margin-bottom: 5px;
}

.commerce-strip span {
  color: var(--muted);
}

.item-card {
  position: relative;
}

.offer-badge,
.detail-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border-radius: 999px;
  padding: 0 10px;
  color: #fff;
  background: var(--red);
  font-size: 12px;
  font-weight: 900;
}

.offer-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  box-shadow: 0 8px 18px rgba(0, 0, 0, .16);
}

.detail-badge {
  margin-bottom: 10px;
}

.detail-gallery {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 10px;
}

.detail-gallery img {
  min-height: 180px;
}

.detail-gallery img:first-child {
  grid-row: span 2;
  min-height: 370px;
}

.map-box {
  margin-top: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: rgba(255, 255, 255, .9);
}

.map-box h3 {
  margin: 0 0 10px;
}

.map-box a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  padding: 0 14px;
  color: #fff;
  background: var(--green);
  font-weight: 900;
}

.egulf-map {
  width: 100%;
  min-height: 420px;
  border: 0;
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: #e8ece8;
}

.contact-section {
  padding: 36px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, .7fr);
  gap: 18px;
  align-items: start;
}

.contact-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .98), rgba(249, 247, 241, .94)),
    repeating-linear-gradient(90deg, rgba(15, 118, 100, .035) 0 1px, transparent 1px 28px);
  box-shadow: 0 12px 32px rgba(16, 24, 32, .08);
}

.contact-panel h2 {
  margin: 0 0 12px;
  font-size: 26px;
}

.contact-panel p {
  margin: 0 0 10px;
  color: var(--muted);
}

.contact-panel a {
  color: var(--green);
  font-weight: 900;
}

.map-panel,
.contact-form {
  grid-column: 1 / -1;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  border-radius: 999px;
  padding: 0 12px;
  color: #fff !important;
  background: var(--green);
  font-size: 13px;
  font-weight: 900;
}

.other-services {
  display: grid;
  gap: 8px;
}

.other-services span {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, .78);
  font-weight: 900;
}

@media (min-width: 1600px) {
  .site-shell {
    width: min(100% - 64px, 1720px);
  }

  .cards-grid,
  .pricing-table {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1100px) {
  .topbar-inner,
  .section-head,
  .order-grid,
  .footer-grid,
  .inner-hero-grid,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(280px, .55fr);
    grid-template-areas:
      "media about"
      "copy copy";
  }

  .nav {
    overflow-x: auto;
    padding-bottom: 8px;
  }

  .inner-nav {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-media,
  .hero-media img {
    min-height: 430px;
  }

  .inner-hero img {
    min-height: 360px;
  }

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

  .panel-summary,
  .panel-layout,
  .member-create-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .site-shell {
    width: min(100% - 24px, 1480px);
  }

  body {
    font-size: 14px;
  }

  .topbar-inner {
    position: relative;
    grid-template-columns: 1fr auto auto;
    gap: 10px;
    padding: 10px 0;
    min-height: 78px;
  }

  .brand small {
    white-space: normal;
  }

  .brand-mark,
  .brand-logo {
    width: 50px;
    height: 50px;
  }

  .brand strong {
    font-size: 19px;
  }

  .brand small {
    font-size: 11px;
    line-height: 1.35;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .topbar .nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, .98);
    box-shadow: var(--shadow);
    overflow: visible;
    z-index: 40;
  }

  .topbar .nav.is-open {
    display: flex;
  }

  .topbar .nav a {
    width: 100%;
    padding: 11px 12px;
  }

  .nav-cta {
    justify-self: start;
    min-height: 40px;
    padding: 0 12px;
  }

  .info-bars-grid {
    grid-template-columns: 1fr;
    gap: 6px;
    padding-block: 6px;
  }

  .info-bar {
    min-height: 32px;
    padding: 4px 7px;
  }

  .info-bar strong,
  .info-bar span {
    font-size: 11px;
  }

  .service-band,
  .catalog-section,
  .order-section,
  .about-section,
  .featured-section {
    padding: 26px 0;
  }

  .hero {
    padding-top: 18px;
  }

  .hero-stats,
  .hero-grid,
  .service-grid,
  .about-grid,
  .cards-grid,
  .cards-grid.wide,
  .pricing-table,
  .project-strip,
  .quick-filters,
  .commerce-strip,
  .detail-gallery,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .panel-summary,
  .panel-layout,
  .external-post-form,
  .member-create-form {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    grid-template-areas:
      "copy"
      "media"
      "about";
  }

  .hero h1 {
    font-size: 30px;
    margin-bottom: 12px;
  }

  .hero-copy > p {
    font-size: 15px;
  }

  .hero-actions {
    margin: 18px 0;
  }

  .hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  .hero-stats span {
    padding: 8px;
    font-size: 12px;
  }

  .hero-stats b {
    font-size: 15px;
  }

  .hero-media,
  .hero-media img {
    min-height: 235px;
  }

  .item-card img,
  .pricing-table img {
    height: 180px;
  }

  .item-card div,
  .pricing-table div,
  .service-tile {
    padding: 13px;
  }

  .media-card {
    right: 12px;
    bottom: 12px;
    left: 12px;
    padding: 12px;
  }

  .about-panel-head strong {
    font-size: 19px;
  }

  .hero-about-panel {
    gap: 10px;
  }

  .hero-about-panel article:nth-of-type(n+2) {
    display: none;
  }

  .about-grid p {
    font-size: 16px;
  }

  .inner-hero h1 {
    font-size: 34px;
  }

  .inner-hero-grid > div {
    padding: 20px;
  }

  .inner-hero img {
    min-height: 280px;
  }

  .detail-gallery img:first-child,
  .detail-gallery img {
    min-height: 210px;
  }

  .egulf-map {
    min-height: 300px;
  }
}
