@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --blue: #0057a8;
  --blue-dark: #003f7a;
  --blue-light: #e8f2ff;
  --accent: #f4a800;
  --white: #ffffff;
  --gray-light: #f5f7fa;
  --gray-mid: #e0e6ef;
  --gray-text: #5a6a7a;
  --dark: #0f1f30;
  --radius: 10px;
  --shadow: 0 4px 24px rgba(0,87,168,0.10);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--gray-light);
  color: var(--dark);
  line-height: 1.7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* HEADER */
header {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
  color: var(--white);
  box-shadow: 0 2px 16px rgba(0,0,0,0.18);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--white);
}

.logo-icon {
  width: 38px;
  height: 38px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.logo-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  line-height: 1;
}

.logo-sub {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.75;
  display: block;
  margin-top: 1px;
}

nav ul { list-style: none; display: flex; gap: 0.25rem; }

nav ul li a {
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.45rem 0.9rem;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
  letter-spacing: 0.02em;
}

nav ul li a:hover, nav ul li a.active {
  background: rgba(255,255,255,0.15);
  color: var(--white);
}

/* HERO */
.hero {
  background: linear-gradient(120deg, var(--blue-dark) 0%, var(--blue) 60%, #0083d4 100%);
  color: var(--white);
  padding: 5rem 2rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-inner { max-width: 700px; margin: 0 auto; position: relative; }

.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.4rem, 6vw, 4rem);
  letter-spacing: 0.04em;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.1rem;
  opacity: 0.88;
  max-width: 520px;
  margin: 0 auto 2rem;
  font-weight: 300;
}

.hero-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--dark);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.2rem;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
  cursor: pointer;
  border: none;
  font-family: 'DM Sans', sans-serif;
}

.btn-primary {
  background: var(--accent);
  color: var(--dark);
  box-shadow: 0 4px 16px rgba(244,168,0,0.3);
}

.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(244,168,0,0.4); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
  margin-left: 0.75rem;
}

.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }

/* MAIN */
main { flex: 1; }

.section { max-width: 1100px; margin: 0 auto; padding: 4rem 2rem; }

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem;
  letter-spacing: 0.04em;
  color: var(--blue-dark);
  margin-bottom: 0.4rem;
}

.section-sub { color: var(--gray-text); font-size: 1rem; margin-bottom: 2.5rem; }

.divider {
  width: 56px;
  height: 4px;
  background: var(--accent);
  border-radius: 2px;
  margin: 0.5rem 0 2rem;
}

/* CARDS */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-mid);
  transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,87,168,0.14); }
.card-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.card h3 { font-size: 1.05rem; font-weight: 600; margin-bottom: 0.5rem; color: var(--blue-dark); }
.card p { font-size: 0.9rem; color: var(--gray-text); line-height: 1.6; }

/* INFO BLOCKS */
.info-block {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-mid);
  margin-bottom: 1.5rem;
}

.info-block h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  color: var(--blue-dark);
  margin-bottom: 0.75rem;
  letter-spacing: 0.03em;
}

.info-block p, .info-block li { color: var(--gray-text); font-size: 0.97rem; line-height: 1.75; }
.info-block ul { list-style: none; padding: 0; }

.info-block ul li {
  padding: 0.5rem 0 0.5rem 1.5rem;
  position: relative;
  border-bottom: 1px solid var(--gray-mid);
}

.info-block ul li:last-child { border-bottom: none; }
.info-block ul li::before { content: '✓'; position: absolute; left: 0; color: var(--blue); font-weight: 700; }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }

.contact-info p {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--gray-text);
  margin-bottom: 1rem;
  font-size: 0.97rem;
}

.contact-info .icon { font-size: 1.1rem; width: 28px; text-align: center; }

.form-group { margin-bottom: 1.25rem; }

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--dark);
  letter-spacing: 0.02em;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1.5px solid var(--gray-mid);
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--dark);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-group input:focus, .form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0,87,168,0.1);
}

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

/* SERVICES */
.services-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.25rem; }

.service-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-mid);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: transform 0.2s, box-shadow 0.2s;
}

.service-item:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(0,87,168,0.13); }
.service-item .icon { font-size: 1.8rem; flex-shrink: 0; margin-top: 2px; }
.service-item h3 { font-size: 1rem; font-weight: 600; color: var(--blue-dark); margin-bottom: 0.3rem; }
.service-item p { font-size: 0.88rem; color: var(--gray-text); }

/* CTA BANNER */
.cta-banner {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  color: var(--white);
  text-align: center;
  padding: 3.5rem 2rem;
}

.cta-banner h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
}

.cta-banner p { opacity: 0.85; margin-bottom: 1.75rem; font-size: 1rem; }

/* FOOTER */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.65);
  padding: 2rem;
  text-align: center;
  font-size: 0.88rem;
}

footer a { color: var(--accent); text-decoration: none; }
footer a:hover { text-decoration: underline; }

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
}

.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; justify-content: center; }

/* PAGE HEADER */
.page-header {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  color: var(--white);
  padding: 3rem 2rem 2.5rem;
  text-align: center;
}

.page-header h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}

.page-header p { opacity: 0.82; font-size: 1rem; font-weight: 300; }

/* HIGHLIGHT STRIP */
.highlight-strip {
  background: var(--accent);
  color: var(--dark);
  text-align: center;
  padding: 0.75rem 2rem;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .header-inner { flex-direction: column; height: auto; padding: 1rem 1.5rem; gap: 0.75rem; }
  nav ul { flex-wrap: wrap; justify-content: center; gap: 0.2rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .hero { padding: 3.5rem 1.5rem 3rem; }
  .btn-outline { margin-left: 0; margin-top: 0.5rem; }
}
