:root {
  --dark: #111827;
  --navy: #16213e;
  --blue: #1d3557;
  --green: #6aa84f;
  --green-dark: #4f8a35;
  --light: #f6f8fb;
  --white: #ffffff;
  --muted: #5f6b7a;
  --border: #e5e7eb;
  --shadow: 0 24px 60px rgba(17, 24, 39, 0.12);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--light);
  color: var(--dark);
}

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

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.top-bar {
  background: var(--navy);
  color: #e5edf7;
  font-size: 14px;
  padding: 10px 0;
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: var(--blue);
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--green), #b8d957);
  display: grid;
  place-items: center;
  color: var(--white);
  font-weight: 900;
  box-shadow: 0 10px 25px rgba(106, 168, 79, 0.35);
}

.brand span {
  display: block;
  font-size: 22px;
}

.menu {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #334155;
  font-weight: 700;
  font-size: 15px;
}

.menu a:hover {
  color: var(--green-dark);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: 0.2s ease;
  cursor: pointer;
}

.btn-primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 14px 32px rgba(106, 168, 79, 0.32);
}

.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
}

.btn-secondary {
  background: var(--white);
  color: var(--blue);
  border-color: var(--border);
}

.btn-secondary:hover {
  border-color: var(--green);
  color: var(--green-dark);
  transform: translateY(-1px);
}

.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: 12px;
  font-size: 22px;
  cursor: pointer;
}

.hero {
  padding: 80px 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(106, 168, 79, 0.18), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #eef4fb 100%);
}

.breadcrumb {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 24px;
}

.breadcrumb a {
  color: var(--green-dark);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 48px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #eaf5e6;
  color: var(--green-dark);
  font-weight: 800;
  font-size: 14px;
  margin-bottom: 22px;
}

.eyebrow::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
}

h1 {
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.04;
  margin: 0 0 22px;
  color: var(--dark);
  letter-spacing: -1.8px;
}

.hero p {
  font-size: 20px;
  line-height: 1.8;
  color: var(--muted);
  margin: 0 0 30px;
  max-width: 760px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 720px;
}

.trust-item {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
}

.trust-item strong {
  display: block;
  font-size: 24px;
  color: var(--blue);
  margin-bottom: 4px;
}

.trust-item span {
  font-size: 14px;
  color: var(--muted);
  font-weight: 700;
}

.hero-card,
.panel {
  background: var(--white);
  border-radius: 30px;
  padding: 34px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.hero-card h2,
.panel h2 {
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 25px;
}

.hero-card ul,
.list,
.contact-list {
  padding: 0;
  margin: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.hero-card li,
.list li,
.contact-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: #334155;
  line-height: 1.6;
  font-weight: 700;
}

.hero-card li {
  padding: 0;
}

.contact-list li,
.list li {
  padding: 14px;
  border-radius: 18px;
  background: #f8fafc;
  border: 1px solid var(--border);
}

.check,
.icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #eaf5e6;
  color: var(--green-dark);
  display: grid;
  place-items: center;
  font-weight: 900;
  flex: 0 0 26px;
}

.icon {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  flex-basis: 34px;
}

.service-mini {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.service-mini:last-child {
  border-bottom: 0;
}

.service-mini .icon {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
}

.service-mini h3 {
  margin: 0 0 5px;
  font-size: 17px;
  color: var(--dark);
}

.service-mini p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted);
}

.section {
  padding: 78px 0;
}

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

.section-title span {
  color: var(--green-dark);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 13px;
}

.section-title h2 {
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.15;
  margin: 12px 0;
  color: var(--dark);
  letter-spacing: -1px;
}

.section-title p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
  margin: 0;
}

.services-grid,
.content-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card,
.info-card,
.contact-card,
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 10px 30px rgba(17, 24, 39, 0.05);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.service-card .icon,
.contact-card .icon {
  margin-bottom: 18px;
}

.service-card h3,
.info-card h3,
.contact-card h3,
.faq-item h3 {
  color: var(--blue);
  font-size: 22px;
  margin: 0 0 14px;
}

.service-card p,
.info-card p,
.contact-card p,
.faq-item p,
.panel p {
  color: var(--muted);
  line-height: 1.75;
  margin: 0;
  font-size: 16px;
}

.service-card a,
.contact-card a {
  color: var(--green-dark);
  font-weight: 900;
}

.about {
  background: var(--white);
}

.about-grid,
.two-columns,
.form-box,
.cta-box,
.map-placeholder {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 34px;
  align-items: start;
}

.about-panel {
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: var(--white);
  border-radius: 30px;
  padding: 38px;
  box-shadow: var(--shadow);
}

.about-panel h2 {
  margin: 0 0 18px;
  font-size: 34px;
  line-height: 1.15;
}

.about-panel p {
  margin: 0;
  color: #dbe7f5;
  line-height: 1.8;
  font-size: 17px;
}

