:root {
  --primary: #123c55;
  --primary-dark: #09283d;
  --secondary: #2f7d6d;
  --accent: #f6b044;
  --light: #f6faf9;
  --white: #ffffff;
  --text: #23323b;
  --muted: #637681;
  --border: #dce8e5;
  --shadow: 0 22px 55px rgba(18, 60, 85, 0.14);
  --radius: 26px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Lato", Arial, sans-serif;
  color: var(--text);
  line-height: 1.75;
  background: var(--white);
}

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

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

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

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(220,232,229,0.9);
}

.nav-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  color: var(--primary-dark);
}

.logo-icon {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: white;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  box-shadow: var(--shadow);
  font-size: 1.35rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-weight: 800;
  font-size: .94rem;
  color: #4d6069;
}

.nav-links a:hover {
  color: var(--secondary);
}

.nav-button {
  background: var(--accent);
  color: #2d210f !important;
  padding: 10px 18px;
  border-radius: 999px;
}

.menu-toggle {
  display: none;
  border: 0;
  background: var(--primary);
  color: white;
  border-radius: 12px;
  padding: 9px 13px;
  font-size: 1.4rem;
}

.hero {
  min-height: calc(100vh - 82px);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(246,250,249,.98) 0%, rgba(246,250,249,.86) 52%, rgba(246,250,249,.28) 100%),
    url("https://images.unsplash.com/photo-1493836512294-502baa1986e2?auto=format&fit=crop&w=1800&q=80") center/cover fixed;
}

.hero-overlay {
  position: absolute;
  inset: auto -180px -180px auto;
  width: 470px;
  height: 470px;
  border-radius: 50%;
  background: rgba(47,125,109,.16);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: 50px;
  align-items: center;
  padding: 90px 0;
}

.badge,
.section-label {
  display: inline-flex;
  color: var(--secondary);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .82rem;
  margin-bottom: 14px;
}

