:root {
  --ink: #17191f;
  --muted: #697078;
  --paper: #fffaf3;
  --surface: #ffffff;
  --line: rgba(36, 39, 48, 0.12);
  --orange: #f5821f;
  --orange-deep: #d95f0a;
  --amber: #ffc15a;
  --navy: #172638;
  --blue: #d9edf7;
  --charcoal: #242730;
  --shadow: 0 26px 70px rgba(23, 25, 31, 0.15);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 85% 8%, rgba(245, 130, 31, 0.12), transparent 24%),
    linear-gradient(180deg, #fff7ed 0, #f8fbfd 420px, #fffaf3 100%);
  font-family: "Cairo", system-ui, sans-serif;
  line-height: 1.7;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 250, 243, 0.88);
  border-bottom: 1px solid rgba(245, 130, 31, 0.18);
  backdrop-filter: blur(18px);
}

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

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

.brand-logo {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: 50%;
  box-shadow: 0 13px 28px rgba(245, 130, 31, 0.22);
}

.brand strong,
.brand small {
  display: block;
  min-width: 0;
}

.brand strong {
  font-size: 1rem;
  line-height: 1.2;
  white-space: nowrap;
}

.brand small {
  color: var(--muted);
  font-size: 0.74rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #3e4650;
  font-weight: 800;
  font-size: 0.94rem;
}

.nav-links a {
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  width: 0;
  height: 3px;
  border-radius: 999px;
  background: var(--orange);
  transition: width 0.2s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.pay-button,
.primary-btn,
.ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  padding: 0.76rem 1.28rem;
  font-weight: 900;
}

.pay-button,
.primary-btn {
  color: white;
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  box-shadow: 0 18px 34px rgba(217, 95, 10, 0.28);
}

.ghost-btn {
  color: var(--navy);
  border: 1px solid rgba(255, 255, 255, 0.54);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(10px);
}

.menu-button {
  display: none;
  border: 0;
  background: white;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  font-size: 1.2rem;
  box-shadow: 0 10px 24px rgba(23, 25, 31, 0.1);
}

.hero {
  position: relative;
  min-height: 690px;
  display: grid;
  align-items: stretch;
  overflow: hidden;
  background-image:
    linear-gradient(90deg, rgba(255, 250, 243, 0.98) 0%, rgba(255, 250, 243, 0.9) 32%, rgba(255, 250, 243, 0.34) 57%, rgba(23, 38, 56, 0.2) 100%),
    url("assets/selco-hero.png");
  background-size: cover;
  background-position: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 140px;
  background: linear-gradient(180deg, transparent, #fffaf3);
  pointer-events: none;
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 0.7fr);
  align-items: center;
  gap: 48px;
  padding: 58px 0 88px;
  min-width: 0;
}

.hero-layout > *,
.showcase-grid > *,
.quick-grid > *,
.section-cards > *,
.landing-news-grid > *,
.service-banner > *,
.maintenance-grid > * {
  min-width: 0;
}

.hero-copy {
  max-width: 610px;
  padding: 26px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.35rem 0.78rem;
  color: #7d3300;
  background: rgba(255, 193, 90, 0.34);
  border: 1px solid rgba(245, 130, 31, 0.22);
  font-weight: 900;
  font-size: 0.84rem;
}

.hero h1,
.section-title h2,
.renewable h2,
.safety-card h2 {
  margin: 18px 0 16px;
  line-height: 1.1;
  letter-spacing: 0;
}

.hero h1 {
  font-size: clamp(2.8rem, 5vw, 5.45rem);
  font-weight: 900;
}

.hero p,
.renewable p,
.service-feature p,
.service-list p,
.safety-card p,
.site-footer p {
  color: var(--muted);
  font-size: 1.06rem;
}

.hero-copy p {
  max-width: 520px;
  color: #3f4851;
  font-size: 1.14rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-visual {
  align-self: end;
  display: flex;
  justify-content: end;
}

.service-panel {
  width: min(100%, 390px);
  padding: 24px;
  border-radius: 8px;
  color: white;
  background:
    linear-gradient(145deg, rgba(23, 38, 56, 0.92), rgba(36, 39, 48, 0.82)),
    rgba(23, 38, 56, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.panel-head {
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 900;
}

.panel-head strong {
  color: var(--amber);
}

.meter {
  height: 11px;
  margin: 18px 0;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.meter span {
  display: block;
  width: var(--value);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--orange), var(--amber), #fff3c9);
}

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

.panel-grid div {
  padding: 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.panel-grid small {
  display: block;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
}

.panel-grid b {
  font-size: 1.32rem;
}

.quick-services,
.section {
  padding: 84px 0;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: -54px;
  position: relative;
  z-index: 3;
}

.quick-card,
.news-card,
.service-feature,
.service-list article,
.safety-card {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(36, 39, 48, 0.1);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(23, 25, 31, 0.08);
}

.quick-card,
.news-card,
.service-list article,
.section-card,
.archive-grid article,
.archive-grid a,
.safety-rules article,
.branches article,
.timeline div,
.big-service,
.content-panel,
.guidance-grid article,
.video-card,
.weather-card,
.reports-card,
.announcement-list a,
.mini-services a,
.lead-news-card,
.side-news-list a,
.about-values article,
.board-grid article,
.strategy-grid article,
.payment-grid article,
.tariff-table div {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.45s ease, transform 0.45s ease, box-shadow 0.2s ease;
}

.quick-card.is-visible,
.news-card.is-visible,
.service-list article.is-visible,
.section-card.is-visible,
.archive-grid article.is-visible,
.archive-grid a.is-visible,
.safety-rules article.is-visible,
.branches article.is-visible,
.timeline div.is-visible,
.big-service.is-visible,
.content-panel.is-visible,
.guidance-grid article.is-visible,
.video-card.is-visible,
.weather-card.is-visible,
.reports-card.is-visible,
.announcement-list a.is-visible,
.mini-services a.is-visible,
.lead-news-card.is-visible,
.side-news-list a.is-visible,
.about-values article.is-visible,
.board-grid article.is-visible,
.strategy-grid article.is-visible,
.payment-grid article.is-visible,
.tariff-table div.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.quick-card {
  min-height: 176px;
  padding: 24px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 247, 237, 0.92));
}

.quick-card::before,
.section-card::before,
.big-service::before,
.archive-grid article::before,
.archive-grid a::before,
.branches article::before,
.safety-rules article::before,
.timeline div::before,
.content-panel::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--amber));
}

