/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  background-color: #ffffff;
  color: #000;
  line-height: 1.6;
}

:root {
  --primary: #c62828;
  --secondary: #ffffff;
  --accent: #ffebee;
  --text-dark: #1f0000;
  --text-light: #ffffff;
}

/* NAVIGATION */
nav {
  background-color: var(--primary);
  padding: 15px 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

nav a {
  color: var(--secondary);
  padding: 10px 18px;
  border-radius: 25px;
  background-color: rgba(255, 255, 255, 0.15);
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 600;
}

nav a:hover {
  background-color: var(--secondary);
  color: var(--primary);
}

/* HERO & SLIDES */
.banner {
  height: 100vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

.banner-text {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 30px;
  border-radius: 20px;
  max-width: 800px;
  color: var(--secondary);
  background:transparent;
  color: #000;
}

.banner-text h1 {
  font-size: 2.5em;
  margin-bottom: 10px;
}

.banner-text h2 {
  font-size: 1.8em;
  margin-bottom: 20px;
}

.banner-text p {
  margin-bottom: 20px;
  font-size: 1.1em;
}

.banner-text a {
  background-color: transparent;
  color: var(--secondary);
  border: 2px solid var(--secondary);
  padding: 10px 24px;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.4s ease;
  font-weight: bold;
  color: #b71c1c;
}

.banner-text a:hover {
  background-color: var(--secondary);
  color: var(--primary);
}

.second-slide {
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  color: var(--secondary);
}

/* SERVICES */
.services {
  background-color: var(--primary);
  color: var(--secondary);
  padding: 60px 20px;
  text-align: center;
}

.services h3 {
  margin-bottom: 30px;
  font-size: 2em;
}

.services ul {
  list-style: none;
  max-width: 700px;
  margin: auto;
  text-align: left;
}

.services li {
  margin-bottom: 15px;
  font-size: 1.1em;
}

/* LOCATIONS */
.locations {
  background-color: var(--accent);
  padding: 60px 20px;
  text-align: center;
  color: var(--text-dark);
}

.locations h3 {
  margin-bottom: 30px;
  font-size: 2em;
}

.zone-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.zone-grid div {
  background-color: var(--secondary);
  border: 1px solid #000000;
  padding: 20px;
  border-radius: 10px;
  max-width: 280px;
  flex: 1;
}

/* SOLUTIONS */
.solutions {
  background-color: #fdfdfd;
  padding: 60px 20px;
  text-align: center;
}

.solutions h3 {
  margin-bottom: 30px;
  color: var(--primary);
}

.solution-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.solution-grid div {
  background-color: var(--accent);
  border-radius: 10px;
  padding: 20px;
  max-width: 300px;
  flex: 1;
}

/* MAP PREVIEW */
.map-preview {
  background-color: #fff;
  padding: 60px 20px;
  text-align: center;
}

.map-preview h3 {
  color: var(--primary);
  margin-bottom: 20px;
}

/* TESTIMONIALS */
.testimonials {
  background-color: var(--accent);
  padding: 60px 20px;
  text-align: center;
}

.testimonials h3 {
  color: var(--primary);
  margin-bottom: 30px;
}

.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.testimonial {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  max-width: 300px;
  color: #000;
}

/* CONTACT SECTION */
.contact {
  background-color: var(--secondary);
  padding: 60px 20px;
  text-align: center;
}

.contact h3 {
  color: var(--primary);
  margin-bottom: 20px;
}

.contact form {
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact input,
.contact textarea {
  padding: 12px;
  border: 1px solid var(--primary);
  border-radius: 8px;
}

.contact button {
  background-color: var(--primary);
  color: var(--secondary);
  border: none;
  padding: 12px;
  border-radius: 30px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact button:hover {
  background-color: #b71c1c;
}

/* FOOTER */
footer {
  background-color: var(--primary);
  color: var(--secondary);
  text-align: center;
  padding: 20px;
  font-size: 0.9em;
}

footer a {
  color: var(--accent);
  text-decoration: underline;
}

/* WHATSAPP BUTTON */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .zone-grid,
  .solution-grid,
  .testimonial-slider {
    flex-direction: column;
    align-items: center;
  }

  .banner-text {
    padding: 20px;
  }

  .banner-text h1 {
    font-size: 1.8em;
  }

  .banner-text h2 {
    font-size: 1.5em;
  }

  .banner-text p,
  .banner-text a {
    font-size: 1em;
  }
}
html {
  scroll-behavior: smooth;
}