.hero h1 {
  font-size: clamp(1.65rem, 3.7vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -.05em;
  color: var(--primary-dark);
  margin-bottom: 22px;
}

.hero h2 {
  color: #304852;
  font-size: clamp(1.18rem, 2.1vw, 1.55rem);
  line-height: 1.45;
  margin-bottom: 18px;
}

.hero p,
.section-header p,
.split p,
.location-card p,
.contact-section p {
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 15px 28px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .02em;
  cursor: pointer;
  transition: .25s ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-primary {
  color: #2d210f;
  background: var(--accent);
  box-shadow: 0 18px 34px rgba(246,176,68,.33);
}

.btn-secondary {
  color: white;
  background: var(--secondary);
  box-shadow: 0 18px 34px rgba(47,125,109,.24);
}

.hero-note {
  color: var(--primary);
  font-weight: 900;
}

.hero-card-inner {
  padding: 34px;
  border: 1px solid rgba(255,255,255,.55);
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(16px);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.card-kicker {
  color: var(--secondary);
  font-weight: 900;
}

.hero-card ul {
  list-style: none;
  display: grid;
  gap: 15px;
  margin-top: 20px;
  color: #394e58;
  font-weight: 800;
}

.section {
  padding: 98px 0;
  scroll-margin-top: 92px;
}

.section-light {
  background: var(--light);
}

.section-header {
  max-width: 850px;
  margin-bottom: 44px;
}

h2 {
  color: var(--primary-dark);
  font-size: clamp(1.4rem, 2.7vw, 2.35rem);
  line-height: 1.14;
  letter-spacing: -.04em;
  margin-bottom: 22px;
}

h3 {
  color: var(--primary-dark);
  font-size: 1.25rem;
  line-height: 1.25;
  margin-bottom: 10px;
}

.split {
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  gap: 54px;
  align-items: center;
}

.quote-box {
  margin-top: 28px;
  padding: 28px;
  border-left: 5px solid var(--secondary);
  background: var(--white);
  border-radius: 0 var(--radius) var(--radius) 0;
  box-shadow: 0 14px 38px rgba(18,60,85,.09);
}

.quote-box p + p {
  margin-top: 10px;
}

.image-panel {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.image-panel img {
  height: 460px;
  object-fit: cover;
}

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

.service-card,
.step-card,
.location-card,
.testimonial,
.contact-form,
.contact-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(18,60,85,.08);
}

.service-card {
  padding: 30px;
  transition: .25s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: rgba(47,125,109,.35);
}

.service-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: #e8f3f0;
  font-size: 1.85rem;
  margin-bottom: 18px;
}

.service-card p,
.service-card li,
.step-card p,
.trust-list p,
.testimonial small {
  color: var(--muted);
}

.service-card ul {
  padding-left: 20px;
  margin-top: 10px;
}

.center {
  text-align: center;
  margin-top: 42px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.step-card {
  padding: 32px;
}

.step-card span {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: var(--primary);
  color: white;
  display: grid;
  place-items: center;
  font-weight: 900;
  margin-bottom: 18px;
}

.online-banner {
  margin-top: 32px;
  padding: 34px;
  color: white;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  box-shadow: var(--shadow);
}

.online-banner h3,
.online-banner p {
  color: white;
}

.online-banner p {
  opacity: .92;
}

.trust-list {
  display: grid;
  gap: 13px;
}

.testimonial {
  padding: 36px;
}

.testimonial-text {
  color: var(--primary-dark);
  font-size: 1.45rem;
  font-weight: 900;
  line-height: 1.48;
  margin-bottom: 18px;
}

.testimonial-author {
  color: var(--secondary);
  font-weight: 900;
  margin-bottom: 12px;
}

.location-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 34px;
}

.location-card {
  padding: 32px;
}

.location-items {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.location-items div {
  background: var(--light);
  padding: 16px;
  border-radius: 16px;
  color: #41535d;
  font-weight: 800;
}

.map-card {
  position: relative;
  min-height: 380px;
  border-radius: var(--radius);
  overflow: hidden;
  background:
    linear-gradient(rgba(18,60,85,.12), rgba(18,60,85,.12)),
    url("https://images.unsplash.com/photo-1524661135-423995f22d0b?auto=format&fit=crop&w=1400&q=80") center/cover;
  box-shadow: var(--shadow);
}

.map-badge {
  position: absolute;
  left: 24px;
  bottom: 24px;
  background: rgba(255,255,255,.94);
  padding: 18px 22px;
  border-radius: 18px;
  color: var(--primary-dark);
  font-weight: 900;
  box-shadow: 0 14px 34px rgba(18,60,85,.16);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr .78fr;
  gap: 36px;
  align-items: start;
}

.contact-form {
  padding: 34px;
  margin-top: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--primary-dark);
  font-weight: 900;
  margin-bottom: 18px;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 15px;
  padding: 14px 15px;
  font: inherit;
  color: var(--text);
  background: #fbfdfd;
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 4px rgba(47,125,109,.12);
}

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

.full-btn {
  width: 100%;
}

.contact-box {
  padding: 34px;
  background: linear-gradient(160deg, var(--primary-dark), var(--primary));
  color: white;
  position: relative;
  overflow: hidden;
}

.contact-box h3,
.contact-box p {
  color: white;
}

.contact-box div {
  background: rgba(255,255,255,.11);
  padding: 16px;
  border-radius: 16px;
  margin-top: 14px;
  font-weight: 800;
}

.footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,.82);
  text-align: center;
  padding: 44px 0;
}

.footer p,
.footer small {
  color: rgba(255,255,255,.82);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: .75s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

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

  .nav-links {
    display: none;
    position: absolute;
    top: 82px;
    left: 0;
    right: 0;
    background: white;
    padding: 22px;
    flex-direction: column;
    border-bottom: 1px solid var(--border);
  }

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

  .hero-grid,
  .split,
  .location-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .hero {
    background:
      linear-gradient(90deg, rgba(246,250,249,.98), rgba(246,250,249,.72)),
      url("https://images.unsplash.com/photo-1493836512294-502baa1986e2?auto=format&fit=crop&w=1200&q=80") center/cover;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .section {
    padding: 72px 0;
  }

  .hero-grid {
    padding: 62px 0;
  }

  .services-grid,
  .steps-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .service-card,
  .step-card,
  .testimonial,
  .location-card,
  .contact-form,
  .contact-box {
    padding: 24px;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .hero-note {
    width: 100%;
    text-align: center;
  }

  .logo span:last-child {
    font-size: .9rem;
  }
}

.booking-form-btn {
  margin-top: 14px;
}

.contact-box a {
  color: #ffffff;
  text-decoration: underline;
}

.footer-logo-link {
  display: inline-flex;
  justify-content: center;
  margin-bottom: 22px;
}

.footer-logo {
  width: min(360px, 86vw);
  height: auto;
  opacity: 0.96;
}
