/* ==========================
   GLOBAL STYLES
========================== */

:root {
  --red: #c4161c;
  --dark-red: #9e0f14;
  --blue: #003f87;
  --dark: #1b1b1b;
  --light: #f5f5f5;
  --gray: #777;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--dark);
  line-height: 1.6;
  background-color: #ffffff;
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 0 1.5rem;
}

h1, h2 {
  font-weight: 700;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
  text-align: center;
}

p {
  color: var(--gray);
}

/* ==========================
   BUTTONS
========================== */

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
}

.btn-primary {
  background: var(--red);
  color: #fff;
}

.btn-primary:hover {
  background: var(--dark-red);
}

/* ==========================
   HEADER / NAV
========================== */

.header {
  background: var(--dark);
  color: #fff;
}

.nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 80px; 
}

nav a {
  color: #fff;
  margin-left: 1.2rem;
  text-decoration: none;
}

nav a:hover {
  color: var(--red);
}

/* ==========================
   HERO SECTION
========================== */

.hero {
  position: relative;
  overflow: hidden;

  background:
    linear-gradient(
      rgba(0,0,0,0.75),
      rgba(0,0,0,0.65)
    ),
    url('images/Hero-Overlay.jpg') center / cover no-repeat;

  min-height: 50vh;
  display: flex;
  align-items: center;
}


.hero-grid {
  position: relative;
  z-index: 2;

  display: grid;  
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 3rem;

  max-width: 1100px;
  margin: 0 auto;
  padding-left: 0 2rem;   /*NEW*/
}


.hero-left {
  display: flex;
  justify-content: flex-start; /* push logo left */
  align-items: center;
}


.hero-right {
  text-align: left;
}

.hero-logo {
  height: 360px;
  width: auto;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 10px 25px rgba(0,0,0,0.35));
}

.hero h1 {
  color: #ffffff;
  margin-bottom: 0.75rem;
}
.hero p {
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('images/Hero-Overlay.jpg') center / cover no-repeat;
  opacity: 0.25; /* adjust as needed */
  z-index: 1;
  pointer-events: none;
}



/* ==========================
   SECTIONS
========================== */

.section {
  padding: 4rem 0;
}

.section.light {
  background: var(--light);
}

.section.dark {
  background: var(--dark);
  color: #fff;
}

.section.dark p {
  color: #ddd;
}

/* ABOUT (centered, clean) */
#about {
  text-align: center;
}

#about .about-wrap {
  max-width: 760px;
  margin: 0 auto;
}

#about h2 {
  margin-bottom: 1rem;
  color:#fff;
}

#about p {
  margin: 0 auto 1.1rem;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #fbecec; /* softer than pure black */
}

#about .about-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem auto 0;
  display: inline-flex;          /* key: keeps list centered nicely */
  flex-direction: column;
  gap: 0.65rem;
  font-weight: 700;
  color: #fff;
}

#about.section {
  padding: 3rem 0;
}

/* ABOUT – red background */
#about {
  background: var(--red);
  color: #fff;
}


/* ==========================
   SERVICES GRID
========================== */

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-soft, 0 6px 20px rgba(0,0,0,0.12));
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

.service-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.service-card h3 {
  margin: 1rem 0 0.5rem;
  color: var(--dark);
}

.service-card p {
  padding: 0 1rem 1.5rem;
  font-size: 0.95rem;
}


.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.card {
  background: #fff;
  padding: 2rem;
  border-radius: 6px;
  text-align: center;
  font-weight: bold;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* Center the last service card if it's alone */
.services-grid .service-card:last-child {
  grid-column: 2;
}

.service-areas {
  margin-top: 4rem;
  text-align: center;
}

.service-areas h3 {
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.cities-grid {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
}

.cities-grid span {
  background: var(--dark);
  color: #fff;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  font-weight: 600;
  text-align: center;
  transition: background 0.25s ease, transform 0.25s ease;
}

.cities-grid span:hover {
  background: var(--red);
  transform: translateY(-2px);
}


.section-accent {
  height: 6px;
  width: 100%;
  background: var(--red);
  margin-top: 1.5rem;
}

/* ==========================
   FORM
========================== */

.form {
  max-width: 500px;
  margin: 2rem auto 0;
  display: flex;
  flex-direction: column;
}

.form input,
.form textarea {
  padding: 0.75rem;
  margin-bottom: 1rem;
  border-radius: 4px;
  border: none;
}

.form textarea {
  min-height: 120px;
}

/* ==========================
   FOOTER
========================== */

.footer {
  background: #111;
  color: #aaa;
  text-align: center;
  padding: 1.5rem 0;
}

/* ==========================
   RESPONSIVE
========================== */

@media (max-width: 768px) {

  /* HERO FIX */
  .hero {
    min-height: auto;
    padding: 3rem 0;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .hero-left {
    justify-content: center;
  }

  .hero-logo {
    height: 220px;
    margin-bottom: 1rem;
  }

  .hero-right h1 {
    font-size: 1.8rem;
  }

  .hero-right p {
    font-size: 1rem;
  }

  /* SERVICES GRID */
  .services-grid {
    grid-template-columns: 1fr;
  }

  /* ABOUT SECTION */
  #about {
    padding: 2.5rem 1rem;
  }

  #about p {
    font-size: 1rem;
  }

}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
