/* Shared styles for all pages (GizTech) */

:root {
  --text: #0b1020;
  --muted: rgba(11, 16, 32, .70);
  --line: rgba(11, 16, 32, .12);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

html.is-transitioning body {
  overflow: hidden;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Liberation Sans", sans-serif;
  background: #fff;
  color: var(--text);
  opacity: 1;
  transition: opacity .28s ease;
}

body.page-fade-out {
  opacity: .35;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1100px, calc(100% - 32px));
  margin: 0 auto;
}

/* Header / Nav */
.header {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: #fff;
  border-bottom: 1px solid rgba(11, 16, 32, .08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 82px;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
}

.brand img {
  width: 96px;
  height: 96px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-dropdown::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 10px;
}

.nav-dropbtn {
  font-size: 14px;
  color: var(--muted);
  padding: 10px 12px;
  border-radius: 999px;
  transition: .2s ease;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: #fff;
  border: 1px solid rgba(11, 16, 32, .1);
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(11, 16, 32, .12);
  padding: 8px;
  display: none;
  z-index: 80;
}

.dropdown-menu a {
  display: block;
  border-radius: 9px;
  padding: 10px 12px;
  color: var(--muted);
}

.dropdown-menu a:hover {
  color: #fff;
  background: linear-gradient(90deg, #fb923c 0%, #3b82f6 100%);
}

.nav-dropdown:hover .dropdown-menu {
  display: block;
}

.nav-links a,
.nav-dropbtn {
  font-size: 14px;
  color: var(--muted);
  padding: 10px 12px;
  border-radius: 999px;
  transition: .2s ease;
}

.nav-links a:hover,
.nav-links a.active,
.nav-dropbtn:hover,
.nav-dropdown:hover .nav-dropbtn,
.nav-dropdown.active .nav-dropbtn {
  color: #fff;
  background: linear-gradient(90deg, #fb923c 0%, #3b82f6 100%);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .18) inset;
}

.burger {
  display: none;
  border: 1px solid rgba(11, 16, 32, .08);
  background: #fff;
  color: transparent;
  cursor: pointer;
  border-radius: 10px;
  position: relative;
  width: 42px;
  height: 40px;
  font-size: 0;
  line-height: 0;
}

.burger::before,
.burger::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
}

.burger::before {
  top: 13px;
  box-shadow: 0 6px 0 var(--text), 0 12px 0 var(--text);
}

.burger::after {
  display: none;
}

.mobile-panel {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 10000;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .12);
  display: none;
  padding: 8px 0 14px;
}

.mobile-panel.open {
  display: block;
}

.mobile-panel .stack {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-panel a {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid rgba(11, 16, 32, .08);
  background: #fff;
  color: var(--muted);
}

.mobile-panel a.active {
  color: var(--text);
  border-color: rgba(14, 165, 233, .35);
  background: rgba(14, 165, 233, .08);
}

.mobile-service-toggle {
  width: 100%;
  text-align: left;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid rgba(11, 16, 32, .08);
  background: #fff;
  color: var(--muted);
  font: inherit;
  font-size: 14px;
  cursor: pointer;
  position: relative;
}

.mobile-service-toggle::after {
  content: "▾";
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform .2s ease;
}

.mobile-service-toggle.open {
  color: #fff;
  background: linear-gradient(90deg, #fb923c 0%, #3b82f6 100%);
  border-color: transparent;
}

.mobile-service-toggle.open::after {
  transform: translateY(-50%) rotate(180deg);
}

.mobile-service-menu {
  display: none;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}

.mobile-service-menu.open {
  display: flex;
}

@media (max-width:1024px) {
  .nav-links {
    display: none;
  }

  .burger {
    display: inline-flex;
  }

  .brand img {
    width: 58px;
    height: 58px;
  }

  .nav {
    min-height: 74px;
  }
}

/* Page layout */
.main {
  padding: 0 0 56px;
}

.grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.panel {
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .04);
  box-shadow: none;
  padding: 18px;
}

.panel h2 {
  margin: 0 0 10px;
  font-size: 18px;
}

.panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .05);
  color: var(--text);
  cursor: pointer;
  transition: .2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, .07);
}

.btn.primary {
  background: #3b82f6;
  color: #fff;
  border: 1px solid #2563eb;
}

.btn.primary:hover {
  background: #2563eb;
}

.btn.ghost {
  background: rgba(255, 255, 255, .12);
  color: #fff;
}

.btn.ghost:hover {
  background: rgba(255, 255, 255, .2);
}

/* Loading overlay (dipakai index) */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: rgba(255, 255, 255, .95);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}

.page-loader.show {
  opacity: 1;
  pointer-events: auto;
}

.page-loader .spinner {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 3px solid rgba(14, 165, 233, .22);
  border-top-color: #0ea5e9;
  animation: spin 1s linear infinite;
}

