* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  background: #ffffff;
  color: #1f2933;
  line-height: 1.7;
}

/* ===== NAVBAR ===== */
.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 8%;
  background: #ffffff;
  border-bottom: 3px solid #ffbe0b;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-size: 22px;
  font-weight: 700;
  color: #d90429;
}

.topbar nav {
  display: flex;
  gap: 25px;
}

.topbar nav a {
  text-decoration: none;
  color: #1f2933;
  font-weight: 600;
}

.topbar nav a:hover {
  color: #d90429;
}

/* ===== HERO ===== */
.hero {
  background: #ffffff;
  padding: 90px 8%;
  text-align: center;
}

.hero h1 {
  font-size: 40px;
  color: #d90429;
  max-width: 900px;
  margin: auto;
}

.hero p {
  margin-top: 15px;
  font-size: 18px;
}

.btn {
  display: inline-block;
  margin-top: 25px;
  padding: 14px 32px;
  background: #ffbe0b;
  color: #1f2933;
  font-weight: 700;
  border-radius: 6px;
  text-decoration: none;
}

.btn:hover {
  background: #f5b700;
}

/* ===== SECTION ===== */
.section {
  padding: 70px 8%;
}

.section h2 {
  text-align: center;
  font-size: 32px;
  color: #d90429;
  margin-bottom: 50px;
}

/* ===== SERVICE CARDS (RECTANGLE KEEP) ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.card {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 6px;
  /* rectangle look */
  border-left: 6px solid #ffbe0b;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.card h3 {
  color: #d90429;
  margin-bottom: 10px;
}

.card p {
  font-size: 15px;
}

/* ===== CITY BOXES ===== */
.city-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.city-box {
  background: #ffffff;
  border: 2px solid #ffbe0b;
  padding: 22px;
  text-align: center;
  font-weight: 700;
  color: #d90429;
  text-decoration: none;
  border-radius: 6px;
}

.city-box:hover {
  background: #ffbe0b;
  color: #1f2933;
}

/* ===== CTA ===== */
.cta {
  background: #d90429;
  color: #ffffff;
  text-align: center;
  padding: 60px 20px;
}

.cta h2 {
  font-size: 30px;
  margin-bottom: 15px;
}

.cta .btn {
  background: #ffbe0b;
}

/* ===== FOOTER ===== */
footer {
  background: #1f2933;
  color: #ffffff;
  text-align: center;
  padding: 18px;
  font-size: 14px;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 30px;
  }
}

.mobile-call {
  display: none;
}

@media (max-width: 768px) {
  .mobile-call {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #d90429;
    text-align: center;
    padding: 14px;
    z-index: 9999;
  }

  .mobile-call a {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
  }
}

.whatsapp-float {
  position: fixed;
  width: 55px;
  height: 55px;
  bottom: 80px;
  right: 20px;
  background-color: #25d366;
  border-radius: 50%;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  z-index: 9999;
}

.whatsapp-float img {
  width: 35px;
  margin-top: 10px;
}

.card p {
  color: #444;
}

.section p {
  font-size: 16px;
}

.pricing {
  padding: 60px 20px;
  background: #ffffff;
  text-align: center;
}

.pricing h2 {
  color: #d32f2f;
  font-size: 32px;
  margin-bottom: 10px;
}

.sub-text {
  color: #555;
  max-width: 700px;
  margin: 0 auto 40px;
}

.pricing-grid {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.price-card {
  background: #fff3e0;
  border: 2px solid #ffc107;
  border-radius: 10px;
  padding: 25px;
  width: 280px;
}

.price-card h3 {
  color: #000;
  margin-bottom: 10px;
}

.price {
  font-size: 30px;
  color: #d32f2f;
  font-weight: bold;
}

.distance {
  color: #333;
  margin-top: 5px;
}

.faq {
  padding: 60px 20px;
  background: #fff;
  max-width: 900px;
  margin: auto;
}

.faq h2 {
  text-align: center;
  color: #d32f2f;
  margin-bottom: 40px;
}

.faq-item {
  background: #f9f9f9;
  border-left: 5px solid #ffc107;
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 5px;
}

.faq-item h3 {
  margin-bottom: 8px;
  color: #000;
  font-size: 18px;
}

.faq-item p {
  color: #444;
  line-height: 1.6;
}

.contact {
  padding: 60px 20px;
  max-width: 1100px;
  margin: auto;
}

.contact h1 {
  color: #d32f2f;
  text-align: center;
  margin-bottom: 10px;
}

.contact p {
  text-align: center;
  color: #555;
  margin-bottom: 40px;
}

.contact-wrapper {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.contact-info {
  flex: 1;
  background: #fff3e0;
  padding: 25px;
  border-left: 5px solid #ffc107;
  border-radius: 8px;
}

.contact-info h3 {
  margin-top: 15px;
  color: #000;
}

.contact-form {
  flex: 1;
  background: #f9f9f9;
  padding: 25px;
  border-radius: 8px;
}

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

.contact-form button {
  background: #d32f2f;
  color: #fff;
  border: none;
  padding: 12px;
  width: 100%;
  font-size: 16px;
  cursor: pointer;
  border-radius: 5px;
}

.btn-red {
  background: #d32f2f;
  color: #fff;
  padding: 14px;
  width: 100%;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
}

.btn-red:hover {
  background: #b71c1c;
}

.header {
  background: #010b1a;
  /* Matches the dark blue in the logo */
  border-bottom: 2px solid #ffbe0b;
}

.nav {
  max-width: 1400px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2px 2%;
}

.logo img {
  height: 50px;
  width: auto;
  display: block;
}

nav {
  display: flex;
  gap: 30px;
  /* Equal distance distribution */
}

nav a {
  text-decoration: none;
  font-weight: bold;
  color: #d32f2f;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #ffbe0b;
}

@media(max-width: 768px) {
  .nav {
    flex-direction: column;
  }

  nav {
    margin-top: 10px;
  }

  nav a {
    margin: 10px;
  }
}

.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("https://images.unsplash.com/photo-1580674285054-bed31e145f59?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.hero h1 {
  color: #ffbe0b !important;
}

.section-title {
  text-align: center;
  color: #d32f2f;
  margin-bottom: 40px;
  font-size: 28px;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.area-card {
  background: #fff;
  padding: 22px;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  font-weight: 600;
  position: relative;
}

.area-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 6px;
  background: #ffc107;
  border-radius: 8px 0 0 8px;
}