@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
  --primary: #0066b3;
  --primary-dark: #02335d;
  --accent: #d5a544;
  --bg-light: #f5f7fb;
  --text-main: #1e2430;
  --text-muted: #6c7480;
  --max-width: 1120px;
}

* {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  display:block;
  margin: 0;
  font-family: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-main);
  background: radial-gradient(circle at top, #f5fbff 0, #e5ecf5 40%, #dfe4f0 60%, #cfd5e5 100%);
}

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

img {
  max-width: 100%;
  display: block;
}

/* ====== NAVBAR ====== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(2, 51, 93, 0.96);
  backdrop-filter: blur(10px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.18);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 1.2rem;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #fff;
}

.nav-logo {
  width: 42px;
  height: 42px;
}

.nav-company {
  font-size: 0.85rem;
  line-height: 1.2;
}

.nav-company strong {
  font-size: 0.95rem;
  letter-spacing: 0.03em;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  color: #e5ecf5;
  font-size: 0.9rem;
}

.nav-menu a {
  position: relative;
  padding-bottom: 0.15rem;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.25s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
}

.burger span {
  width: 22px;
  height: 2px;
  background: #ffffff;
  border-radius: 999px;
  transition: transform 0.2s, opacity 0.2s;
}

/* ====== SECTIONS COMMON ====== */

main {
  margin-top: 61px; /* offset navbar */
}

section {
  padding: 0.2rem 1.2rem 2rem;
}

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-title {
  font-size: 1.65rem;
  margin-bottom: 0.4rem;
  color: var(--primary-dark);
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

/* ====== HERO ====== */
.hero {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background:
	radial-gradient(circle at 20% 0, rgba(255,255,255,0.8) 0, rgba(255,255,255,0) 55%),
	radial-gradient(circle at 80% 10%, rgba(0,102,179,0.26) 0, rgba(0,102,179,0) 55%),
	linear-gradient(135deg, #04152e 0, #082a4a 40%, #0a3660 70%, #05162c 100%);
  color: #fff;
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background: rgba(6, 49, 97, 0.9);
  border: 1px solid rgba(255,255,255,0.18);
  font-size: 0.8rem;
  margin-bottom: 0.7rem;
}

.hero-badge span {
  background: rgba(213,165,68,0.18);
  border-radius: 999px;
  padding: 0.1rem 0.5rem;
  font-size: 0.75rem;
}


.hero-title {
  font-size: clamp(2.1rem, 3vw + 1rem, 2.7rem);
  line-height: 1.2;
  margin-bottom: 0.6rem;
  margin-top: 0.6rem;
}

.hero-title span {
  color: #f2cf75;
}

.hero-text {
  font-size: 0.97rem;
  max-width: 540px;
  color: #d6e3ff;
  margin-bottom: 1.3rem;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-bottom: 1.6rem;
}

.hero-highlights div {
  font-size: 0.82rem;
  color: #dde7ff;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.hero-highlights div::before {
  content: "●";
  font-size: 0.5rem;
  color: #f2cf75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.btn-primary,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 1.3rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #f2ce70);
  color: #1b2430;
  box-shadow: 0 10px 22px rgba(0,0,0,0.3);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 26px rgba(0,0,0,0.38);
}

.btn-outline {
  border: 1px solid rgba(222, 232, 255, 0.9);
  color: #f4f6ff;
  background: transparent;
}

.btn-outline:hover {
  background: rgba(10, 54, 96, 0.7);
}

.hero-right {
  position: relative;
}

.hero-card {
  position: relative;
  background: radial-gradient(circle at top, #0e4b84 0, #072747 60%, #04152e 100%);
  border-radius: 24px;
  padding: 1.6rem 1.4rem;
  box-shadow: 0 18px 36px rgba(0,0,0,0.55);
  overflow: hidden;
  color: #e6f0ff;
}

.hero-card::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(0,194,255,0.35) 0, transparent 60%);
  top: -80px;
  right: -80px;
  opacity: 0.8;
}

.hero-logo-wrap {
  position: relative;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  padding: 6px;
  background: radial-gradient(circle at 30% 0, #ffffff 0, #f2cf75 18%, #243b64 60%, #04152e 100%);
  margin-bottom: 0.8rem;
  box-shadow: 0 12px 30px rgba(0,0,0,0.5);
}

.hero-logo-wrap img {
  border-radius: 50%;
  background: #ffffff;
}

.hero-card-title {
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
}

.hero-card-sub {
  font-size: 0.8rem;
  color: #b9c6e5;
  margin-bottom: 0.8rem;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-bottom: 0.9rem;
}

.metric {
  font-size: 0.8rem;
  background: rgba(1,11,26,0.7);
  border-radius: 12px;
  padding: 0.6rem 0.7rem;
  border: 1px solid rgba(131, 188, 255, 0.22);
}

.metric strong {
  display: block;
  font-size: 1.05rem;
  color: #f2cf75;
}

.hero-ribbon {
  margin-top: 0.3rem;
  font-size: 0.75rem;
  color: #9fb1dc;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.hero-ribbon span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #3bd98f;
  box-shadow: 0 0 8px #3bd98f;
}

/* ====== ABOUT ====== */
#about {
  background: var(--bg-light);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2.2rem;
  align-items: start;
}

.about-text p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 0.8rem;
}

.about-badge-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1rem;
}

.about-badge {
  background: #ffffff;
  border-radius: 12px;
  padding: 0.8rem 0.9rem;
  font-size: 0.83rem;
  border: 1px solid #e0e5f0;
  box-shadow: 0 4px 10px rgba(0,0,0,0.04);
}

