/* SAHAL NET FINAL RESPONSIVE CSS */

:root {
  --navy: #08243d;
  --navy-2: #0f385d;
  --blue: #2e9bda;
  --gold: #f0c866;
  --gold-2: #d9ab3c;
  --green: #25c56c;
  --text: #102a43;
  --muted: #5b728a;
  --soft: #eef6fb;
  --white: #ffffff;
  --line: rgba(13, 47, 79, .10);
  --shadow: 0 18px 50px rgba(8, 36, 61, .12);
  --shadow-dark: 0 24px 70px rgba(2, 17, 31, .25);
  --radius: 24px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
  background: #f7fbfd;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
select {
  font-family: inherit;
}

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

/* HEADER */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 250, 253, .92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

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

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

.brand-logo {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #ffe9a6, var(--gold));
  color: var(--navy);
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(217, 171, 60, .22);
}

.brand strong {
  display: block;
  font-size: 1.25rem;
  line-height: 1;
  letter-spacing: -.04em;
}

.brand small {
  display: block;
  margin-top: 5px;
  font-size: .70rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #54708a;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.nav-menu a {
  font-size: .95rem;
  font-weight: 700;
  color: #395a75;
}

.nav-menu a:hover {
  color: var(--navy);
}

.nav-action {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn {
  min-height: 46px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: .94rem;
  font-weight: 800;
  cursor: pointer;
  transition: .25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-gold {
  background: linear-gradient(135deg, #ffe59a, var(--gold));
  color: var(--navy);
  box-shadow: 0 14px 30px rgba(217, 171, 60, .23);
}

.btn-light {
  background: rgba(255, 255, 255, .78);
  border: 1px solid rgba(13, 47, 79, .08);
  color: #0d4672;
}

.btn-outline {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .22);
  color: #fff;
}

.full {
  width: 100%;
}

.menu-toggle {
  width: 46px;
  height: 46px;
  display: none;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  cursor: pointer;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  display: block;
  margin: 4px auto;
  border-radius: 99px;
  background: var(--navy);
}

/* HERO */
.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  padding: 90px 0 54px;
  background:
    radial-gradient(circle at 88% 12%, rgba(60, 161, 222, .25), transparent 32%),
    linear-gradient(135deg, #08243d 0%, #0f385d 100%);
  color: #fff;
  overflow: hidden;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: .28;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 42px 42px;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr .92fr;
  align-items: center;
  gap: 64px;
}

.hero-copy {
  max-width: 620px;
}

.badge {
  width: fit-content;
  max-width: 100%;
  margin-bottom: 22px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 229, 154, .25);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ffe293;
  background: rgba(255,255,255,.08);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.badge span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(37, 197, 108, .14);
}

.hero h1 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(2.35rem, 4.2vw, 4rem);
  line-height: 1.08;
  letter-spacing: -.055em;
}

.hero p {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(240, 248, 255, .78);
  font-size: 1.05rem;
  line-height: 1.75;
}

.hero-buttons {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-note {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-note span {
  padding: 9px 13px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  color: rgba(240,248,255,.82);
  background: rgba(255,255,255,.06);
  font-size: .88rem;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  min-height: 420px;
  display: grid;
  place-items: center;
}

.hero-visual::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  border: 1px solid rgba(240, 200, 102, .22);
  box-shadow: inset 0 0 0 54px rgba(46, 155, 218, .04);
}

.wifi-card {
  position: relative;
  z-index: 2;
  width: min(100%, 420px);
  padding: 30px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,.16), rgba(255,255,255,.08));
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: var(--shadow-dark);
  backdrop-filter: blur(14px);
}