.quick-card::after {
  content: "";
  position: absolute;
  inset: auto -30px -54px auto;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(245, 130, 31, 0.09);
}

.quick-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.section-card:hover,
.archive-grid article:hover,
.archive-grid a:hover,
.branches article:hover,
.big-service:hover,
.timeline div:hover,
.content-panel:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.quick-card span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  color: white;
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  font-weight: 900;
}

.quick-card strong,
.quick-card small {
  display: block;
}

.quick-card strong {
  font-size: 1.07rem;
}

.quick-card small {
  color: var(--muted);
  margin-top: 4px;
}

.section-title {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-title h2,
.renewable h2,
.safety-card h2 {
  font-size: clamp(2rem, 3.8vw, 4rem);
  font-weight: 900;
}

.services-layout,
.renewable-grid,
.safety-layout,
.footer-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 26px;
}

.service-feature {
  padding: 36px;
  min-height: 100%;
  color: white;
  background:
    linear-gradient(145deg, rgba(245, 130, 31, 0.92), rgba(217, 95, 10, 0.86)),
    url("assets/selco-hero.png");
  background-size: cover;
  background-position: left center;
  overflow: hidden;
  position: relative;
}

.service-feature::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(23, 38, 56, 0.5), rgba(217, 95, 10, 0.4));
}

.service-feature > * {
  position: relative;
}

.service-feature p {
  color: rgba(255, 255, 255, 0.84);
}

.feature-number {
  color: #ffe3b4;
  font-size: 3.8rem;
  font-weight: 900;
  line-height: 1;
}

.service-feature h3 {
  font-size: 2rem;
  margin: 24px 0 14px;
}

.service-list {
  display: grid;
  gap: 16px;
}

.service-list article {
  padding: 24px;
}

.service-list h3,
.news-card h3 {
  margin: 0 0 8px;
  font-size: 1.34rem;
}

.service-list p {
  margin: 0;
}

.renewable {
  background:
    linear-gradient(90deg, rgba(23, 38, 56, 0.92), rgba(23, 38, 56, 0.72)),
    url("assets/selco-hero.png");
  background-size: cover;
  background-position: center;
  color: white;
}

.renewable .eyebrow {
  color: white;
  background: rgba(245, 130, 31, 0.34);
  border-color: rgba(255, 255, 255, 0.2);
}

.renewable p {
  color: rgba(255, 255, 255, 0.76);
}

.renewable-grid {
  align-items: center;
}

.steps {
  display: grid;
  gap: 14px;
}

.steps div {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-weight: 900;
  backdrop-filter: blur(12px);
}

.steps span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  color: white;
  background: var(--orange);
}

.row-title {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  width: max-content;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  color: var(--orange-deep);
  background: rgba(245, 130, 31, 0.1);
  border: 1px solid rgba(245, 130, 31, 0.22);
  font-weight: 900;
}

.text-link::after {
  content: "←";
  margin-right: 8px;
}

.news-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(2, 0.875fr);
  gap: 18px;
}

.news-card {
  min-height: 276px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 24px;
  overflow: hidden;
  position: relative;
}

.news-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background:
    linear-gradient(135deg, transparent 24%, var(--orange) 24% 26%, transparent 26% 52%, var(--amber) 52% 54%, transparent 54%),
    linear-gradient(45deg, var(--blue), white);
}

.news-card > * {
  position: relative;
}

.news-card span {
  color: var(--orange-deep);
  font-weight: 900;
}

.news-card time {
  color: var(--muted);
}

.featured-news {
  color: white;
  background:
    linear-gradient(145deg, rgba(23, 38, 56, 0.78), rgba(217, 95, 10, 0.74)),
    url("assets/selco-hero.png");
  background-size: cover;
  background-position: center;
}

.featured-news::before {
  display: none;
}

.featured-news span,
.featured-news time {
  color: rgba(255, 255, 255, 0.78);
}

