:root {
  --red-50: #fff5f5;
  --red-100: #ffe3e3;
  --red-300: #fda4af;
  --red-500: #ef4444;
  --red-700: #b91c1c;
  --red-900: #7f1d1d;
  --red-kingsway: #e20203;
  --bg: #ffffff;
  --text: #2b2b2b;
  --muted: #6b6b6b;
  --white: #ffffff;
}

/* Base reset */
* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
    Arial;
  color: var(--text);
}
body {
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Layout containers */
.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 0;
}

/* Header / Nav */
header {
  background-color: var(--white);
  color: var(--text);
  padding: 1rem 0;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.logo {
  display: block;
  height: 60px;
  width: auto;
  border-radius: 6px;
}
.logo img {
  display: block;
  height: 34px;
  width: auto;
  border-radius: 6px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}
.logo span {
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.4px;
}
nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.nav a {
  color: var(--text);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.18s ease;
}
.nav a:hover {
  color: var(--red-kingsway);
  text-decoration: underline;
}
.nav .btn.secondary {
  margin-left: auto;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.22);
}
.nav .btn.secondary:hover {
  background: rgba(255, 255, 255, 0.18);
}

@media (max-width: 750px) {
  .nav {
    justify-content: center;
  }

  .logo {
	width: 100%;
	height: auto;
    margin: 0 auto;
  }
  .grid {
    grid-template-columns: 1fr;
  }

  .contact {
    grid-template-columns: 1fr;
  }

  nav a[href="#contact"] {
    display: none;
  }
}

/* Hero */
.hero {
  padding: 4rem 0;
  text-align: center;
  color: var(--black);
  background-size: cover;
  background: linear-gradient(to bottom, var(--muted), var(--white));
  background-position: center;
  background-repeat: no-repeat;
  min-height: 400px;
}
.hero h1 {
  font-size: 2.5rem;
  margin: 0 0 0.5rem;
}
.hero p {
  margin: 0 auto 1.25rem;
  max-width: 700px;
  color: rgba(255, 255, 255, 0.9);
}

/* Testimonials */
.testimonials {
  margin: 2rem 0;
  padding: 2rem;
  background-color: #f1f1f1;
  border-radius: 10px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.6rem 1.1rem;
  border-radius: 6px;
  background: var(--red-700);
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition:
    transform 0.12s ease,
    box-shadow 0.12s ease;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}
.btn.secondary {
  background: transparent;
  color: var(--red-700);
  border: 1px solid var(--red-300);
}

/* Cards / content */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

@media (max-width: 750px) {
  .grid {
    grid-template-columns: 1fr;
  }
}
.card {
  background: var(--white);
  border-radius: 8px;
  padding: 1rem;
  border-left: 6px solid var(--red-500);
  box-shadow: 0 6px 18px rgba(16, 24, 40, 0.04);
}
.card h3 {
  margin: 0 0 0.5rem;
  color: var(--red-700);
}
.card p {
  margin: 0;
  color: var(--muted);
}

/* Links */
a {
  color: var(--red-700);
}
a:hover {
  text-decoration: underline;
}

/* Forms */
input,
textarea,
select {
  width: 100%;
  padding: 0.6rem;
  border: 1px solid #e6e6e6;
  border-radius: 6px;
  background: transparent;
}
label {
  display: block;
  margin-bottom: 0.35rem;
  font-weight: 600;
  color: var(--red-700);
}

/* Contact Us */
.contact {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2rem;
  align-items: start;
  background: #ffffff;
  padding: 2rem;
  border-radius: 10px;
}

.contact-info {
  min-width: 0;
}

.map {
  min-width: 0;
}

@media (max-width: 750px) {
  .contact {
    grid-template-columns: 1fr;
  }
}

/* Footer */
footer {
  padding: 2rem 0;
  font-weight: 600;
  background: var(--red-kingsway);
  color: var(--white);
  text-align: center;
}

/* Utility */
.muted {
  color: var(--muted);
}
.text-center {
  text-align: center;
}

iframe {
  border: 0;
  width: 100%;
  height: 300px;
  border-radius: 10px;
}

/* Responsive tweaks */
@media (max-width: 600px) {
  .hero h1 {
    font-size: 1.75rem;
  }
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Accent elements to reinforce red theme */
.badge {
  display: inline-block;
  padding: 0.25rem 0.6rem;
  background: var(--red-100);
  color: var(--red-700);
  border-radius: 999px;
  font-weight: 700;
}

/* Small accessibility: focus states */
a:focus,
.btn:focus,
input:focus,
button:focus {
  outline: 3px solid rgba(239, 68, 68, 0.18);
  outline-offset: 2px;
}

/* Modal (welcome popup) */
.modal-overlay {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease;
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.modal {
  background: var(--white);
  padding: 1.25rem;
  border-radius: 10px;
  max-width: 420px;
  width: 90%;
  box-shadow: 0 12px 40px rgba(16, 24, 40, 0.22);
  border-left: 6px solid var(--red-500);
  text-align: center;
}
.modal h3 {
  margin: 0 0 0.5rem;
  color: var(--red-700);
  font-size: 1.25rem;
}
.modal p {
  margin: 0;
  color: var(--muted);
}
.modal .modal-actions {
  margin-top: 1rem;
  display: flex;
  gap: 0.5rem;
  justify-content: center;
}
.modal .close {
  background: var(--red-700);
  color: var(--white);
  border: none;
  padding: 0.55rem 0.9rem;
  border-radius: 6px;
  cursor: pointer;
}
.modal .close.secondary {
  background: transparent;
  color: var(--red-700);
  border: 1px solid var(--red-300);
}