.wifi-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.chip {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: linear-gradient(135deg, #87dce8, #f5d879);
  box-shadow: 0 12px 26px rgba(134, 220, 232, .28);
}

.online {
  padding: 8px 13px;
  border-radius: 999px;
  color: #a7f5c4;
  background: rgba(37,197,108,.14);
  font-size: .82rem;
  font-weight: 800;
}

.wifi-card small {
  color: #ffe293;
  font-weight: 800;
  letter-spacing: .12em;
}

.wifi-card h2 {
  margin: 10px 0 10px;
  font-size: 2rem;
  letter-spacing: -.04em;
}

.wifi-card p {
  margin: 0;
  font-size: .98rem;
}

.signal {
  margin-top: 26px;
  display: flex;
  justify-content: flex-end;
  align-items: end;
  gap: 8px;
}

.signal span {
  width: 10px;
  border-radius: 99px;
  background: linear-gradient(180deg, #ffe59a, var(--gold));
}

.signal span:nth-child(1) { height: 18px; }
.signal span:nth-child(2) { height: 28px; }
.signal span:nth-child(3) { height: 40px; }
.signal span:nth-child(4) { height: 52px; }
.signal span:nth-child(5) { height: 64px; }

.float-card {
  position: absolute;
  z-index: 3;
  width: 150px;
  padding: 16px;
  border-radius: 20px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 18px 40px rgba(0,0,0,.18);
  backdrop-filter: blur(12px);
}

.float-card b {
  display: block;
  margin-bottom: 4px;
}

.float-card small {
  color: rgba(240,248,255,.75);
}

.card-1 {
  left: 24px;
  top: 62px;
}

.card-2 {
  right: 4px;
  bottom: 92px;
}

.stats {
  position: relative;
  z-index: 2;
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.stats div {
  padding: 20px;
  border-radius: 20px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
}

.stats strong {
  display: block;
  margin-bottom: 6px;
  color: #ffe293;
  font-size: 1.05rem;
}

.stats span {
  color: rgba(240,248,255,.76);
  font-size: .94rem;
}

/* SECTIONS */
.section {
  padding: 88px 0;
}

.section-soft {
  background: var(--soft);
}

.dark {
  background:
    radial-gradient(circle at 15% 15%, rgba(46, 155, 218, .18), transparent 34%),
    linear-gradient(135deg, #08243d 0%, #0e3355 100%);
  color: #fff;
}

.two-col,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.section-title span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--blue);
  font-size: .80rem;
  font-weight: 800;
  letter-spacing: .10em;
  text-transform: uppercase;
}

.section-title h2 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(1.75rem, 3vw, 2.65rem);
  line-height: 1.18;
  letter-spacing: -.045em;
}

.section-title p {
  max-width: 650px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.section-title.center {
  max-width: 760px;
  margin: 0 auto 38px;
  text-align: center;
}

.section-title.center h2,
.section-title.center p {
  margin-left: auto;
  margin-right: auto;
}

.light-text span {
  color: #ffe293;
}

.light-text p {
  color: rgba(240,248,255,.75);
}

.card-grid {
  display: grid;
  gap: 24px;
}

.card-grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.service-card,
.profile-box article,
.steps article,
.list-box div {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.service-card {
  padding: 28px;
}

.icon {
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  color: var(--navy);
  background: linear-gradient(135deg, rgba(46,155,218,.14), rgba(240,200,102,.25));
  font-size: 1.2rem;
  font-weight: 800;
}

.service-card h3,
.profile-box h3,
.steps h3,
.price-card h3,
.contact-form h3 {
  margin: 0 0 10px;
  font-size: 1.25rem;
  line-height: 1.3;
  letter-spacing: -.03em;
}

.service-card p,
.profile-box p,
.steps p {
  margin: 0;
  color: var(--muted);
}

.service-card ul,
.price-card ul {
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.service-card li,
.price-card li {
  margin: 8px 0;
}

.profile-box {
  display: grid;
  gap: 20px;
}

.profile-box article {
  padding: 28px;
}

/* PRICE */
.price-card {
  position: relative;
  padding: 28px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.15);
  box-shadow: var(--shadow-dark);
}

.price-card.popular {
  border-color: rgba(240,200,102,.55);
  transform: translateY(-8px);
}

.label {
  position: absolute;
  top: -14px;
  left: 22px;
  padding: 7px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffe59a, var(--gold));
  color: var(--navy);
  font-size: .76rem;
  font-weight: 800;
}

.price-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  margin-bottom: 20px;
}

.price-head b {
  color: #ffe293;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .82rem;
}

.price-head span {
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  color: rgba(240,248,255,.80);
  font-size: .78rem;
  font-weight: 800;
}

.price-card h3 {
  color: #fff;
  font-size: 2rem;
}

.price-card h3 small {
  color: rgba(240,248,255,.72);
  font-size: 1rem;
  font-weight: 600;
}

.price-card p,
.price-card ul {
  color: rgba(240,248,255,.76);
}

/* AREA */
.area-map {
  position: relative;
  width: min(100%, 430px);
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  border-radius: 34px;
  background:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(135deg, #0e3355, #154a75);
  background-size: 28px 28px, 28px 28px, auto;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.map-center {
  position: absolute;
  left: 50%;
  top: 50%;
  padding: 24px 28px;
  transform: translate(-50%, -50%);
  border-radius: 24px;
  color: #fff;
  text-align: center;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.16);
}

.map-center b {
  display: block;
  font-size: 1.25rem;
}

.map-center small {
  color: rgba(240,248,255,.75);
}

.node {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #71d4ff;
  box-shadow: 0 0 0 9px rgba(113,212,255,.14), 0 0 28px rgba(113,212,255,.55);
}

.n1 { top: 70px; left: 88px; }
.n2 { top: 90px; right: 84px; }
.n3 { bottom: 88px; left: 76px; }
.n4 { bottom: 76px; right: 96px; }

.list-box {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.list-box div {
  padding: 18px;
}

.list-box b {
  display: block;
  margin-bottom: 4px;
}

.list-box small {
  color: var(--muted);
}

/* STEPS */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.steps article {
  padding: 26px;
}

.steps span {
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--navy-2));
  font-weight: 800;
}

/* CONTACT */
.contact-info {
  margin-top: 28px;
  display: grid;
  gap: 14px;
}

.contact-info div,
.contact-form {
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.09);
  border-radius: 20px;
}

.contact-info div {
  padding: 18px;
}

.contact-info small {
  display: block;
  margin-bottom: 4px;
  color: rgba(240,248,255,.68);
}