.safety {
  padding-top: 42px;
}

.safety-layout {
  align-items: stretch;
}

.safety-card {
  padding: 36px;
}

.safety-card span {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--charcoal);
  font-size: 1.7rem;
}

.safety-list {
  display: grid;
  gap: 14px;
}

.safety-list div {
  display: flex;
  align-items: center;
  padding: 24px;
  border-right: 5px solid var(--orange);
  border-radius: 8px;
  background: #fff3df;
  font-weight: 900;
}

.site-footer {
  padding: 58px 0;
  color: white;
  background:
    linear-gradient(145deg, rgba(23, 38, 56, 0.98), rgba(36, 39, 48, 0.96));
}

.footer-grid {
  grid-template-columns: 1.2fr 0.7fr 0.7fr;
}

.footer-brand .brand-logo {
  background: white;
}

.site-footer p,
.site-footer small,
.site-footer a,
.site-footer span {
  color: rgba(255, 255, 255, 0.74);
}

.site-footer h3 {
  margin: 0 0 14px;
  color: white;
}

.site-footer a,
.site-footer span {
  display: block;
  margin-top: 8px;
}

.showcase-grid,
.maintenance-grid,
.content-grid,
.contact-form,
.service-intro-grid,
.announcement-showcase {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 34px;
  align-items: center;
}

.text-right-image-left {
  direction: rtl;
}

.text-right-image-left > div {
  order: 1;
}

.text-right-image-left > img {
  order: 2;
}

.showcase-grid img,
.maintenance-grid img,
.service-intro-grid img,
.announcement-showcase img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.quick-card:nth-child(2) span {
  background: linear-gradient(135deg, var(--charcoal), #465061);
}

.quick-card:nth-child(3) span {
  background: linear-gradient(135deg, #304966, var(--navy));
}

.quick-card:nth-child(4) span {
  background: linear-gradient(135deg, var(--amber), var(--orange));
}

.text-right-image-left img {
  min-height: 460px;
}

.showcase h2,
.maintenance h2,
.service-intro h2,
.announcement-intro h2,
.home-announcements h2,
.page-hero h1,
.content-panel h2,
.big-service h2 {
  margin: 16px 0;
  line-height: 1.1;
  font-size: clamp(2rem, 4vw, 4.4rem);
  font-weight: 900;
}

.services-showcase {
  padding-top: 98px;
}

.service-banner-section {
  padding-top: 108px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(255, 241, 222, 0.92));
}

.service-banner {
  position: relative;
  overflow: hidden;
  padding: 26px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 244, 229, 0.9)),
    radial-gradient(circle at 10% 20%, rgba(245, 130, 31, 0.22), transparent 34%);
  border: 1px solid rgba(245, 130, 31, 0.16);
  box-shadow: var(--shadow);
}

.service-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(245, 130, 31, 0.13), transparent 34%, rgba(23, 38, 56, 0.05));
  pointer-events: none;
}

.service-banner > * {
  position: relative;
}

.service-banner-copy h2 {
  max-width: 620px;
  font-size: clamp(1.75rem, 2.8vw, 2.95rem);
}

.service-banner-copy p {
  max-width: 610px;
}

.service-banner-media {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 20px 54px rgba(23, 25, 31, 0.16);
}

.service-banner-media img {
  min-height: 390px;
  box-shadow: none;
  transition: transform 0.35s ease;
}

.service-banner:hover .service-banner-media img {
  transform: scale(1.035);
}

.mini-services {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 24px 0;
}

.mini-services a,
.announcement-list a {
  display: grid;
  gap: 3px;
  padding: 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(245, 130, 31, 0.16);
  box-shadow: 0 12px 28px rgba(23, 25, 31, 0.06);
}

.mini-services a {
  min-height: 118px;
  align-content: start;
  position: relative;
  overflow: hidden;
}

.mini-services a::before {
  content: "";
  width: 36px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), var(--amber));
  margin-bottom: 8px;
}

.mini-services b,
.announcement-list strong {
  font-weight: 900;
}

.mini-services small,
.announcement-list time {
  color: var(--muted);
}

.home-announcements {
  background:
    linear-gradient(135deg, rgba(23, 38, 56, 0.06), rgba(245, 130, 31, 0.12)),
    #ffffff;
}

.home-announcements .section-title {
  max-width: none;
  align-items: center;
  margin-bottom: 30px;
}

.home-announcements .section-title > div {
  display: grid;
  gap: 14px;
}

.home-announcements .section-title h2 {
  margin: 0;
}

.accent-title {
  display: inline-block;
  width: max-content;
  max-width: 100%;
  padding: 0.08em 0.28em 0.18em;
  border-radius: 8px;
  background: linear-gradient(180deg, transparent 48%, rgba(245, 130, 31, 0.2) 48%);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  font-size: clamp(1.9rem, 3.2vw, 3.35rem);
}

.landing-news-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  gap: 22px;
  align-items: stretch;
}

.lead-news-card,
.side-news-list a {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: white;
  border: 1px solid rgba(36, 39, 48, 0.1);
  box-shadow: 0 18px 44px rgba(23, 25, 31, 0.08);
}

