:root {
  --bg-main: #05070b;
  --bg-soft: #080d15;
  --bg-card: rgba(255, 255, 255, 0.045);
  --bg-card-hover: rgba(255, 255, 255, 0.07);

  --text-main: #ffffff;
  --text-soft: #d8e0ea;
  --text-muted: #98a6b8;

  --blue: #007bff;
  --blue-dark: #005ce6;
  --cyan: #00d4ff;
  --yellow: #ffd21f;

  --border-soft: rgba(255, 255, 255, 0.1);
  --border-blue: rgba(0, 212, 255, 0.28);

  --gradient-blue: linear-gradient(135deg, #006eff 0%, #00d4ff 100%);
  --gradient-soft: linear-gradient(
    135deg,
    rgba(0, 123, 255, 0.14),
    rgba(0, 212, 255, 0.04)
  );

  --container: 1180px;
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;

  --shadow-blue: 0 22px 70px rgba(0, 123, 255, 0.22);
  --shadow-card: 0 20px 60px rgba(0, 0, 0, 0.28);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", Arial, sans-serif;
  background: var(--bg-main);
  color: var(--text-main);
  line-height: 1.65;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 85% 5%, rgba(0, 212, 255, 0.12), transparent 32%),
    radial-gradient(circle at 15% 10%, rgba(0, 123, 255, 0.16), transparent 30%),
    radial-gradient(circle at 50% 80%, rgba(0, 123, 255, 0.08), transparent 34%),
    #05070b;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.14;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(90%, var(--container));
  margin: 0 auto;
}

.section {
  padding: 96px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.section-header {
  max-width: 720px;
  margin-bottom: 42px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-label::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--cyan);
  box-shadow: 0 0 12px rgba(0, 212, 255, 0.8);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.1;
  letter-spacing: -1.6px;
  margin-bottom: 16px;
}

.section-description {
  color: var(--text-muted);
  font-size: 1.04rem;
  max-width: 700px;
}

.gradient-text {
  background: var(--gradient-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 14px;
  font-weight: 750;
  font-size: 0.95rem;
  transition: 0.25s ease;
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-blue);
  color: #fff;
  box-shadow: 0 14px 34px rgba(0, 123, 255, 0.28);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(0, 123, 255, 0.38);
}

.btn-secondary {
  color: var(--text-main);
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.035);
}

.btn-secondary:hover {
  border-color: rgba(0, 212, 255, 0.5);
  background: rgba(0, 212, 255, 0.08);
  transform: translateY(-2px);
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(5, 7, 11, 0.78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.navbar {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 0 14px rgba(0, 123, 255, 0.3));
}

.brand-text {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.brand-text span {
  color: var(--cyan);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links a {
  color: var(--text-muted);
  font-size: 0.94rem;
  font-weight: 650;
  transition: 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--cyan);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  cursor: pointer;
  font-size: 1.4rem;
}

/* HERO */
.hero {
  position: relative;
  padding: 108px 0 92px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 70px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: -3px;
  margin-bottom: 26px;
}

.hero p {
  color: var(--text-soft);
  font-size: 1.12rem;
  max-width: 650px;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--text-muted);
  font-size: 0.94rem;
}

.hero-note-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--cyan);
  background: rgba(0, 212, 255, 0.07);
  border: 1px solid rgba(0, 212, 255, 0.2);
}

.hero-visual {
  position: relative;
  min-height: 510px;
  display: grid;
  place-items: center;
}

.orb {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(0, 212, 255, 0.2), transparent 55%),
    radial-gradient(circle, rgba(0, 123, 255, 0.2), transparent 70%);
  filter: blur(2px);
}

.hero-logo-card {
  position: relative;
  width: min(390px, 100%);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(0, 212, 255, 0.25);
  box-shadow:
    inset 0 0 40px rgba(0, 212, 255, 0.05),
    0 30px 120px rgba(0, 123, 255, 0.25);
  overflow: hidden;
}

.hero-logo-card::before {
  content: "";
  position: absolute;
  width: 72%;
  height: 72%;
  border-radius: 50%;
  border: 1px solid rgba(0, 212, 255, 0.18);
}