.contact-info b {
  color: #fff;
}

.contact-form {
  padding: 28px;
  box-shadow: var(--shadow-dark);
}

.contact-form h3 {
  color: #fff;
  margin-bottom: 20px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 15px;
  color: #fff;
  font-weight: 700;
}

.contact-form input,
.contact-form select {
  width: 100%;
  min-height: 50px;
  padding: 0 15px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 15px;
  outline: none;
  color: #fff;
  background: rgba(255,255,255,.10);
}

.contact-form input::placeholder {
  color: rgba(255,255,255,.50);
}

.contact-form select option {
  color: var(--text);
}

/* FOOTER */
.footer {
  padding: 34px 0;
  color: rgba(240,248,255,.78);
  background: #06192b;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr .6fr .7fr;
  gap: 24px;
  align-items: center;
}

.footer p {
  margin: 14px 0 0;
  max-width: 420px;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links a {
  font-weight: 700;
}

.copyright {
  justify-self: end;
  text-align: right;
}

/* FLOAT WA */
.floating-wa {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 12px 20px 12px 13px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #27d972, #12af58);
  box-shadow: 0 18px 36px rgba(18,175,88,.28);
}

.floating-wa span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.16);
  font-size: .82rem;
  font-weight: 800;
}

/* RESPONSIVE */
@media (max-width: 1060px) {
  .nav-menu {
    gap: 18px;
  }

  .hero-grid {
    gap: 40px;
  }

  .card-grid.three {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

@media (max-width: 900px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .nav-wrap {
    min-height: 70px;
  }

  .nav-menu {
    position: fixed;
    inset: 70px 14px auto 14px;
    display: none;
    padding: 16px;
    border-radius: 22px;
    background: rgba(255,255,255,.98);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .nav-menu.active {
    display: grid;
    gap: 6px;
  }

  .nav-menu a {
    padding: 12px 14px;
    border-radius: 14px;
  }

  .nav-menu a:hover {
    background: var(--soft);
  }

  .nav-action .btn {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    min-height: auto;
    padding: 64px 0 46px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero h1 {
    max-width: 760px;
    font-size: clamp(2.1rem, 7vw, 3.2rem);
  }

  .hero p {
    font-size: 1rem;
  }

  .hero-visual {
    min-height: 360px;
  }

  .hero-visual::before {
    width: 320px;
    height: 320px;
  }

  .wifi-card {
    max-width: 390px;
  }

  .card-1 {
    left: 4px;
    top: 22px;
  }

  .card-2 {
    right: 0;
    bottom: 54px;
  }

  .two-col,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .reverse-mobile .area-map {
    order: 2;
  }

  .reverse-mobile .section-title {
    order: 1;
  }

  .footer-grid,
  .copyright {
    text-align: left;
  }

  .copyright {
    justify-self: start;
  }
}

@media (max-width: 640px) {
  .brand-logo {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }

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

  .brand small {
    font-size: .62rem;
    letter-spacing: .10em;
  }

  .hero {
    padding: 46px 0 38px;
  }

  .badge {
    font-size: .72rem;
    line-height: 1.35;
    border-radius: 18px;
  }

  .hero h1 {
    font-size: clamp(1.85rem, 9.4vw, 2.7rem);
    line-height: 1.12;
  }

  .hero p {
    margin-top: 16px;
    font-size: .96rem;
    line-height: 1.7;
  }

  .hero-buttons {
    display: grid;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .hero-note {
    display: grid;
    gap: 8px;
  }

  .hero-note span {
    width: fit-content;
  }

  .hero-visual {
    min-height: auto;
    display: block;
  }

  .hero-visual::before {
    display: none;
  }

  .wifi-card {
    width: 100%;
    padding: 22px;
    border-radius: 24px;
  }

  .wifi-card h2 {
    font-size: 1.55rem;
  }

  .float-card {
    position: static;
    width: 100%;
    margin-top: 12px;
  }

  .stats {
    margin-top: 24px;
    grid-template-columns: 1fr;
  }

  .stats div {
    padding: 16px;
  }

  .section {
    padding: 64px 0;
  }

  .section-title.center {
    text-align: left;
  }

  .section-title h2 {
    font-size: clamp(1.55rem, 7vw, 2.05rem);
  }

  .section-title p {
    font-size: .96rem;
  }

  .card-grid.three,
  .steps {
    grid-template-columns: 1fr;
  }

  .service-card,
  .profile-box article,
  .steps article,
  .price-card,
  .contact-form {
    padding: 22px;
    border-radius: 20px;
  }

  .price-card.popular {
    transform: none;
  }

  .area-map {
    border-radius: 24px;
  }

  .floating-wa {
    right: 14px;
    bottom: 14px;
    padding-right: 13px;
  }

  .floating-wa b {
    display: none;
  }
}

@media (max-width: 420px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .nav-wrap {
    gap: 10px;
  }

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

  .btn {
    min-height: 45px;
    padding: 0 16px;
  }

  .stats strong,
  .stats span {
    font-size: .92rem;
  }
}