.about-list {
  display: grid;
  gap: 16px;
}

.about-item {
  display: flex;
  gap: 14px;
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 20px;
}

.about-item h3 {
  margin: 0 0 6px;
  color: var(--dark);
  font-size: 18px;
}

.about-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.dark-section,
.cities,
.map-placeholder {
  background:
    linear-gradient(rgba(22, 33, 62, 0.94), rgba(22, 33, 62, 0.94)),
    linear-gradient(135deg, #1d3557, #111827);
  color: var(--white);
}

.dark-section .section-title h2,
.dark-section .section-title p,
.cities .section-title h2,
.cities .section-title p {
  color: var(--white);
}

.dark-section .section-title span,
.cities .section-title span {
  color: #b8d957;
}

.process-grid,
.steps-grid,
.city-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

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

.process-card,
.step-card,
.city-card,
.map-card {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 24px;
}

.process-number,
.step-number {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: #b8d957;
  color: #16213e;
  display: grid;
  place-items: center;
  font-weight: 900;
  margin-bottom: 16px;
}

.process-card h3,
.step-card h3,
.city-card h3 {
  margin: 0 0 10px;
  font-size: 19px;
  color: var(--white);
}

.city-card h3 {
  font-size: 24px;
}

.process-card p,
.step-card p,
.city-card p,
.map-placeholder p {
  margin: 0;
  color: #dbe7f5;
  line-height: 1.7;
  font-size: 15px;
}

.faq-grid {
  display: grid;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.cta,
.form-section,
.contact {
  padding: 80px 0;
  background: var(--light);
}

.cta-box,
.form-box,
.contact-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 42px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 34px;
  align-items: center;
}

.cta-box h2,
.form-intro h2,
.contact-box h2 {
  margin: 0 0 14px;
  color: var(--dark);
  font-size: 36px;
  line-height: 1.15;
}

.cta-box p,
.form-intro p,
.contact-box p {
  color: var(--muted);
  line-height: 1.8;
  margin: 0 0 22px;
  font-size: 17px;
}

.contact-info {
  display: grid;
  gap: 14px;
}

.info-line {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 20px;
  border-radius: 18px;
  background: #f8fafc;
  border: 1px solid var(--border);
  color: #334155;
  font-weight: 700;
  line-height: 1.65;
}

.info-line strong {
  flex: 0 0 115px;
  line-height: 1.65;
  white-space: nowrap;
}

.info-line span {
  display: block;
  line-height: 1.7;
}

.notice {
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
  color: #334155;
  line-height: 1.7;
  font-weight: 700;
}

form {
  display: grid;
  gap: 16px;
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  color: #334155;
  font-weight: 800;
  font-size: 14px;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 16px;
  min-height: 48px;
  padding: 12px 14px;
  font-size: 15px;
  font-family: Arial, Helvetica, sans-serif;
  outline: none;
  background: #ffffff;
  color: var(--dark);
}

.field textarea {
  min-height: 130px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(106, 168, 79, 0.12);
}

.form-note {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

.map-placeholder {
  border-radius: 30px;
  padding: 42px;
  box-shadow: var(--shadow);
}

.map-card strong {
  display: block;
  color: #b8d957;
  margin-bottom: 10px;
  font-size: 18px;
}

.footer {
  background: #0f172a;
  color: #cbd5e1;
  padding: 34px 0;
  font-size: 14px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer strong {
  color: var(--white);
}

@media (max-width: 980px) {
  .mobile-toggle {
    display: block;
  }

  .menu {
    display: none;
    position: absolute;
    left: 20px;
    right: 20px;
    top: 88px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 18px;
    flex-direction: column;
    align-items: stretch;
    box-shadow: var(--shadow);
  }

  .menu.active {
    display: flex;
  }

  .hero-grid,
  .about-grid,
  .two-columns,
  .form-box,
  .cta-box,
  .contact-box,
  .map-placeholder {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .content-grid,
  .contact-grid,
  .city-grid,
  .trust-row {
    grid-template-columns: 1fr;
  }

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

  .hero {
    padding: 62px 0;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 26px, 1180px);
  }

  .nav {
    height: 72px;
  }

  .brand span {
    font-size: 18px;
  }

  h1 {
    font-size: clamp(38px, 11vw, 48px);
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero-card,
  .cta-box,
  .contact-box,
  .form-box,
  .map-placeholder,
  .panel,
  .about-panel {
    padding: 26px;
  }

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

  .top-bar-content {
    font-size: 13px;
  }


}



/* Mobile contact blocks fix */
@media (max-width: 560px) {
  .info-line {
    display: block;
    padding: 18px;
    line-height: 1.6;
  }

  .info-line strong {
    display: block;
    flex: none;
    min-width: 0;
    margin-bottom: 8px;
    white-space: normal;
    line-height: 1.35;
  }

  .info-line span {
    display: block;
    line-height: 1.65;
    word-break: normal;
  }
}