.hero-logo-card::after {
  content: "";
  position: absolute;
  width: 135%;
  height: 135%;
  background: conic-gradient(
    from 180deg,
    transparent,
    rgba(0, 212, 255, 0.14),
    transparent,
    rgba(0, 123, 255, 0.16),
    transparent
  );
  animation: rotateGlow 12s linear infinite;
}

.hero-logo-card img {
  position: relative;
  z-index: 2;
  width: 68%;
  filter: drop-shadow(0 0 28px rgba(0, 123, 255, 0.5));
}

@keyframes rotateGlow {
  to {
    transform: rotate(360deg);
  }
}

.floating-panel {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 15px;
  border-radius: 16px;
  color: var(--text-soft);
  background: rgba(8, 13, 21, 0.78);
  border: 1px solid rgba(0, 212, 255, 0.22);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(18px);
  font-weight: 700;
  font-size: 0.9rem;
}

.floating-panel strong {
  color: var(--cyan);
  font-size: 1.1rem;
}

.floating-panel.one {
  top: 70px;
  left: 0;
}

.floating-panel.two {
  right: 0;
  top: 160px;
}

.floating-panel.three {
  bottom: 78px;
  left: 34px;
}

/* TRUST STRIP */
.trust-strip {
  padding: 26px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.025);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 650;
}

.trust-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--gradient-blue);
  box-shadow: 0 0 16px rgba(0, 212, 255, 0.6);
}

/* ABOUT */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 46px;
  align-items: start;
}

.about-panel {
  padding: 34px;
  border-radius: var(--radius-lg);
  background: var(--gradient-soft);
  border: 1px solid var(--border-blue);
  box-shadow: var(--shadow-card);
}

.about-panel h3 {
  font-size: 1.45rem;
  margin-bottom: 14px;
}

.about-panel p {
  color: var(--text-muted);
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 26px;
}

.stat {
  padding: 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.stat strong {
  display: block;
  font-size: 1.5rem;
  color: var(--cyan);
  margin-bottom: 3px;
}

.stat span {
  color: var(--text-muted);
  font-size: 0.88rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.feature-card {
  padding: 26px;
  border-radius: var(--radius-md);
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  transition: 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  background: var(--bg-card-hover);
  border-color: var(--border-blue);
}

.feature-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  margin-bottom: 18px;
  color: var(--cyan);
  font-size: 1.4rem;
  background: rgba(0, 123, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.18);
}

.feature-card h3 {
  font-size: 1.14rem;
  margin-bottom: 8px;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.96rem;
}

/* PROJECT */
.project-section {
  background:
    radial-gradient(circle at 85% 35%, rgba(0, 123, 255, 0.14), transparent 32%),
    rgba(255, 255, 255, 0.015);
}

.project-card {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 50px;
  align-items: center;
  padding: 48px;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.project-card h2 {
  font-size: clamp(2.3rem, 5vw, 4rem);
  line-height: 1.08;
  letter-spacing: -1.8px;
  margin-bottom: 18px;
}

.project-card p {
  color: var(--text-muted);
  font-size: 1.04rem;
  margin-bottom: 26px;
  max-width: 660px;
}

.badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  color: #dceeff;
  background: rgba(0, 123, 255, 0.09);
  border: 1px solid rgba(0, 212, 255, 0.2);
  font-size: 0.9rem;
  font-weight: 650;
}

.project-points {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.project-point {
  display: flex;
  gap: 12px;
  color: var(--text-soft);
}

.check {
  width: 24px;
  height: 24px;
  min-width: 24px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(0, 212, 255, 0.1);
  color: var(--cyan);
  border: 1px solid rgba(0, 212, 255, 0.22);
  font-size: 0.8rem;
  margin-top: 2px;
}

.phone-wrap {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 540px;
}

.phone-glow {
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 123, 255, 0.34), transparent 62%);
}

/* .phone {
  position: relative;
  width: 270px;
  min-height: 520px;
  padding: 20px;
  border-radius: 38px;
  background: #070b12;
  border: 10px solid #111823;
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.5),
    0 0 70px rgba(0, 123, 255, 0.22);
} */

