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

html {
  scroll-behavior: smooth;
}

body {
  background: #f4f4f4;
  color: #222;
  line-height: 1.6;
}

header {
  background: #111;
  color: white;
  padding: 18px 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-size: 32px;
  font-weight: 900;
}

.logo span {
  color: red;
}

.logo small {
  display: block;
  font-size: 18px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ccc;
}

nav a {
  color: white;
  text-decoration: none;
  margin-left: 22px;
  font-weight: bold;
}

nav a:hover {
  color: red;
}

.menu-btn {
  display: none;
  background: red;
  color: white;
  border: none;
  font-size: 28px;
  padding: 6px 14px;
  border-radius: 5px;
  cursor: pointer;
}

.hero {
  min-height: 80vh;
  background:
    linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)),
    url("https://images.unsplash.com/photo-1503387762-592deb58ef4e?auto=format&fit=crop&w=1600&q=80");

  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 60px 8%;
  color: white;
}

.hero-text {
  max-width: 700px;
}

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

.hero-text p {
  font-size: 21px;
  margin-bottom: 28px;
}

.btn {
  display: inline-block;
  background: red;
  color: white;
  padding: 14px 28px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  margin: 8px 8px 8px 0;
}

.btn:hover {
  background: #c90000;
}

.btn.second {
  background: #222;
  border: 2px solid white;
}

section {
  padding: 70px 8%;
}

.intro {
  background: white;
  text-align: center;
}

.intro h2,
.services h2,
.work h2,
.about h2,
.contact h2 {
  font-size: 38px;
  margin-bottom: 18px;
}

.intro p,
.work p,
.about p,
.contact p {
  max-width: 800px;
  margin: auto;
  font-size: 18px;
  color: #444;
}

.services {
  background: #f4f4f4;
  text-align: center;
}

.service-boxes {
  margin-top: 35px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 22px;
}

.box {
  background: white;
  padding: 28px;
  border-radius: 10px;
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.08);
  border-top: 5px solid red;
}

.box h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

.work {
  background: white;
  text-align: center;
}

.work-boxes {
  margin-top: 35px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 22px;
}

.work-card {
  background: #f4f4f4;
  padding: 30px;
  border-radius: 10px;
  border-top: 5px solid red;
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.08);
}

.work-card h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

.work-card p {
  font-size: 16px;
  color: #444;
}

.about {
  background: #111;
  color: white;
  text-align: center;
}

.about p {
  color: #ddd;
}

.contact {
  background: white;
  text-align: center;
}

.location-text {
  margin-top: 12px;
  font-weight: bold;
  color: #111 !important;
}

.phone-box {
  margin: 25px auto;
  font-size: 28px;
  font-weight: bold;
  color: #111;
}

.form-map-container {
  margin-top: 45px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  text-align: left;
}

.contact-form,
.map-box {
  background: #f4f4f4;
  padding: 28px;
  border-radius: 10px;
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.08);
}

.contact-form h3,
.map-box h3 {
  margin-bottom: 18px;
  font-size: 26px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 14px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 15px;
}

.contact-form textarea {
  resize: none;
}

.contact-form button {
  width: 100%;
  background: red;
  color: white;
  border: none;
  padding: 14px;
  font-size: 17px;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
}

.contact-form button:hover {
  background: #c90000;
}

.map-box iframe {
  border-radius: 8px;
}

.whatsapp-btn {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #25d366;
  color: white;
  padding: 14px 22px;
  border-radius: 50px;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.25);
  z-index: 2000;
}

footer {
  background: red;
  color: white;
  text-align: center;
  padding: 20px;
  font-weight: bold;
}

@media (max-width: 768px) {
  header {
    text-align: left;
  }

  .menu-btn {
    display: block;
  }

  nav {
    display: none;
    width: 100%;
    margin-top: 15px;
    background: #111;
  }

  nav.active {
    display: block;
  }

  nav a {
    display: block;
    margin: 0;
    padding: 14px 0;
    border-top: 1px solid #333;
  }

  .hero-text h1 {
    font-size: 38px;
  }

  .hero-text p {
    font-size: 18px;
  }

  .form-map-container {
    grid-template-columns: 1fr;
  }

  .phone-box {
    font-size: 23px;
  }
}
.email-text {
  margin-top: 10px;
  font-size: 18px;
  font-weight: bold;
}

.email-text a {
  color: red;
  text-decoration: none;
}

.email-text a:hover {
  text-decoration: underline;
}