/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  color: #111;
  line-height: 1.6;
}

/* CONTAINER */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* NAVBAR */
.navbar {
  position: fixed;
  width: 100%;
  background: white;
  padding: 15px 0;
  border-bottom: 1px solid #eee;
  z-index: 1000;
}

.nav-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-weight: bold;
  font-size: 20px;
}

.logo span {
  color: #c40000;
}

nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #111;
  font-weight: 500;
}

.cta {
  background: #c40000;
  color: white;
  padding: 8px 14px;
  border-radius: 4px;
}

/* HERO */
.hero {
  height: 100vh;
  background: url('images/hero.jpg') center/cover no-repeat;
  display: flex;
  align-items: flex-end; /* pushes content lower */
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
  padding-bottom: 10vh; /* controls how low the text sits */
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: 20px;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
  line-height: 1.1;
  text-transform: uppercase;
}

.hero p {
  margin-bottom: 80px;
  font-size: 30px;
}

.hero-buttons {
  margin-top: 20px;
}

/* BUTTONS */
.btn-primary {
  background: #c40000;
  padding: 12px 20px;
  color: white;
  text-decoration: none;
  border-radius: 4px;
}

.btn-secondary {
  margin-left: 10px;
  border: 1px solid white;
  padding: 12px 20px;
  color: white;
  text-decoration: none;
  border-radius: 4px;
}

/* TRUST BAR */
.trust-bar {
  background: #111;
  color: white;
  padding: 15px 0;
}

.trust-grid {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

/* SECTIONS */
.section {
  padding: 80px 0;
  text-align: center;
}

.section h2 {
  margin-bottom: 20px;
}

/* GRID */
.grid {
  display: flex;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.card {
  background: #f5f5f5;
  padding: 30px;
  flex: 1;
  min-width: 250px;
  border-radius: 6px;
  transition: transform 0.2s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card a {
  display: inline-block;
  margin-top: 10px;
  color: #c40000;
  text-decoration: none;
  font-weight: bold;
}

/* DARK SECTION */
.dark {
  background: #111;
  color: white;
}

.dark-card {
  background: #222;
}

/* CTA BAND */
.cta-band {
  background: #c40000;
  color: white;
  padding: 60px 20px;
  text-align: center;
}

.cta-band h2 {
  margin-bottom: 10px;
}

/* FORM */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 500px;
  margin: 20px auto;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.contact-form button {
  background: #c40000;
  color: white;
  padding: 12px;
  border: none;
  cursor: pointer;
  border-radius: 4px;
}

.phone {
  margin-top: 15px;
}

/* FLOATING BUTTON */
.floating-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #c40000;
  color: white;
  padding: 15px 20px;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 20px;
  background: #111;
  color: white;
}

/* MOBILE */
@media (max-width: 768px) {
  .hero {
    padding-bottom: 8vh;
  }

  .hero h1 {
    font-size: 32px;
  }

  .grid {
    flex-direction: column;
  }

  nav {
    display: none;
  }
}