.lead-news-card {
  min-height: 560px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 28px;
  color: white;
}

.lead-news-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.lead-news-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(23, 38, 56, 0.04), rgba(23, 38, 56, 0.82));
}

.lead-news-card > *:not(img) {
  position: relative;
  z-index: 1;
}

.lead-news-card span,
.side-news-list span {
  width: max-content;
  padding: 0.22rem 0.65rem;
  border-radius: 999px;
  color: white;
  background: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
}

.lead-news-card h3 {
  max-width: 760px;
  margin: 16px 0 8px;
  font-size: clamp(1.7rem, 2.8vw, 2.85rem);
  line-height: 1.14;
}

.lead-news-card p {
  max-width: 620px;
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.78);
}

.lead-news-card time {
  color: var(--amber);
  font-weight: 900;
}

.lead-news-card:hover img {
  transform: scale(1.04);
}

.side-news-list {
  display: grid;
  gap: 16px;
}

.side-news-list a {
  min-height: 176px;
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 16px;
  padding: 14px;
  align-items: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.side-news-list img {
  width: 100%;
  height: 148px;
  object-fit: cover;
  border-radius: 8px;
}

.side-news-list div {
  display: grid;
  gap: 8px;
}

.side-news-list strong {
  font-size: 1.12rem;
  line-height: 1.45;
}

.side-news-list time {
  color: var(--muted);
  font-weight: 800;
}

.side-news-list a:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.announcement-showcase {
  grid-template-columns: 0.92fr 1.08fr;
}

.announcement-list {
  display: grid;
  gap: 12px;
  margin: 22px 0 24px;
}

.announcement-list span {
  width: max-content;
  padding: 0.18rem 0.58rem;
  border-radius: 999px;
  color: white;
  background: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
}

.stat-band {
  color: white;
  background:
    linear-gradient(135deg, rgba(245, 130, 31, 0.96), rgba(217, 95, 10, 0.92)),
    url("assets/selco-hero.png");
  background-size: cover;
  background-position: center;
}

.guidance-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(255, 247, 237, 0.86));
}

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

.guidance-grid article,
.video-card,
.weather-card,
.reports-card {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  padding: 28px;
  border-radius: 8px;
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 18px 44px rgba(23, 25, 31, 0.08);
}

.guidance-section .row-title .text-link,
.section .row-title .text-link {
  flex: 0 0 auto;
  margin-right: auto;
}

.guidance-grid {
  align-items: stretch;
}

.guidance-grid article {
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 8px;
  min-height: 250px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 247, 237, 0.86));
}

.guidance-grid article:nth-child(2) {
  margin-top: 18px;
}

.guidance-grid article:nth-child(3) {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(217, 237, 247, 0.72));
}

.guidance-grid article::before,
.video-card::before,
.weather-card::before,
.reports-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background:
    linear-gradient(135deg, transparent 28%, var(--orange) 28% 30%, transparent 30% 58%, var(--amber) 58% 60%, transparent 60%);
}

.guidance-grid article > *,
.video-card > *,
.weather-card > *,
.reports-card > * {
  position: relative;
}

.guidance-grid span {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: white;
  background: var(--orange);
  font-weight: 900;
}

.guidance-grid h3 {
  margin: 18px 0 8px;
  font-size: 1.35rem;
}

.guidance-grid p,
.video-card p,
.weather-card p,
.reports-card p {
  color: var(--muted);
}

.media-reports {
  background: #f6f8fb;
}

.video-card {
  grid-column: span 1;
  min-height: 360px;
  color: white;
  background:
    linear-gradient(145deg, rgba(23, 38, 56, 0.78), rgba(217, 95, 10, 0.66)),
    url("assets/maintenance-field.png");
  background-size: cover;
  background-position: center;
}

.video-card p,
.video-card small {
  color: rgba(255, 255, 255, 0.78);
}

.play-mark {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin-bottom: 72px;
  border-radius: 50%;
  color: var(--orange);
  background: white;
  font-size: 1.3rem;
}

