:root {
  --brand-bg: #020617;           /* page background */
  --brand-surface: #0b1120;      /* cards / sections */
  --brand-surface-alt: #111827;  /* alternate section bg */
  --brand-primary: #ef4444;      /* AMG-style red accent */
  --brand-primary-soft: #7f1d1d;
  --brand-accent: #f97316;       /* additional accent (amber/red) */
  --border-subtle: #1f2937;
  --text-main: #e5e7eb;
  --text-muted: #9ca3af;
  --max-width: 1100px;
}

/* Reset / base */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text-main);
  background: radial-gradient(circle at top left, #020617 0, #020617 40%, #000000 100%);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

/* Layout helpers */

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

h1, h2, h3 {
  font-weight: 700;
  letter-spacing: -0.02em;
}

section {
  padding: 4rem 0;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  font-size: 0.95rem;
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: var(--brand-primary);
  color: #f9fafb;
  box-shadow: 0 10px 25px rgba(239, 68, 68, 0.35);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 35px rgba(239, 68, 68, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--text-main);
  border: 1px solid var(--border-subtle);
}

.btn-outline:hover {
  background: #111827;
}

/* Header */

header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(2, 6, 23, 0.96);
  border-bottom: 1px solid #111827;
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.logo-img {
  height: 40px;          /* adjust as needed */
  width: auto;
  display: block;
}


.logo-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-start; 
  gap: 0.5rem;
}


.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 20%, #f9fafb 0, #111827 55%, #000 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f9fafb;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 0 0 1px rgba(249, 250, 251, 0.06);
}

.logo-text {
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Nav */

nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.9rem;
}

nav a {
  color: var(--text-muted);
  position: relative;
  padding-bottom: 0.1rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.15rem;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, var(--brand-primary), var(--brand-accent));
  transition: width 0.2s ease;
}

nav a:hover {
  color: var(--text-main);
}

nav a:hover::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Hamburger / mobile nav */

.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--text-main);
}

.mobile-nav {
  display: none;
  border-top: 1px solid #111827;
  background: #020617;
}

.mobile-nav.open {
  display: block;
}

.mobile-nav-inner {
  padding: 1rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mobile-nav a {
  font-size: 0.9rem;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  nav {
    display: none;
  }
  .hamburger {
    display: flex;
  }
}

/* Hero */

.hero {
  background: radial-gradient(circle at top left, #111827 0, #020617 45%, #000000 100%);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
  padding: 3.5rem 0 4rem;
}

.hero-kicker {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--brand-accent);
  font-weight: 600;
  margin-bottom: 0.9rem;
}

.hero h1 {
  font-size: clamp(2.3rem, 3.1vw, 3rem);
  margin-bottom: 0.8rem;
}

.hero p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  max-width: 32rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 1.25rem;
}

.hero-note,
.hero-badge-row {
  display: none;
}


.hero-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem;
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--brand-primary);
  box-shadow: 0 0 10px rgba(239, 68, 68, 0.7);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.hero-image {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  min-height: 260px;
  background: radial-gradient(circle at top, #1f2937, #020617 60%, #000 100%);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7);
}

.hero-image::after {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
  font-size: 0.9rem;
  padding: 1rem;
  text-align: center;
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }
  .hero-image {
    order: -1;
  }
}

/* Trust strip */

.trust-strip {
  background: #020617;
  border-top: 1px solid #111827;
  border-bottom: 1px solid #111827;
  color: var(--text-muted);
  padding: 1rem 0;
}

.trust-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  opacity: 0.9;
}

.trust-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--brand-primary);
}

/* Sections */

.section-heading {
  text-align: center;
  margin-bottom: 0.5rem;
}

.section-heading h2 {
  font-size: 1.6rem;
  margin-bottom: 0.2rem;
}

.section-heading p {
  color: var(--text-muted);
  max-width: 34rem;
  margin: 0.4rem auto 0;
  font-size: 0.95rem;
}

/* Services */

#services {
  background: #020617;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.service-card {
  border-radius: 1.25rem;
  border: 1px solid var(--border-subtle);
  padding: 1.5rem;
  background: var(--brand-surface);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.service-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--brand-primary);
}

.service-card h3 {
  font-size: 1.05rem;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .services-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* Why us */

#about {
  background: var(--brand-surface-alt);
}

.why-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2.5rem;
  margin-top: 2rem;
  align-items: start;
}

.why-points {
  display: grid;
  gap: 0.75rem;
  font-size: 0.95rem;
}

.why-point {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.why-point-icon {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  border: 2px solid var(--brand-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  flex-shrink: 0;
  color: var(--brand-primary);
}

.why-image {
  border-radius: 1.25rem;
  background: radial-gradient(circle at top, #1f2937, #020617 60%, #000 100%);
  min-height: 220px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
}

.why-image::after {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
  font-size: 0.9rem;
  text-align: center;
  padding: 1rem;
}

@media (max-width: 900px) {
  .why-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* Reviews */

.reviews {
  background: #020617;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.review-card {
  border-radius: 1.25rem;
  background: var(--brand-surface);
  padding: 1.3rem 1.4rem;
  border: 1px solid var(--border-subtle);
  font-size: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.review-stars {
  font-size: 0.85rem;
  color: #fbbf24;
}

.review-author {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .reviews-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .reviews-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* FAQ */

.faq {
  background: var(--brand-surface-alt);
}

.faq-list {
  margin-top: 2rem;
  display: grid;
  gap: 1.25rem;
}

.faq-item {
  border-radius: 1rem;
  border: 1px solid var(--border-subtle);
  background: var(--brand-surface);
  padding: 1.25rem 1.4rem;
  font-size: 0.95rem;
}

.faq-item h3 {
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

.faq-item p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Contact */

#contact {
  background: #020617;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 2.5rem;
  margin-top: 2rem;
}

.contact-details p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.contact-details strong {
  color: var(--text-main);
}

.hours {
  margin-top: 1rem;
  font-size: 0.9rem;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  max-width: 260px;
}

form {
  display: grid;
  gap: 0.9rem;
}

label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-main);
}

input,
textarea {
  width: 100%;
  padding: 0.6rem 0.75rem;
  border-radius: 0.7rem;
  border: 1px solid #1f2937;
  font-size: 0.9rem;
  font-family: inherit;
  background: #020617;
  color: var(--text-main);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

input:focus,
textarea:focus {
  outline: 2px solid var(--brand-primary);
  border-color: transparent;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* Map */

.map-section {
  padding: 0;
  margin: 0;
  background: #000;
}

.map-section iframe {
  width: 100%;
  height: 320px;
  border: 0;
  display: block;
  filter: grayscale(0.2) brightness(0.85);
}

@media (min-width: 900px) {
  .map-section iframe {
    height: 420px;
  }
}

/* Footer */

footer {
  padding: 2rem 0 2.5rem;
  border-top: 1px solid #111827;
  font-size: 0.85rem;
  color: var(--text-muted);
  background: #020617;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
}

.footer-links {
  display: flex;
  gap: 1.25rem;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-links a:hover {
  color: var(--text-main);
}

@media (max-width: 640px) {
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
