:root {
  --bg: #f8fafc;
  --surface: #ffffff;
  --surface-alt: #eaf0f6;
  --text: #0f172a;
  --muted: #475569;
  --line: #dbe4ee;
  --primary: #0f3d62;
  --primary-dark: #0a2740;
  --accent: #d97706;
  --shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  --radius: 20px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

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

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.promo-banner {
  background: var(--accent);
  color: white;
  text-align: center;
  padding: 0.6rem 0;
  font-size: 0.9rem;
  font-weight: 700;
}

.promo-banner a {
  color: white;
  text-decoration: none;
}

.promo-banner a:hover {
  text-decoration: underline;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(219, 228, 238, 0.9);
  backdrop-filter: blur(10px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-phone {
  display: none;
  color: var(--accent);
}

.header-phone:hover {
  text-decoration: none;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 6px;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2.5px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 0.1rem;
}

.brand:hover {
  text-decoration: none;
}

.brand-title {
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--text);
}

.brand-subtitle {
  color: var(--muted);
  font-size: 0.92rem;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.nav a {
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
}

.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  background: url('assets/584685851.jpg') center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 39, 64, 0.9), rgba(15, 61, 98, 0.7));
}

.hero-content {
  position: relative;
  color: white;
  padding: 6.5rem 0 5rem;
}

.eyebrow {
  margin: 0 0 0.8rem;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero h1 {
  margin: 0;
  max-width: 900px;
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  line-height: 1.05;
}

.hero-copy {
  max-width: 760px;
  margin: 1.2rem 0 0;
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.9);
}

.hero-actions,
.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.8rem;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0.95rem 1.25rem;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.15s ease, background 0.2s ease, border-color 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
  text-decoration: none;
}

.button-primary {
  background: var(--accent);
  color: white;
}

.button-primary:hover {
  background: #b85f00;
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
  color: white;
}

.section .button-secondary,
.contact-section .button-secondary,
.location-layout .button-secondary {
  border-color: var(--line);
  background: white;
  color: var(--text);
}

.trust-list {
  list-style: none;
  padding: 0;
  margin: 1.8rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.trust-list li {
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.95rem;
}

.section {
  padding: 5rem 0;
}

.section-alt {
  background: var(--surface-alt);
}

.two-column {
  display: grid;
  grid-template-columns: 1.35fr 0.95fr;
  gap: 2rem;
  align-items: start;
}

.contact-card,
.map-card,
.contact-form,
.rates-card,
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-card {
  padding: 1.5rem;
}

.contact-card h3,
.rates-card h3,
.card h3 {
  margin-top: 0;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 2rem;
  text-align: center;
}

.section-heading.left {
  text-align: left;
  margin-left: 0;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.1;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.card img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 20px 20px 0 0;
}

.card {
  overflow: hidden;
}

.card h3,
.card p {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.card h3 {
  margin-bottom: 0.5rem;
}

.card p {
  margin-top: 0;
  padding-bottom: 1.4rem;
  color: var(--muted);
}

.feature-list-wrap {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
}

.feature-list {
  margin: 0;
  padding-left: 1.2rem;
}

.feature-list li {
  margin-bottom: 0.65rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}

.gallery-grid img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid var(--line);
}

.rates-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.rates-card {
  padding: 1.4rem;
}

.rates-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.rates-card li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
}

.rates-card li:last-child {
  border-bottom: 0;
}

.small-note {
  color: var(--muted);
  margin-bottom: 0;
}

.map-card {
  overflow: hidden;
}

.map-card iframe {
  width: 100%;
  min-height: 360px;
  border: 0;
}

.contact-layout {
  align-items: stretch;
}

.contact-form {
  padding: 1.4rem;
}

.contact-form label {
  display: block;
  font-weight: 700;
  margin-bottom: 1rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-top: 0.4rem;
  padding: 0.9rem 1rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
  font: inherit;
}

.button-full {
  width: 100%;
}

.form-note,
.contact-stack,
.intro-section p,
.section-heading p,
.location-layout p {
  color: var(--muted);
}

.site-footer {
  background: var(--primary-dark);
  color: rgba(255, 255, 255, 0.88);
  padding: 2rem 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1.2rem;
}

.footer-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: white;
}

.site-footer a {
  color: white;
}

@media (max-width: 900px) {
  .footer-inner,
  .two-column,
  .feature-list-wrap,
  .card-grid,
  .rates-grid {
    grid-template-columns: 1fr;
    display: grid;
  }

  .hamburger {
    display: flex;
  }

  .header-phone {
    display: flex;
  }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.1);
    padding: 0.75rem 1rem;
    flex-direction: column;
    gap: 0;
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    padding: 0.85rem 0.5rem;
    border-bottom: 1px solid var(--line);
  }

  .nav a:last-child {
    border-bottom: none;
  }

  .site-header {
    position: sticky;
  }

  .header-inner {
    position: relative;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 1.2rem, 1120px);
  }

  .site-header {
    position: sticky;
  }

  .header-inner {
    padding: 0.9rem 0;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding: 4rem 0 3.25rem;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .button,
  .hero-actions .button,
  .location-actions .button {
    width: 100%;
  }

  .trust-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid img {
    height: 220px;
  }

  .rates-card li {
    align-items: baseline;
    flex-direction: column;
    gap: 0.2rem;
  }

  .section {
    padding: 3.5rem 0;
  }
}