.about-badge strong {
  display: block;
  margin-bottom: 0.15rem;
  color: var(--primary-dark);
}

.about-card {
  background: linear-gradient(145deg, #ffffff 0, #f2f3f8 40%, #e4e8f5 100%);
  border-radius: 18px;
  padding: 1.3rem 1.2rem;
  box-shadow: 0 10px 28px rgba(0,0,0,0.12);
  border: 1px solid #dde2f0;
  font-size: 0.87rem;
}

.about-card h3 {
  margin-top: 0;
  margin-bottom: 0.4rem;
  font-size: 1rem;
}

.about-address {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 0.4rem;
  line-height: 1.6;
}

/* ====== SERVICES ====== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.service-item {
  background: #ffffff;
  border-radius: 16px;
  padding: 1.1rem 1rem 1.2rem;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  border: 1px solid #e1e5f0;
  font-size: 0.87rem;
}

.service-title {
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--primary-dark);
}

.service-tag {
  display: inline-block;
  font-size: 0.72rem;
  padding: 0.15rem 0.45rem;
  border-radius: 999px;
  background: rgba(0,102,179,0.08);
  color: var(--primary-dark);
  margin-bottom: 0.3rem;
}

.service-item ul {
  padding-left: 1.2rem;
  margin: 0.2rem 0 0;
  color: var(--text-muted);
}

.service-item li {
  margin-bottom: 0.2rem;
}

/* ====== WHY CHOOSE US ====== */
#why {
  background: radial-gradient(circle at top, #ffffff 10%, #edf1fa 60%, #dfe4f3 100%);
}

.why-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2.3rem;
}

.why-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 0.7rem;
}

.why-item {
  background: #ffffff;
  border-radius: 14px;
  padding: 0.9rem 1rem;
  border: 1px solid #e0e5f2;
  box-shadow: 0 5px 14px rgba(0,0,0,0.05);
  font-size: 0.85rem;
}

.why-item strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--primary-dark);
}

.why-highlight-box {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 18px;
  padding: 1.3rem 1.3rem 1.4rem;
  color: #f5f7ff;
  box-shadow: 0 10px 24px rgba(0,0,0,0.18);
  font-size: 0.87rem;
}

.why-highlight-box h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
}

.why-highlight-box ul {
  padding-left: 1.2rem;
  margin: 0.2rem 0 0;
}

.why-highlight-box li {
  margin-bottom: 0.1rem;
}

/* ====== CONTACT ====== */
#contact {
  background: #050c16;
  color: #f5f7ff;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 2.3rem;
  align-items: start;
}

.contact-form {
  background: rgba(9, 26, 49, 0.95);
  border-radius: 18px;
  padding: 1.4rem 1.3rem 1.6rem;
  box-shadow: 0 18px 40px rgba(0,0,0,0.6);
  border: 1px solid rgba(123, 160, 220, 0.5);
}

.form-row {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.form-group {
  flex: 1 1 140px;
  margin-bottom: 0.8rem;
  font-size: 0.8rem;
}

label {
  display: block;
  margin-bottom: 0.22rem;
  color: #d1ddff;
}

input, textarea {
  width: 100%;
  padding: 0.55rem 0.65rem;
  border-radius: 9px;
  border: 1px solid #344468;
  background: rgba(6,17,34,0.9);
  color: #f5f7ff;
  font-family: inherit;
  font-size: 0.83rem;
  outline: none;
  transition: border 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

input::placeholder,
textarea::placeholder {
  color: #8a96b6;
}

input:focus,
textarea:focus {
  border-color: #7bb0ff;
  box-shadow: 0 0 0 1px rgba(123,176,255,0.5);
  background: rgba(5,16,32,0.98);
}

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

.contact-info {
  font-size: 0.83rem;
  color: #c7d6ff;
}

.contact-info h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.contact-info p {
  margin: 0 0 0.8rem;
  line-height: 1.7;
}

.contact-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #8fa5dd;
  margin-bottom: 0.25rem;
}

.contact-highlight {
  font-size: 0.85rem;
  background: radial-gradient(circle at top, rgba(242,207,117,0.32) 0, transparent 60%);
  border-radius: 14px;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(223,189,112,0.7);
  margin-top: 0.6rem;
}

.contact-highlight strong {
  color: #ffe39b;
}

.footer {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 2.3rem;
  padding-top: 1rem;
  font-size: 0.78rem;
  color: #aebbe2;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8rem;
  align-items: center;
}

.footer span {
  opacity: 0.9;
}

.footer a {
  color: #d6e0ff;
  font-weight: 500;
}

/* ====== RESPONSIVE ====== */
@media (max-width: 960px) {
  .hero-inner,
  .about-grid,
  .why-grid,
  .contact-grid {
	grid-template-columns: minmax(0, 1fr);
  }

  .hero-right {
	order: -1;
  }

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

  .nav-menu {
	display: none;
	position: absolute;
	top: 100%;
	right: 0;
	left: 0;
	padding: 0.85rem 1.2rem 0.9rem;
	background: rgba(3, 26, 55, 0.98);
	flex-direction: column;
	gap: 0.8rem;
	border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .nav-menu.open {
	display: flex;
  }

  .burger {
	display: flex;
  }
}

@media (max-width: 640px) {
  .hero {
	padding-top: 5.1rem;
  }

  .hero-title {
	font-size: 1.9rem;
  }

  .services-grid,
  .why-points,
  .about-badge-list {
	grid-template-columns: minmax(0, 1fr);
  }

  section {
	padding: 3.5rem 1rem;
  }

  .nav-left .nav-company {
	display: none;
  }

  main {
	margin-top: 60px;
  }
}