/* Base layout and typography */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  color: #111827;
  background-color: #f9fafb;
}

a {
  color: #1d4ed8;
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: underline;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
}

.section {
  padding: 3rem 0;
}

.section h2 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 2rem;
}

@media (max-width: 768px) {
  .two-column {
    grid-template-columns: 1fr;
  }
}

.btn {
  display: inline-block;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  text-align: center;
}

.btn-primary {
  background-color: #1d4ed8;
  color: #ffffff;
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: #1e40af;
}

.btn-secondary {
  background-color: #ffffff;
  color: #1f2937;
  border-color: #d1d5db;
}

.btn-secondary:hover,
.btn-secondary:focus {
  background-color: #f3f4f6;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.5rem;
}

.feature-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #10b981;
  font-size: 1.1rem;
}

.card {
  background-color: #ffffff;
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
}

.map-wrapper {
  border-radius: 0.75rem;
  width: 100%;
  max-width: 600px;
  height: 450px;
}

.map-wrapper iframe {
  border-radius: 0.75rem;
  width: 100%;
  height: 100%;
}

.highlight-call {
  font-size: 1.3rem;
  font-weight: 600;
}

.visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

/* Header and navigation */
.site-header {
  background-color: #111827;
  color: #f9fafb;
  position: sticky;
  top: 0;
  z-index: 20;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem;
  gap: 1rem;
}

.brand-link {
  color: inherit;
  text-decoration: none;
}

.brand-logo {
  display: block;
  height: 40px;
  width: auto;
}

.brand-tagline {
  display: block;
  font-size: 0.8rem;
  color: #9ca3af;
}

.site-nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  padding: 0;
  margin: 0;
}

.site-nav a {
  color: #e5e7eb;
  font-size: 0.95rem;
}

.site-nav a[aria-current="page"] {
  border-bottom: 2px solid #60a5fa;
}

.header-cta .btn {
  font-size: 0.9rem;
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 0.3rem;
  cursor: pointer;
}

.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background-color: #e5e7eb;
  margin: 4px 0;
}

@media (max-width: 768px) {
  .header-inner {
    flex-wrap: wrap;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    width: 100%;
    display: none;
    padding: 0 1rem 0.5rem;
  }

  .site-nav.open {
    display: block;
  }

  .site-nav ul {
    flex-direction: column;
    padding: 0.25rem 0;
  }
}

/* Hero and page hero */
.hero {
  color: #eff6ff;
  padding: 4rem 0 3.5rem;
  position: relative;
}

.hero .hero-overlay {
  background-image:
    linear-gradient(to bottom right, rgba(15, 23, 42, 0.75), rgba(15, 23, 42, 0.35));
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-inner {
  max-width: 720px;
}

.hero h1 {
  font-size: clamp(2rem, 2.7vw, 2.8rem);
  margin-bottom: 0.8rem;
}

.hero p {
  margin-top: 0;
  margin-bottom: 1.1rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0 0 1.2rem;
}

.hero-badges li {
  background-color: rgba(15, 23, 42, 0.7);
  border-radius: 999px;
  padding: 0.3rem 0.8rem;
  font-size: 0.85rem;
}

.hero-cta .btn {
  margin-right: 0.6rem;
  margin-bottom: 0.4rem;
}

.hero img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.page-hero {
  background-color: #e5e7eb;
  padding: 2.5rem 0 2rem;
}

.page-hero h1 {
  margin: 0 0 0.6rem;
}

/* Services */
.section-services {
  background-color: #ffffff;
}

.section-mot {
  background-color: #e5e7eb;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

@media (max-width: 960px) {
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .service-grid {
    grid-template-columns: 1fr;
  }
}

.service-card {
  background-color: #ffffff;
  border-radius: 0.75rem;
  padding: 1.4rem;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.06);
}

.service-card h3 {
  margin-top: 0;
}

.service-link {
  font-weight: 600;
  font-size: 0.95rem;
}

.section-why-us {
  background-color: #f3f4f6;
}

.section-area {
  background-color: #ffffff;
}

.mot-centre {
  margin-top: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.mot-logo {
  width: 70px;
  height: auto;
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .mot-centre {
    flex-direction: column;
  }
}

/* Contact form */
.contact-form {
  max-width: 520px;
}

.form-row {
  margin-bottom: 1rem;
}

.form-row label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.form-row input,
.form-row textarea {
  width: 100%;
  padding: 0.6rem 0.7rem;
  border-radius: 0.5rem;
  border: 1px solid #d1d5db;
  font: inherit;
}

.form-row input:focus,
.form-row textarea:focus {
  outline: 2px solid #2563eb;
  outline-offset: 1px;
  border-color: transparent;
}

/* Footer */
.site-footer {
  background-color: #020617;
  color: #9ca3af;
  padding: 1.8rem 0;
  font-size: 0.9rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
}

.footer-inner a {
  color: #e5e7eb;
}

.footer-logo {
  height: 30px;
  width: auto;
  margin-right: 1rem;
}