.weather-card {
  color: white;
  background: linear-gradient(145deg, #172638, #304966);
}

.weather-card::before {
  opacity: 0.14;
}

.weather-card small,
.weather-card p {
  color: rgba(255, 255, 255, 0.74);
}

.weather-card strong {
  display: block;
  margin: 24px 0 8px;
  font-size: 4rem;
  line-height: 1;
}

.weather-card span {
  color: var(--amber);
  font-weight: 900;
}

.reports-card h2,
.video-card h2 {
  margin: 10px 0;
  font-size: clamp(1.7rem, 2.7vw, 2.6rem);
  line-height: 1.18;
}

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

.stats div {
  padding: 22px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
}

.stats b,
.stats span {
  display: block;
}

.stats b {
  font-size: 2.6rem;
  line-height: 1;
}

.section-cards,
.archive-grid,
.safety-rules,
.branches,
.service-page-grid,
.timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

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

.section-card,
.archive-grid article,
.archive-grid a,
.safety-rules article,
.branches article,
.big-service,
.timeline div,
.content-panel {
  position: relative;
  overflow: hidden;
  min-height: 210px;
  padding: 26px;
  border-radius: 8px;
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 18px 44px rgba(23, 25, 31, 0.08);
}

.section-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.section-card::after {
  content: "↗";
  align-self: flex-start;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-top: 22px;
  border-radius: 50%;
  color: white;
  background: var(--charcoal);
  font-weight: 900;
}

.section-card strong,
.section-card small,
.branches span,
.branches a,
.timeline strong {
  display: block;
}

.section-card strong,
.timeline strong {
  font-size: 1.35rem;
  font-weight: 900;
}

.section-card small,
.timeline p,
.branches p,
.archive-grid time,
.safety-rules p,
.big-service p,
.content-panel p,
.contact-form p {
  color: var(--muted);
}

.maintenance {
  background:
    linear-gradient(135deg, rgba(245, 130, 31, 0.09), rgba(255, 255, 255, 0.86)),
    #f4f7f8;
}

.soft-section {
  background:
    linear-gradient(135deg, rgba(245, 130, 31, 0.08), rgba(217, 237, 247, 0.55)),
    #f8fbfd;
}

.maintenance-grid {
  grid-template-columns: 0.9fr 1.1fr;
}

.page-hero {
  position: relative;
  padding: 88px 0;
  color: white;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(23, 38, 56, 0.92), rgba(23, 38, 56, 0.54)),
    url("assets/selco-hero.png");
  background-size: cover;
  background-position: center;
}

.page-hero p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.16rem;
}

.page-hero .eyebrow {
  color: white;
  background: rgba(245, 130, 31, 0.42);
  border-color: rgba(255, 255, 255, 0.24);
}

.service-bg,
.contact-bg {
  background-image:
    linear-gradient(90deg, rgba(23, 38, 56, 0.92), rgba(23, 38, 56, 0.5)),
    url("assets/customer-center.png");
}

.about-bg {
  background-image:
    linear-gradient(90deg, rgba(23, 38, 56, 0.92), rgba(217, 95, 10, 0.46)),
    url("assets/customer-center.png");
}

.safety-bg,
.announcement-bg {
  background-image:
    linear-gradient(90deg, rgba(23, 38, 56, 0.9), rgba(217, 95, 10, 0.44)),
    url("assets/maintenance-field.png");
}

.renewable-page {
  background-image:
    linear-gradient(90deg, rgba(23, 38, 56, 0.9), rgba(217, 95, 10, 0.32)),
    url("assets/selco-hero.png");
}

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

.dark-panel {
  color: white;
  background: linear-gradient(145deg, var(--navy), var(--charcoal));
}

.dark-panel p {
  color: rgba(255, 255, 255, 0.75);
}

.timeline {
  grid-template-columns: repeat(4, 1fr);
}

.timeline span,
.safety-rules b {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: white;
  background: var(--orange);
  font-weight: 900;
}

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

.big-service {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}

.service-intro {
  padding-bottom: 20px;
}

.service-intro-grid {
  grid-template-columns: 1.04fr 0.96fr;
}

.card-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  color: white;
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  font-size: 1.35rem;
  font-weight: 900;
}

.big-service h2 {
  font-size: clamp(1.7rem, 2.8vw, 2.45rem);
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.filter-row button {
  border: 1px solid rgba(245, 130, 31, 0.24);
  border-radius: 999px;
  padding: 0.72rem 1rem;
  color: var(--orange-deep);
  background: white;
  font: inherit;
  font-weight: 900;
}

.filter-row button:first-child {
  color: white;
  background: var(--orange);
  border-color: var(--orange);
}

.archive-grid article span {
  display: inline-flex;
  width: max-content;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  color: white;
  background: var(--orange);
  font-weight: 900;
}

.archive-grid a {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.media-archive a {
  padding: 0;
}

.media-archive img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
  background: #fff3df;
}

.media-archive span,
.media-archive h2,
.media-archive time {
  margin-right: 24px;
  margin-left: 24px;
}

.media-archive span {
  margin-top: 22px;
}

.media-archive time {
  display: block;
  margin-bottom: 4px;
}

.archive-grid a::after {
  content: "قراءة التفاصيل";
  width: max-content;
  margin: 24px 24px 24px 0;
  padding: 0.46rem 0.8rem;
  border-radius: 999px;
  color: var(--orange-deep);
  background: rgba(245, 130, 31, 0.1);
  font-weight: 900;
}

.archive-grid a span {
  display: inline-flex;
  width: max-content;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  color: white;
  background: var(--orange);
  font-weight: 900;
}

.detail-hero {
  padding: 72px 0;
  color: white;
  background:
    linear-gradient(135deg, rgba(23, 38, 56, 0.96), rgba(217, 95, 10, 0.7)),
    url("assets/announcements-desk.png");
  background-size: cover;
  background-position: center;
}

.detail-hero-grid {
  display: grid;
  grid-template-columns: 0.98fr 1.02fr;
  gap: 34px;
  align-items: center;
}

.detail-hero h1 {
  margin: 16px 0;
  max-width: 820px;
  font-size: clamp(2rem, 4vw, 4.35rem);
  line-height: 1.12;
  font-weight: 900;
}

.detail-hero p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.14rem;
}

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

.field-detail {
  background-image:
    linear-gradient(135deg, rgba(23, 38, 56, 0.96), rgba(217, 95, 10, 0.62)),
    url("assets/maintenance-field.png");
}