/* .phone-notch {
  width: 86px;
  height: 18px;
  background: #111823;
  border-radius: 0 0 14px 14px;
  margin: -20px auto 26px;
} */

.phone h3 {
  font-size: 1.75rem;
  line-height: 1;
  margin-bottom: 8px;
}

.phone h3 span {
  color: var(--yellow);
}

.phone small {
  color: var(--text-muted);
  display: block;
  line-height: 1.4;
}

.phone-img{
  width: 270px;
  min-height: 520px;
}
.map-preview {
  position: relative;
  height: 180px;
  margin: 24px 0;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(135deg, rgba(0, 123, 255, 0.18), rgba(0, 212, 255, 0.08)),
    repeating-linear-gradient(
      45deg,
      rgba(255, 255, 255, 0.04) 0,
      rgba(255, 255, 255, 0.04) 1px,
      transparent 1px,
      transparent 18px
    );
}

.route-line {
  position: absolute;
  left: 38px;
  top: 108px;
  width: 160px;
  height: 4px;
  border-radius: 999px;
  background: var(--gradient-blue);
  transform: rotate(-18deg);
  box-shadow: 0 0 18px rgba(0, 212, 255, 0.7);
}

.pin {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.8);
}

.pin.one {
  left: 38px;
  top: 122px;
}

.pin.two {
  right: 45px;
  top: 70px;
}

.search-card {
  background: #ffffff;
  color: #10141c;
  border-radius: 20px;
  padding: 14px;
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.18);
}

.search-card strong {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 5px;
}

.search-card span {
  display: block;
  color: #687386;
  font-size: 0.82rem;
}

/* SERVICES */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card {
  min-height: 245px;
  padding: 28px;
  border-radius: var(--radius-md);
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  transition: 0.25s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  background: var(--bg-card-hover);
  border-color: var(--border-blue);
}

.service-card h3 {
  margin: 18px 0 10px;
  font-size: 1.15rem;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.96rem;
}

/* PROCESS */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.process-card {
  position: relative;
  padding: 28px;
  border-radius: var(--radius-md);
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
}

.process-number {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 13px;
  background: var(--gradient-blue);
  box-shadow: 0 14px 30px rgba(0, 123, 255, 0.25);
  font-weight: 850;
}

.process-card h3 {
  font-size: 1.08rem;
  margin-bottom: 8px;
}

.process-card p {
  color: var(--text-muted);
  font-size: 0.94rem;
}

/* FOOTER */
.footer {
  padding: 36px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.18);
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.footer-brand strong {
  font-size: 1.1rem;
}

.footer p {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.footer-links {
  display: flex;
  gap: 20px;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.footer-links a:hover {
  color: var(--cyan);
}

/* RESPONSIVE */
@media (max-width: 980px) {
  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .nav-links {
    position: absolute;
    left: 5%;
    right: 5%;
    top: 88px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 24px;
    border-radius: 20px;
    background: rgba(8, 13, 21, 0.97);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-card);
  }

  .nav-links.open {
    display: flex;
  }

  .hero-grid,
  .about-grid,
  .project-card,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 80px 0 70px;
  }

  .hero-visual {
    min-height: 420px;
  }

  .trust-grid,
  .services-grid,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .phone-wrap {
    min-height: 500px;
  }
}

@media (max-width: 720px) {
  .section {
    padding: 72px 0;
  }

  .brand-text {
    font-size: 1.15rem;
  }

  .brand-logo {
    width: 42px;
    height: 42px;
  }

  .hero h1 {
    letter-spacing: -2px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .trust-grid,
  .feature-grid,
  .services-grid,
  .process-grid,
  .about-stats,
  .form-row {
    grid-template-columns: 1fr;
  }

  .floating-panel {
    display: none;
  }

  .project-card,
  .contact-card,
  .about-panel {
    padding: 30px;
  }

  .phone {
    width: 245px;
    min-height: 600px;
  }

  .contact-detail {
    width: 100%;
  }

  .footer-content {
    align-items: flex-start;
    flex-direction: column;
  }
}