.page-loader .label {
  font-size: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #0b1020;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Home */
.hero {
  padding: 0;
}

.hero-home .slider {
  height: 620px;
}

.slider {
  position: relative;
  width: 100%;
  height: 520px;
  overflow: hidden;
  border: 0;
  border-radius: 0;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .6s ease;
}

.slide.active {
  opacity: 1;
}

.slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  zoom: 40%;
}

.slider-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, rgba(0, 0, 0, .45) 0%, rgba(0, 0, 0, .05) 55%, rgba(0, 0, 0, .25) 100%);
}

.hero-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 14px;
}

.eyebrow {
  margin: 0;
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .9);
  font-weight: 700;
  text-shadow: 0 6px 18px rgba(0, 0, 0, .45);
}

.slider-title {
  margin: 0;
  width: min(700px, 85vw);
  font-size: clamp(36px, 6vw, 86px);
  line-height: 1.05;
  letter-spacing: .8px;
  text-shadow: 0 10px 30px rgba(0, 0, 0, .55);
  font-weight: 800;
}

.slider-title .giz {
  color: #fb923c;
}

.slider-title .tech {
  color: #3b82f6;
}

.slider-logan {
  margin: 2px 0 0;
  width: min(700px, 85vw);
  font-size: clamp(20px, 3vw, 34px);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .96);
  text-shadow: 0 8px 22px rgba(0, 0, 0, .45);
  position: relative;
}