.service-detail {
  background-image:
    linear-gradient(135deg, rgba(23, 38, 56, 0.96), rgba(217, 95, 10, 0.62)),
    url("assets/customer-center.png");
}

.back-link {
  display: inline-flex;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 900;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 24px;
  align-items: start;
}

.detail-body,
.detail-sidebar {
  padding: 30px;
  border-radius: 8px;
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 18px 44px rgba(23, 25, 31, 0.08);
}

.detail-body h2 {
  margin: 0 0 12px;
  font-size: 1.7rem;
}

.detail-body p,
.detail-body li {
  color: var(--muted);
}

.detail-body ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0 20px 0 0;
}

.detail-sidebar {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 12px;
  background: linear-gradient(180deg, white, #fff7ed);
}

.detail-sidebar strong {
  font-size: 1.35rem;
}

.detail-sidebar span {
  padding: 12px;
  border-radius: 8px;
  color: var(--charcoal);
  background: rgba(245, 130, 31, 0.09);
  font-weight: 800;
}

.about-overview-grid,
.coverage-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 34px;
  align-items: center;
}

.about-overview-grid img {
  width: 100%;
  min-height: 430px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.about-overview h2,
.coverage-section h2 {
  margin: 16px 0;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.12;
  font-weight: 900;
}

.about-overview p,
.coverage-section p {
  color: var(--muted);
}

.about-values,
.board-grid,
.strategy-grid,
.payment-grid,
.tariff-table {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.board-grid,
.payment-grid,
.tariff-table {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-values article,
.board-grid article,
.strategy-grid article,
.payment-grid article,
.tariff-table div {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  padding: 26px;
  border-radius: 8px;
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 18px 44px rgba(23, 25, 31, 0.08);
}

.about-values article::before,
.board-grid article::before,
.strategy-grid article::before,
.payment-grid article::before,
.tariff-table div::before {
  content: "";
  position: absolute;
  inset: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--amber));
}

.about-values span,
.strategy-grid span {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: white;
  background: var(--orange);
  font-weight: 900;
}

.about-values h3,
.board-grid h2,
.strategy-grid h2,
.payment-grid h2 {
  margin: 18px 0 10px;
  font-size: 1.35rem;
}

.about-values p,
.board-grid p,
.strategy-grid p,
.payment-grid p {
  color: var(--muted);
}

.board-grid article span,
.payment-grid article span {
  display: inline-flex;
  width: max-content;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  color: white;
  background: var(--orange);
  font-weight: 900;
}

.coverage-section {
  color: white;
  background:
    linear-gradient(135deg, rgba(23, 38, 56, 0.94), rgba(217, 95, 10, 0.74)),
    url("assets/selco-hero.png");
  background-size: cover;
  background-position: center;
}

.coverage-section p {
  color: rgba(255, 255, 255, 0.78);
}

.coverage-map {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.coverage-map span {
  min-height: 130px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 1.45rem;
  font-weight: 900;
  backdrop-filter: blur(12px);
}

.org-chart {
  display: grid;
  gap: 18px;
  padding: 28px;
  border-radius: 8px;
  background: linear-gradient(180deg, white, #fff7ed);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

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

.org-node {
  min-height: 92px;
  display: grid;
  place-items: center;
  padding: 16px;
  border-radius: 8px;
  color: var(--charcoal);
  background: white;
  border: 1px solid rgba(245, 130, 31, 0.18);
  font-weight: 900;
  text-align: center;
}

.org-node.main {
  min-height: 110px;
  color: white;
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  font-size: 1.6rem;
}

.org-node.soft {
  background: #fff3df;
}

.tariff-table div {
  min-height: 180px;
}

.tariff-table strong,
.tariff-table span {
  display: block;
}

.tariff-table strong {
  font-size: 1.35rem;
}

.tariff-table span {
  margin-top: 10px;
  color: var(--muted);
}

.archive-grid h2,
.safety-rules h2,
.branches h2 {
  margin: 12px 0 10px;
  font-size: 1.35rem;
  line-height: 1.35;
}

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

.branches article strong {
  display: block;
  margin: 12px 0;
  color: var(--orange-deep);
}

.contact-form form {
  display: grid;
  gap: 12px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1rem;
  font: inherit;
  background: white;
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form form {
  padding: 24px;
  border-radius: 8px;
  background: white;
  box-shadow: 0 18px 44px rgba(23, 25, 31, 0.08);
}

@media (max-width: 980px) {
  .pay-button {
    display: none;
  }

  .nav-links {
    position: absolute;
    top: 80px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: var(--shadow);
  }

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

  .nav-links a {
    padding: 12px 10px;
  }

  .menu-button {
    display: grid;
    place-items: center;
  }

  .hero {
    min-height: auto;
    background-image:
      linear-gradient(180deg, rgba(255, 250, 243, 0.96) 0%, rgba(255, 250, 243, 0.82) 55%, rgba(23, 38, 56, 0.28) 100%),
      url("assets/selco-hero.png");
  }

  .hero-layout,
  .services-layout,
  .renewable-grid,
  .safety-layout,
  .footer-grid,
  .news-grid,
  .showcase-grid,
  .maintenance-grid,
  .content-grid,
  .contact-form,
  .detail-hero-grid,
  .detail-layout,
  .about-overview-grid,
  .coverage-grid {
    grid-template-columns: 1fr;
  }

  .detail-sidebar {
    position: static;
  }

  .service-intro-grid,
  .announcement-showcase,
  .landing-news-grid {
    grid-template-columns: 1fr;
  }

  .mini-services {
    grid-template-columns: 1fr;
  }

  .lead-news-card {
    min-height: 460px;
  }

  .quick-grid,
  .stats,
  .section-cards,
  .archive-grid,
  .safety-rules,
  .branches,
  .service-page-grid,
  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-values,
  .board-grid,
  .strategy-grid,
  .payment-grid,
  .tariff-table,
  .org-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 22px, 1180px);
  }

  .nav {
    gap: 10px;
    overflow: hidden;
  }

  .brand {
    flex: 1 1 auto;
    max-width: calc(100% - 58px);
  }

  .brand small {
    max-width: 190px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .menu-button {
    flex: 0 0 44px;
  }

  .hero-layout {
    padding: 48px 0 82px;
  }

  .hero-copy,
  .hero-visual,
  .service-panel,
  .quick-card,
  .side-news-list a {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .hero h1 {
    font-size: 2.18rem;
    overflow-wrap: anywhere;
  }

  .hero-copy p {
    font-size: 1.06rem;
    overflow-wrap: anywhere;
  }

  .hero-actions,
  .row-title {
    align-items: stretch;
    flex-direction: column;
  }

  .home-announcements .section-title {
    align-items: stretch;
    gap: 12px;
  }

  .accent-title {
    width: auto;
    font-size: 1.7rem;
  }

  .text-link {
    max-width: 100%;
    white-space: normal;
  }

  .primary-btn,
  .ghost-btn {
    width: 100%;
  }

  .quick-grid,
  .panel-grid,
  .stats,
  .section-cards,
  .archive-grid,
  .safety-rules,
  .branches,
  .service-page-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .about-values,
  .board-grid,
  .strategy-grid,
  .payment-grid,
  .tariff-table,
  .org-row,
  .coverage-map {
    grid-template-columns: 1fr;
  }

  .quick-services,
  .section {
    padding: 60px 0;
  }

  .side-news-list a {
    grid-template-columns: 1fr;
  }

  .side-news-list img {
    height: 210px;
  }

  .lead-news-card {
    min-height: 420px;
  }

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

  .brand strong {
    max-width: 190px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .service-banner {
    padding: 18px;
  }

  .service-banner-media img,
  .showcase-grid img,
  .maintenance-grid img,
  .service-intro-grid img,
  .announcement-showcase img {
    min-height: 280px;
  }

  .guidance-grid article:nth-child(2) {
    margin-top: 0;
  }
}

@media (max-width: 620px) {
  body {
    background:
      linear-gradient(180deg, #fff7ed 0, #f8fbfd 360px, #fffaf3 100%);
  }

  img,
  video,
  iframe {
    max-width: 100%;
  }

  .site-header {
    background: rgba(255, 250, 243, 0.96);
  }

  .nav {
    min-height: 68px;
    padding: 8px 0;
  }

  .brand {
    gap: 9px;
  }

  .brand > span {
    min-width: 0;
  }

  .brand strong {
    max-width: none;
    font-size: 0.92rem;
    line-height: 1.25;
  }

  .brand small {
    max-width: 150px;
    font-size: 0.68rem;
  }

  .menu-button {
    width: 42px;
    height: 42px;
    font-size: 1.05rem;
    box-shadow: 0 8px 18px rgba(23, 25, 31, 0.1);
  }

  .nav-links {
    top: 70px;
    right: 11px;
    left: 11px;
    padding: 8px;
    max-height: calc(100vh - 86px);
    overflow-y: auto;
  }

  .nav-links a {
    border-radius: 8px;
    background: rgba(245, 130, 31, 0.06);
  }

  .hero {
    min-height: auto;
    background-position: center top;
  }

  .hero-layout {
    gap: 18px;
    padding: 36px 0 56px;
  }

  .hero-copy {
    padding: 8px 0 0;
  }

  .hero h1 {
    margin: 12px 0;
    font-size: clamp(2rem, 9vw, 2.55rem);
    line-height: 1.16;
  }

  .hero-copy p,
  .showcase p,
  .maintenance p,
  .service-banner-copy p {
    font-size: 0.98rem;
    line-height: 1.85;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 20px;
  }

  .primary-btn,
  .ghost-btn,
  .pay-button,
  .text-link {
    min-height: 44px;
    padding: 0.68rem 1rem;
    font-size: 0.92rem;
  }

  .hero-visual {
    justify-content: stretch;
  }

  .service-panel {
    padding: 18px;
    border-radius: 8px;
  }

  .panel-head {
    gap: 8px;
    font-size: 0.88rem;
  }

  .panel-grid {
    gap: 8px;
  }

  .panel-grid div {
    padding: 12px;
  }

  .panel-grid b {
    font-size: 1.05rem;
  }

  .quick-services {
    padding-top: 22px;
  }

  .quick-grid {
    gap: 12px;
    margin-top: -24px;
  }

  .quick-card {
    min-height: auto;
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    column-gap: 12px;
    align-items: center;
    padding: 16px;
  }

  .quick-card span {
    grid-row: span 2;
    margin: 0;
  }

  .quick-card strong {
    font-size: 1rem;
    line-height: 1.35;
  }

  .quick-card small {
    margin: 2px 0 0;
    font-size: 0.84rem;
    line-height: 1.55;
  }

  .section {
    padding: 48px 0;
  }

  .section-title {
    margin-bottom: 22px;
  }

  .row-title {
    gap: 14px;
  }

  .section-title h2,
  .showcase h2,
  .maintenance h2,
  .service-intro h2,
  .announcement-intro h2,
  .home-announcements h2,
  .page-hero h1,
  .content-panel h2,
  .big-service h2,
  .renewable h2,
  .safety-card h2 {
    font-size: clamp(1.55rem, 7.2vw, 2.15rem);
    line-height: 1.25;
  }

  .eyebrow {
    max-width: 100%;
    padding: 0.3rem 0.65rem;
    font-size: 0.75rem;
    line-height: 1.45;
    white-space: normal;
  }

  .text-link {
    width: fit-content;
    max-width: 100%;
    align-self: flex-start;
    background: rgba(245, 130, 31, 0.14);
  }

  .section .row-title .text-link,
  .guidance-section .row-title .text-link {
    margin-right: 0;
  }

  .service-banner-section {
    padding-top: 48px;
  }

  .service-banner {
    gap: 18px;
    padding: 14px;
    box-shadow: 0 16px 34px rgba(23, 25, 31, 0.09);
  }

  .service-banner-copy h2 {
    max-width: none;
  }

  .mini-services {
    gap: 10px;
    margin: 16px 0;
  }

  .mini-services a,
  .announcement-list a,
  .section-card,
  .archive-grid article,
  .archive-grid a,
  .safety-rules article,
  .branches article,
  .content-panel,
  .big-service {
    min-height: auto;
    padding: 16px;
  }

  .service-banner-media img,
  .showcase-grid img,
  .maintenance-grid img,
  .service-intro-grid img,
  .announcement-showcase img {
    height: auto;
    min-height: 220px;
    max-height: 310px;
    aspect-ratio: 4 / 3;
  }

  .stats {
    gap: 10px;
  }

  .stats div {
    padding: 16px;
  }

  .stats b {
    font-size: 1.85rem;
  }

  .stats span {
    font-size: 0.9rem;
    line-height: 1.55;
  }

  .guidance-grid,
  .media-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .guidance-grid article,
  .video-card,
  .weather-card,
  .reports-card {
    min-height: auto;
    padding: 18px;
  }

  .guidance-grid article {
    grid-template-columns: 46px minmax(0, 1fr);
    grid-template-rows: auto auto;
    column-gap: 12px;
    align-items: start;
  }

  .guidance-grid span {
    grid-row: span 2;
  }

  .guidance-grid h3 {
    margin: 0 0 4px;
    font-size: 1.08rem;
    line-height: 1.45;
  }

  .guidance-grid p {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.75;
  }

  .home-announcements .section-title > div {
    gap: 8px;
  }

  .accent-title {
    display: block;
    width: 100%;
    padding: 0.08em 0.2em 0.16em;
  }

  .landing-news-grid {
    gap: 14px;
  }

  .lead-news-card {
    min-height: 360px;
    padding: 20px;
  }

  .lead-news-card h3 {
    margin: 12px 0 6px;
    font-size: 1.42rem;
    line-height: 1.25;
  }

  .lead-news-card p {
    font-size: 0.92rem;
    line-height: 1.7;
  }

  .lead-news-card span,
  .side-news-list span,
  .announcement-list span {
    width: fit-content;
    max-width: 100%;
    font-size: 0.72rem;
  }

  .side-news-list {
    gap: 12px;
  }

  .side-news-list a {
    min-height: auto;
    gap: 12px;
    padding: 12px;
  }

  .side-news-list img {
    height: auto;
    min-height: 170px;
    max-height: 220px;
    aspect-ratio: 16 / 10;
  }

  .side-news-list strong {
    font-size: 1rem;
    line-height: 1.5;
  }

  .play-mark {
    width: 52px;
    height: 52px;
    margin-bottom: 34px;
  }

  .weather-card strong {
    margin: 14px 0 6px;
    font-size: 3rem;
  }

  .reports-card h2,
  .video-card h2 {
    font-size: 1.45rem;
  }

  .footer-grid {
    gap: 24px;
  }

  .site-footer {
    padding: 42px 0;
  }
}

@media (max-width: 380px) {
  .container {
    width: min(100% - 18px, 1180px);
  }

  .brand strong {
    font-size: 0.84rem;
  }

  .brand small {
    max-width: 122px;
  }

  .hero h1 {
    font-size: 1.86rem;
  }

  .quick-card {
    grid-template-columns: 42px minmax(0, 1fr);
    padding: 14px;
  }

  .quick-card span,
  .guidance-grid span {
    width: 42px;
    height: 42px;
  }
}