.slider-logan::after {
  content: "";
  display: block;
  width: min(180px, 60%);
  height: 3px;
  border-radius: 99px;
  margin: 10px auto 0;
  background: linear-gradient(90deg, #fb923c 0%, #3b82f6 100%);
  box-shadow: 0 8px 18px rgba(0, 0, 0, .25);
}

.slider-sub {
  margin: 0;
  color: rgba(255, 255, 255, .85);
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.section {
  padding: 56px 0;
}

.section-intro {
  padding-top: 48px;
}

.section-label {
  margin: 0 0 10px;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #2563eb;
  font-weight: 700;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 20px;
}

.intro-grid h2 {
  margin: 0 0 10px;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.25;
}

.intro-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.intro-highlight {
  border-radius: 18px;
  padding: 24px;
  background: linear-gradient(135deg, rgba(59, 130, 246, .12), rgba(251, 146, 60, .12));
  border: 1px solid rgba(11, 16, 32, .08);
  display: flex;
  align-items: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.service-card {
  border: 1px solid rgba(11, 16, 32, .08);
  border-radius: 16px;
  padding: 20px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(11, 16, 32, .06);
}

.service-card h3 {
  margin: 0 0 8px;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.service-detail-hero {
  padding-top: 48px;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 20px;
  align-items: center;
}

.service-detail-grid h1 {
  margin: 0 0 12px;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.15;
}

.service-detail-grid p {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.75;
}

.service-detail-grid img {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(11, 16, 32, .08);
  box-shadow: 0 12px 28px rgba(11, 16, 32, .08);
}

.service-link-card .kg-content .btn {
  margin-top: 12px;
}

.section-stats {
  background: linear-gradient(90deg, rgba(59, 130, 246, .07), rgba(251, 146, 60, .08));
  border-top: 1px solid rgba(11, 16, 32, .06);
  border-bottom: 1px solid rgba(11, 16, 32, .06);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.stats-grid div {
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(11, 16, 32, .08);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.stats-grid strong {
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1;
}

.stats-grid span {
  color: var(--muted);
  font-size: 14px;
}

.cta-panel {
  border-radius: 20px;
  background: #3957bb;
  color: #fff;
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cta-panel h2 {
  margin: 0 0 8px;
  font-size: clamp(22px, 2.8vw, 34px);
}

.cta-panel p {
  margin: 0;
  color: rgba(255, 255, 255, .8);
}

.cta-panel .section-label {
  color: #93c5fd;
}

.cta-panel .btn.primary {
  background: #fb923c;
  color: #0b1020;
  border: 1px solid #ea580c;
  font-weight: 700;
}

.cta-panel .btn.primary:hover {
  background: #f97316;
}

/* Homepage blocks */
.slogan-wrap {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 18px;
  align-items: stretch;
}

.slogan-main {
  background: #fff;
  border: 0;
  border-radius: 18px;
  padding: 24px;
  box-shadow: none;
}

.slogan-main h2 {
  margin: 0 0 10px;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.2;
}

.slogan-main p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.slogan-points {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.slogan-points span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(11, 16, 32, .1);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 13px;
  background: #fff;
}

.slogan-points i {
  color: #3b82f6;
}

.slogan-stats {
  display: grid;
  gap: 12px;
}

.slogan-stats div {
  background: linear-gradient(90deg, rgba(59, 130, 246, .1), rgba(251, 146, 60, .1));
  border: 1px solid rgba(11, 16, 32, .08);
  border-radius: 16px;
  padding: 16px;
  display: grid;
  gap: 6px;
}

.slogan-stats i {
  color: #2563eb;
  font-size: 18px;
}

.slogan-stats strong {
  font-size: 28px;
  line-height: 1;
}

.slogan-stats span {
  color: var(--muted);
  font-size: 14px;
}

.block-head h2 {
  margin: 0;
  font-size: clamp(24px, 3vw, 36px);
}

.keunggulan-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.kg-card {
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(11, 16, 32, .08);
  box-shadow: 0 12px 26px rgba(11, 16, 32, .06);
}

.kg-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.kg-content {
  padding: 16px;
}

.kg-content h3 {
  margin: 0 0 8px;
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.kg-content h3 i {
  color: #fb923c;
}

.kg-content p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.memilih-wrap {
  border-radius: 20px;
  padding: 24px;
  background: #0b1020;
  color: #fff;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.memilih-left h2 {
  margin: 0 0 10px;
  font-size: clamp(24px, 3vw, 34px);
}

.memilih-left p {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, .85);
}

.memilih-left .btn.primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.memilih-list {
  display: grid;
  gap: 10px;
}

.memilih-list div {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 12px;
  padding: 12px;
}

.memilih-list i {
  color: #22c55e;
  margin-top: 2px;
}

/* Services cards generic */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.card {
  border-radius: 16px;
  background: rgba(255, 255, 255, .04);
  padding: 16px;
}

.card h3 {
  margin: 0 0 8px;
  font-size: 16px;
}

.card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 14px;
}

/* About page */
.about-hero {
  padding: 86px 0 76px;
  border-bottom: 1px solid rgba(11, 16, 32, .08);
  background-image: linear-gradient(rgba(11, 16, 32, .58), rgba(11, 16, 32, .52)), url("./about\ us\ bg.jpg");
  background-size: cover;
  background-position: center;
  text-align: center;
}

.about-hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.about-hero .section-label {
  color: #93c5fd;
}

.about-hero h1 {
  margin: 0 0 12px;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.08;
  color: #fff;
}

.about-hero p {
  margin: 0;
  max-width: 760px;
  color: rgba(255, 255, 255, .9);
  line-height: 1.8;
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.about-block {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
}

.who-block {
  grid-column: 1 / -1;
  text-align: center;
}

.about-block h2 {
  margin: 0 0 10px;
  font-size: clamp(28px, 3.6vw, 48px);
  line-height: 1.1;
}

.about-block p {
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.85;
}

.brand-accent .giz,
.brand-heavy .giz {
  color: #fb923c;
}

.brand-accent .tech,
.brand-heavy .tech {
  color: #3b82f6;
}

.brand-heavy {
  font-weight: 900;
  font-size: 1.05em;
}

.mission-block ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.9;
}

.mission-block li {
  margin-bottom: 6px;
}

/* Reusable helpers */
.page-cards-top {
  margin: 14px 0 10px;
}

.page-grid-3 {
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 14px;
}

.page-grid-2 {
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 14px;
}

.panel-sub {
  padding: 16px;
  margin: 0;
  background: rgba(255, 255, 255, .03);
}

.subheading {
  margin: 0 0 8px;
  font-size: 16px;
}

/* Footer */
.footer-news {
  background: #3957bb;
  padding: 42px 0 22px;
  color: #e5e7eb;
}

.footer-news-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.1fr .9fr;
  gap: 22px;
}

.footer-news-col h3 {
  margin: 0 0 12px;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #93c5fd;
}

.footer-news-col p {
  margin: 0 0 14px;
  color: rgba(229, 231, 235, .86);
  line-height: 1.8;
  font-size: 14px;
}

.tweets .tweet {
  color: rgba(229, 231, 235, .72);
  font-size: 14px;
}

.contact {
  text-align: justify;
  display: block;
  font-style: normal;
  color: rgba(229, 231, 235, .86);
  line-height: 1.8;
  font-size: 14px;
}

.contact-line {
  margin-top: 8px;
}

.contact-link {
  color: #fff;
  font-weight: 600;
}

.social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-btn {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(147, 197, 253, .16);
  color: #fff;
  font-size: 14px;
}

.social-btn:hover {
  background: rgba(147, 197, 253, .28);
}

.footer-news-bottom {
  text-align: center;
  margin-top: 24px;
  padding-top: 14px;
  border-top: 1px solid rgba(148, 163, 184, .25);
  color: rgba(229, 231, 235, .65);
  font-size: 13px;
}

/* Responsive */
@media (max-width:980px) {
  .hero-home .slider {
    height: 500px;
  }

  .hero-content {
    gap: 10px;
    padding-inline: 14px;
  }

  .slider-title {
    width: min(620px, 88vw);
    font-size: clamp(34px, 7vw, 64px);
  }

  .slider-logan {
    width: min(620px, 88vw);
    font-size: clamp(18px, 3.8vw, 28px);
  }

  .slider-sub {
    max-width: 90%;
    font-size: 15px;
  }

  .intro-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cta-panel {
    flex-direction: column;
    align-items: flex-start;
  }

  .service-detail-grid {
    grid-template-columns: 1fr;
  }

  .slogan-wrap {
    grid-template-columns: 1fr;
  }

  .keunggulan-grid {
    grid-template-columns: 1fr 1fr;
  }

  .memilih-wrap {
    grid-template-columns: 1fr;
  }

  .about-hero {
    padding: 72px 0 62px;
    background-position: center top;
  }

  .about-layout {
    gap: 18px;
  }

  .about-block h2 {
    font-size: clamp(24px, 3.8vw, 40px);
  }

  .footer-news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width:920px) {
  .cards {
    grid-template-columns: 1fr;
  }

  .page-grid-3 {
    grid-template-columns: 1fr;
  }

  .slider {
    height: 280px;
  }
}

@media (max-width:640px) {
  .hero-home .slider {
    height: 420px;
  }

  .slider-overlay {
    padding: 0 10px;
    background: linear-gradient(180deg, rgba(0, 0, 0, .42) 0%, rgba(0, 0, 0, .26) 60%, rgba(0, 0, 0, .45) 100%);
  }

  .hero-content {
    align-items: center;
    text-align: center;
    gap: 8px;
  }

  .eyebrow {
    font-size: 11px;
    letter-spacing: .12em;
  }

  .slider-title {
    width: min(92vw, 500px);
    font-size: clamp(30px, 10vw, 48px);
    line-height: 1.08;
  }

  .slider-logan {
    width: min(92vw, 500px);
    font-size: clamp(15px, 4.8vw, 21px);
    letter-spacing: .06em;
  }

  .slider-logan::after {
    width: min(130px, 55%);
    margin-top: 8px;
  }

  .slider-sub {
    max-width: 100%;
    font-size: 14px;
    line-height: 1.5;
  }

  .hero-actions {
    width: 100%;
    gap: 8px;
    justify-content: center;
  }

  .hero-actions .btn {
    min-height: 38px;
    padding: 9px 12px;
    font-size: 13px;
    border-radius: 10px;
  }


  .stats-grid,
  .about-layout,
  .page-grid-2,
  .keunggulan-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 40px 0;
  }

  .about-hero {
    padding: 56px 0 48px;
  }

  .about-hero h1 {
    font-size: clamp(28px, 9vw, 40px);
  }

  .about-hero p {
    font-size: 14px;
    line-height: 1.65;
    max-width: 92%;
  }

  .who-block {
    grid-column: auto;
  }

  .about-block h2 {
    font-size: clamp(22px, 7.2vw, 30px);
  }

  .footer-news-grid {
    grid-template-columns: 1fr;
  }

  .footer-news-bottom {
    margin-top: 16px;
  }
}

/* ==========================================
   CONTACT PAGE
========================================== */

.contact-wrapper {
  max-width: 1200px;
  margin: 50px auto;
}

.contact-card {

  background: white;

  border-radius: 24px;

  box-shadow: 0 18px 50px rgba(0, 0, 0, .08);

}


/* ===========================
   HEADER
=========================== */

.contact-header {
  padding: 45px;
  text-align: center;
  color: #fff;
  background: linear-gradient(135deg, #005bea, #00a8ff);
}

.contact-header h2 {
  font-size: 34px;
  margin-bottom: 12px;
}

.contact-header p {
  font-size: 16px;
  max-width: 700px;
  margin: auto;
  line-height: 1.8;
}


/* ===========================
   INFO BOX
=========================== */

.contact-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  padding: 40px;
  background: #f7f9fc;
}

.contact-box {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  transition: .3s;
  border: 1px solid #edf1f7;
}

.contact-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
}

.contact-box i {
  width: 70px;
  height: 70px;
  line-height: 70px;
  border-radius: 50%;
  background: #005bea;
  color: #fff;
  font-size: 28px;
  margin-bottom: 18px;
}

.contact-box h3 {
  color: #1f2937;
  margin-bottom: 10px;
}

.contact-box p,
.contact-box a {
  color: #666;
  text-decoration: none;
  line-height: 1.7;
}


/* ===========================
   FORM
=========================== */

.contact-form {

  display: grid;
  grid-template-columns: repeat(2, 1fr);

  gap: 32px 40px;

  padding: 55px;

}

.contact-form .field {
  display: flex;
  flex-direction: column;
}

.contact-form label {

  font-size: 15px;
  font-weight: 600;
  color: #374151;

  margin-bottom: 10px;

}

.contact-form input,
.contact-form textarea {

  height: 58px;

  border-radius: 14px;

  border: 1px solid #dbe4ee;

  background: #fcfdff;

  padding: 0 18px;

  transition: .3s;

}

.contact-form input:focus,
.contact-form textarea:focus {

  border-color: #005bea;
  background: #fff;
  outline: none;
  box-shadow: 0 0 0 4px rgba(0, 91, 234, .12);

}

.contact-form input:hover,
.contact-form textarea:hover {

  border-color: #7ea8ff;

}

.contact-form input:focus,
.contact-form textarea:focus {

  border-color: #2459ff;

  box-shadow: 0 0 0 5px rgba(36, 89, 255, .12);

  background: white;

}

.contact-form textarea {

  height: 170px;

  padding: 18px;

}

/*==========================
SELECT BOX
==========================*/

.select-box {

  position: relative;

  width: 100%;

}

.select-box select {

  width: 100%;

  height: 58px;

  padding: 0 55px 0 18px;

  border: 1px solid #d9e2ec;

  border-radius: 16px;

  background: #fff;

  font-size: 15px;

  color: #374151;

  cursor: pointer;

  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  transition: .3s;

}

/* Hover */

.select-box select:hover {

  border-color: #ff8c1a;

}

/* Focus */

.select-box select:focus {

  outline: none;

  border-color: #2459ff;

  box-shadow: 0 0 0 5px rgba(36, 89, 255, .12);

}

/* Icon panah */

.select-box::after {

  content: "\f078";

  font-family: "Font Awesome 6 Free";

  font-weight: 900;

  position: absolute;

  top: 50%;

  right: 20px;

  transform: translateY(-50%);

  color: #2459ff;

  pointer-events: none;

  transition: .3s;

}

.select-box:hover::after {

  color: #ff8c1a;

}

/* textarea full */
.contact-form .field.full {
  grid-column: 1/-1;
}

/* button */
/* Tombol WhatsApp */
.btn-whatsapp {

  grid-column: 1/-1;

  justify-self: center;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  width: 280px;
  height: 56px;

  border: none;
  border-radius: 14px;

  background: linear-gradient(90deg, #ff8c1a 0%, #2f6bff 100%);

  color: #fff;
  font-size: 16px;
  font-weight: 600;

  cursor: pointer;

  transition: .3s;

}

.btn-whatsapp:hover {

  transform: translateY(-3px);

  box-shadow: 0 12px 30px rgba(47, 107, 255, .25);

}

.btn-whatsapp:active {

  transform: scale(.98);

}

.btn-whatsapp i {

  font-size: 20px;

}

/*====================================
Business Showcase
====================================*/

.business-showcase {

  padding: 30px 0 80px;

}

.business-showcase .business-grid {

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;

}

.business-showcase .business-item {
  transition: transform .3s ease, box-shadow .3s ease;
  border-radius: 20px;
}

.business-showcase .business-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, .12);
}

.business-showcase img {
  transition: none;
}

.business-showcase .business-item:hover img {

  transform: scale(1.05);

}

.business-content p {
  text-align: justify;
}

.business-showcase .business-item,
.business-showcase img {
  backface-visibility: hidden;
  transform: translateZ(0);
  will-change: transform;
}

.business-showcase .business-content {

  padding: 28px;

}

.business-showcase span {

  display: inline-block;

  padding: 6px 14px;

  border-radius: 30px;

  background: #edf4ff;

  color: #2459ff;

  font-size: 12px;

  font-weight: 700;

  margin-bottom: 15px;

}

.business-showcase h3 {

  margin-bottom: 15px;

  font-size: 24px;

  color: #1f2937;

}

.business-showcase p {

  color: #666;

  line-height: 1.8;

  text-align: justify;

}

/* Tablet */

@media(max-width:992px) {

  .business-showcase .business-grid {

    grid-template-columns: repeat(2, 1fr);

  }

}

/* Mobile */

@media(max-width:768px) {

  .business-showcase .business-grid {

    grid-template-columns: 1fr;

  }

}

.internet-service {
  padding: 90px 8%;
  background: #f8fafc;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title span {
  color: #ff8c1a;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.section-title h2 {
  margin: 15px 0;
  font-size: 42px;
  color: #1f2937;
}

.section-title p {
  max-width: 700px;
  margin: auto;
  color: #666;
  line-height: 1.8;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.service-card {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0, 0, 0, .08);
  transition: .3s;

  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
}

.service-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.service-body {
  padding: 30px;

  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-body ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.service-tag {
  display: inline-block;
  padding: 7px 18px;
  border-radius: 30px;
  background: #edf4ff;
  color: #2459ff;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 15px;
}

.service-body h3 {
  margin-bottom: 15px;
  color: #222;
}

.service-body p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 20px;
}

.service-body li {
  margin-bottom: 10px;
  color: #444;
}

.service-body a {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  background: linear-gradient(90deg, #ff8c1a, #2459ff);
}

.service-body a {
  margin-top: auto;
  /* Tombol selalu turun ke bawah */

  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 160px;
  height: 48px;

  border-radius: 30px;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  background: linear-gradient(90deg, #ff8c1a, #2459ff);
}

/*=============================
Managed Highlight
=============================*/

.managed-highlight {

  padding: 20px 0 80px;

}

.managed-highlight .services-grid {

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;

}

.managed-highlight .service-card {

  position: relative;

  padding: 40px 30px;

  border-radius: 18px;

  background: #fff;

  text-align: center;

  overflow: hidden;

  box-shadow: 0 15px 35px rgba(0, 0, 0, .08);

  transition: .35s;

}

.managed-highlight .service-card:hover {

  transform: translateY(-8px);

}

.managed-highlight .service-card::before {

  content: "";

  position: absolute;

  top: 0;
  left: 0;

  width: 100%;
  height: 5px;

  background: linear-gradient(90deg, #ff8c1a, #2459ff);

}

.managed-highlight .service-icon {

  width: 85px;
  height: 85px;

  margin: 0 auto 25px;

  border-radius: 50%;

  background: #f5f8ff;

  color: #2459ff;

  display: flex;

  justify-content: center;

  align-items: center;

  font-size: 36px;

  transition: .3s;

}

.managed-highlight .service-card:hover .service-icon {

  background: linear-gradient(135deg, #ff8c1a, #2459ff);

  color: #fff;

}

.managed-highlight .line {

  width: 60px;
  height: 4px;

  margin: 0 auto 20px;

  border-radius: 10px;

  background: linear-gradient(90deg, #ff8c1a, #2459ff);

}

.managed-highlight h3 {

  font-size: 24px;

  margin-bottom: 18px;

  color: #222;

}

.managed-highlight p {

  color: #666;

  line-height: 1.8;

  text-align: center;

}

/* Tablet */

@media(max-width:992px) {

  .managed-highlight .services-grid {

    grid-template-columns: repeat(2, 1fr);

  }

}

/* Mobile */

@media(max-width:768px) {

  .managed-highlight .services-grid {

    grid-template-columns: 1fr;

  }

}

/* Mobile */

@media(max-width:768px) {

  .managed-highlight .service-card {

    flex-direction: column;

    text-align: center;

    padding: 28px;

  }

  .managed-highlight .service-card p {

    text-align: center;

  }

}

@media(max-width:992px) {

  .service-grid {
    grid-template-columns: 1fr 1fr;
  }

}

@media(max-width:768px) {

  .service-grid {
    grid-template-columns: 1fr;
  }

  .section-title h2 {
    font-size: 32px;
  }

}


/* ===========================
   TABLET
=========================== */

@media (max-width:992px) {

  .contact-card {

    border-radius: 15px;

  }

  .contact-info {

    grid-template-columns: repeat(2, 1fr);

    padding: 30px;

  }

  .contact-form {

    grid-template-columns: repeat(2, 1fr);

    gap: 20px;

    padding: 35px;

  }

  .contact-header {

    padding: 35px;

  }

  .contact-header h2 {

    font-size: 30px;

  }

}


/* ===========================
   MOBILE
=========================== */

@media (max-width:768px) {

  .contact-info {

    grid-template-columns: 1fr;

  }

  .contact-form {

    grid-template-columns: 1fr;

    padding: 25px;

  }

  .contact-form .field.full {

    grid-column: auto;

  }

  .contact-form button {

    width: 100%;

  }

  .contact-header {

    padding: 28px 20px;

  }

  .contact-header h2 {

    font-size: 26px;

  }

  .contact-header p {

    font-size: 15px;

  }

}


/* layar besar */

@media (min-width:1400px) {

  .contact-wrapper {

    max-width: 1320px;

  }

  .contact-form {

    gap: 30px;

  }

}

/*====================================
 AREA CAKUPAN
====================================*/

.coverage {

  min-height: 100vh;

  background: url("ChatGPT\ Image\ Jul\ 10\,\ 2026\,\ 10_26_27\ AM.png") center center/cover no-repeat;

  position: relative;

}

.coverage-map {
  display: none;
}

.coverage-overlay {

  width: 100%;
  min-height: 100vh;

  display: flex;
  align-items: center;

  padding: 80px;

}

.coverage-left {

  width: 420px;

}

/*====================*/

.section-title {

  color: #1d4ed8;

  font-size: 14px;

  font-weight: 700;

  letter-spacing: 3px;

  margin-bottom: 10px;

}

.coverage-title {

  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 25px;

}

.coverage-title .giz {

  color: #ff8c1a;
  /* Orange */

}

.coverage-title .tech {

  color: #2459ff;
  /* Biru */

}

.coverage-title .subtitle {

  display: block;

  margin-top: 8px;

  font-size: 22px;
  font-weight: 500;

  color: #666;

}

.line {

  width: 120px;

  height: 5px;

  border-radius: 10px;

  background: linear-gradient(90deg, #ff8b00, #2459ff);

  margin-bottom: 35px;

}

/*====================*/

.legend-card {

  background: #fff;

  border-radius: 22px;

  padding: 30px;

  box-shadow: 0 18px 45px rgba(0, 0, 0, .12);

}

.legend-card h3 {

  color: #2459ff;

  margin-bottom: 22px;

}

.legend-card ul {

  list-style: none;

  padding: 0;

}

.legend-card li {

  display: flex;

  align-items: center;

  gap: 14px;

  margin-bottom: 18px;

  color: #333;

  font-weight: 500;

}

.dot {

  width: 18px;
  height: 18px;
  border-radius: 50%;

}

.red {

  background: #ff2f2f;

}

.green {

  background: #33b249;

}

.yellow {

  background: #f9b000;

}

.line-orange {

  width: 45px;
  height: 4px;

  background: #f59e0b;

  border-radius: 10px;

}

.line-blue {

  width: 45px;
  height: 0;

  border-top: 3px dashed #000;

}

/*====================*/

.feature-card {

  margin-top: 35px;

  background: #fff;

  border-radius: 22px;

  display: grid;

  grid-template-columns: repeat(4, 1fr);

  box-shadow: 0 18px 45px rgba(0, 0, 0, .12);

  overflow: hidden;

}

.feature {

  padding: 30px 18px;
  text-align: center;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  border-right: 1px solid #ececec;

}

.feature:last-child {

  border: none;

}

.feature i {

  font-size: 34px;
  color: #2459ff;

  margin-bottom: 15px;

}

.feature span {

  display: block;

  font-size: 15px;
  font-weight: 600;

  line-height: 1.6;

  color: #24334d;

}

.coverage-overlay {
  background: linear-gradient(90deg,
      rgba(255, 255, 255, .85) 0%,
      rgba(255, 255, 255, .55) 35%,
      rgba(255, 255, 255, 0) 70%);
}

/*======================
TABLET
======================*/

@media(max-width:992px) {

  .coverage-overlay {

    padding: 50px;

  }

  .coverage-left {

    width: 380px;

  }

  .coverage-left h1 {

    font-size: 40px;

  }

  .feature-card {

    grid-template-columns: repeat(2, 1fr);

  }

  .feature:nth-child(2) {

    border-right: none;

  }

  .feature:nth-child(1),
  .feature:nth-child(2) {

    border-bottom: 1px solid #eee;

  }

}

/*======================
MOBILE
======================*/

@media (max-width:768px) {

  .coverage {

    background: none;
    min-height: auto;

  }

  .coverage-overlay {

    display: flex;
    flex-direction: column;
    padding: 30px 20px;
    gap: 30px;

    background: none;

  }

  .coverage-left {

    width: 100%;
    max-width: 100%;

  }

  .coverage-left h1 {

    font-size: 32px;

  }

  .legend-card,
  .feature-card {

    width: 100%;

  }

  .feature-card {

    grid-template-columns: repeat(2, 1fr);

  }

  .feature {

    padding: 25px 15px;

  }

  .coverage-map {

    display: block;
    width: 100%;
    height: 350px;

    background: url("ChatGPT\ Image\ Jul\ 10\,\ 2026\,\ 10_36_49\ AM.png") center center/contain no-repeat;

  }

}

.footer-news-about {
  text-align: justify;
}

.layanan-justify {
  text-align: justify;
}

/* ========================= */

.news-page {
  padding: 80px 0;
  background: #f7f9fc;
}

/* HEADER */

.news-header {
  text-align: center;
  margin-bottom: 70px;
}

.news-header .subtitle {
  color: #0d6efd;
  font-size: .9rem;
  letter-spacing: 3px;
  font-weight: 700;
}

.news-header h1 {
  font-size: 3rem;
  margin: 15px 0;
  color: #1d1d1d;
}

.news-header p {
  max-width: 700px;
  margin: auto;
  color: #666;
  line-height: 1.8;
}

/* LIST */

.news-list {
  max-width: 1100px;
  margin: auto;
}

.news-item {

  display: flex;
  gap: 35px;

  background: #fff;
  border-radius: 16px;

  overflow: hidden;

  margin-bottom: 35px;

  box-shadow: 0 8px 30px rgba(0, 0, 0, .08);

  transition: .35s;

}

.news-item:hover {

  transform: translateY(-5px);

  box-shadow: 0 18px 45px rgba(0, 0, 0, .12);

}

.news-image {

  flex: 0 0 340px;

}

.news-image img {

  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;

}

.news-info {

  padding: 35px;

  display: flex;
  flex-direction: column;
  justify-content: center;

}

.news-date {

  color: #0d6efd;

  font-size: .9rem;

  font-weight: 600;

  margin-bottom: 15px;

}

.news-info h2 {

  font-size: 1.8rem;

  margin-bottom: 18px;

  color: #1b1b1b;

}

.news-info p {

  color: #666;

  line-height: 1.8;

  margin-bottom: 25px;

}

.read-more {

  color: #0d6efd;

  text-decoration: none;

  font-weight: 700;

  width: max-content;

}

.read-more:hover {

  text-decoration: underline;

}


/* RESPONSIVE */

@media(max-width:900px) {

  .news-item {

    flex-direction: column;

  }

  .news-image {

    flex: unset;

    height: 240px;

  }

  .news-info {

    padding: 25px;

  }

  .news-header h1 {

    font-size: 2.2rem;

  }

  .news-info h2 {

    font-size: 1.5rem;

  }

}

.news-detail {

  background: #f7f9fc;

  padding-bottom: 80px;

}

.news-banner {

  background: linear-gradient(135deg, #005bea, #00c6fb);

  color: #fff;

  padding: 90px 0 70px;

}

.back-news {

  color: #fff;

  text-decoration: none;

  opacity: .9;

}

.back-news:hover {

  opacity: 1;

}

.category {

  display: inline-block;

  margin-top: 25px;

  padding: 8px 18px;

  background: rgba(255, 255, 255, .15);

  border-radius: 30px;

}

.news-banner h1 {

  margin: 20px 0;

  font-size: 3rem;

  max-width: 850px;

}

.meta {

  display: flex;

  gap: 12px;

  opacity: .8;

}

.news-cover {

  margin-top: -40px;

}

.news-cover img {

  width: 100%;

  border-radius: 18px;

  box-shadow: 0 20px 50px rgba(0, 0, 0, .15);

}

.article {

  max-width: 850px;

  margin: auto;

  padding-top: 60px;

}

.article p {

  font-size: 18px;

  line-height: 2;

  color: #555;

  margin-bottom: 28px;

}

.article blockquote {

  border-left: 5px solid #0d6efd;

  padding-left: 25px;

  margin: 45px 0;

  font-size: 24px;

  font-style: italic;

  color: #0d6efd;

}

.related-news {

  margin-top: 80px;

}

.related-news h2 {

  margin-bottom: 30px;

}

.related-grid {

  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));

  gap: 30px;

}

.related-grid a {

  background: #fff;

  text-decoration: none;

  color: #222;

  border-radius: 16px;

  overflow: hidden;

  box-shadow: 0 10px 30px rgba(0, 0, 0, .08);

  transition: .3s;

}

.related-grid a:hover {

  transform: translateY(-8px);

}

.related-grid img {

  width: 100%;

  height: 200px;

  object-fit: cover;

}

.related-grid h3 {

  padding: 20px;


}

/* ===========================
   FULL ARTICLE MODAL
=========================== */

.news-modal {

  position: fixed;
  inset: 0;

  background: rgba(8, 15, 32, .72);
  backdrop-filter: blur(10px);

  display: flex;
  justify-content: center;
  align-items: flex-start;

  padding: 40px 20px;

  overflow-y: auto;

  opacity: 0;
  visibility: hidden;

  transition: .35s ease;

  z-index: 99999;

}

.news-modal.show {

  opacity: 1;
  visibility: visible;

}

.news-modal-content {

  width: min(100%, 1000px);

  background: #fff;

  border-radius: 22px;

  overflow: hidden;

  box-shadow:
    0 35px 80px rgba(0, 0, 0, .35);

  animation: articleOpen .35s ease;

  margin-bottom: 40px;

}

@keyframes articleOpen {

  from {

    opacity: 0;
    transform: translateY(40px) scale(.97);

  }

  to {

    opacity: 1;
    transform: translateY(0) scale(1);

  }

}

/* Tombol Close */

.close-modal {

  position: fixed;

  right: 35px;
  top: 30px;

  width: 52px;
  height: 52px;

  border: none;

  border-radius: 50%;

  background: #fff;

  font-size: 28px;

  cursor: pointer;

  z-index: 100000;

  transition: .3s;

  box-shadow: 0 12px 25px rgba(0, 0, 0, .2);

}

.close-modal:hover {

  transform: rotate(90deg);

  background: #0d6efd;
  color: #fff;

}

/* Cover */

.news-modal img {

  width: 100%;
  height: 480px;

  object-fit: cover;

  display: block;

}

/* Isi */

.modal-body {

  padding: 60px;

}

.modal-body span {

  display: inline-block;

  color: #0d6efd;

  font-weight: 700;

  margin-bottom: 20px;

}

.modal-body h2 {

  font-size: 2.8rem;

  line-height: 1.3;

  margin-bottom: 30px;

  color: #111;

}

.modal-body p {

  font-size: 18px;

  line-height: 2;

  color: #555;

  margin-bottom: 28px;

}

/* Quote */

.modal-body blockquote {

  margin: 45px 0;

  padding: 25px 35px;

  border-left: 6px solid #0d6efd;

  background: #f5f9ff;

  font-size: 22px;

  color: #0d6efd;

  font-style: italic;

  border-radius: 10px;

}

/* Responsive */

@media(max-width:768px) {

  .news-modal {

    padding: 0;

  }

  .news-modal-content {

    border-radius: 0;

    min-height: 100vh;

  }

  .news-modal img {

    height: 250px;

  }

  .modal-body {

    padding: 30px 25px;

  }

  .modal-body h2 {

    font-size: 2rem;

  }

  .close-modal {

    top: 15px;
    right: 15px;

    width: 45px;
    height: 45px;

  }

}

.load-more-wrapper {

  text-align: center;

  margin-top: 60px;

}

.load-more-btn {

  border: none;

  padding: 18px 40px;

  border-radius: 50px;

  background: #0d6efd;

  color: #fff;

  font-size: 16px;

  cursor: pointer;

  transition: .3s;

}

.load-more-btn:hover {

  transform: translateY(-4px);

  box-shadow: 0 15px 35px rgba(13, 110, 253, .35);

}