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

body {
  background: #f5f7fb;
  color: #1f2937;
  padding-bottom: 70px;
}

.topbar {
  background: #07111f;
  color: #fff;
  padding: 14px 6%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 24px;
  font-weight: 800;
}

.top-call {
  background: #dc2626;
  color: #fff;
  padding: 11px 18px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
}

.service-nav {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #fff;
  display: flex;
  justify-content: center;
  gap: 12px;
  padding: 12px 6%;
  box-shadow: 0 8px 25px rgba(0,0,0,.12);
}

.service-nav a {
  background: #111827;
  color: #fff;
  padding: 10px 16px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
}

.service-nav .call-now {
  background: #dc2626;
}

.hero {
  position: relative;
  min-height: 560px;
  background: url('/images/glass-freezer-clean.jpg') center/cover no-repeat;
  color: #fff;
  display: flex;
  align-items: center;
  padding: 70px 6%;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.62);
}

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

.badge {
  display: inline-block;
  background: #facc15;
  color: #111827;
  padding: 9px 16px;
  border-radius: 25px;
  font-weight: 800;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 52px;
  line-height: 1.1;
  margin-bottom: 18px;
}

.hero p {
  font-size: 21px;
  line-height: 1.7;
  margin-bottom: 25px;
}

.highlight {
  color: #dc2626;
  font-weight: 900;
}

.hero .highlight {
  color: #facc15;
}

.btn {
  display: inline-block;
  padding: 14px 24px;
  border-radius: 35px;
  text-decoration: none;
  font-weight: 800;
  margin: 6px;
}

.primary {
  background: #dc2626;
  color: #fff;
}

.whatsapp {
  background: #16a34a;
  color: #fff;
}

.section {
  padding: 60px 6%;
}

.section h2 {
  text-align: center;
  font-size: 36px;
  color: #07111f;
  margin-bottom: 35px;
}

.light {
  background: #eef2ff;
}

.content-row {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 35px;
  align-items: center;
  max-width: 1200px;
  margin: auto;
}

.content-row.reverse {
  grid-template-columns: 1.2fr 1fr;
}

.content-row.reverse .content-img {
  order: 2;
}

.content-img img {
  width: 100%;
  height: 420px;
  object-fit: contain;
  display: block;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 15px 40px rgba(0,0,0,.16);
}

.content-text {
  background: #fff;
  padding: 30px;
  border-radius: 24px;
  box-shadow: 0 15px 40px rgba(0,0,0,.10);
}

.content-text h3 {
  font-size: 28px;
  color: #07111f;
  margin-bottom: 14px;
}

.content-text p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 14px;
}

.small-btn {
  display: inline-block;
  margin-top: 10px;
  background: #07111f;
  color: #fff;
  padding: 12px 18px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 800;
}

.why {
  text-align: center;
}

.why-grid {
  max-width: 1100px;
  margin: 0 auto 25px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.why-grid div {
  background: #fff;
  padding: 22px;
  border-radius: 16px;
  font-weight: 800;
  box-shadow: 0 8px 25px rgba(0,0,0,.08);
}

.city-box {
  margin: 25px auto 0;
  max-width: 1000px;
  background: #fff;
  padding: 22px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,.10);
  font-size: 18px;
  font-weight: bold;
  color: #07111f;
}

.cta {
  background: #07111f;
  color: #fff;
  text-align: center;
}

.cta h2 {
  color: #fff;
  margin-bottom: 10px;
}

.cta p {
  font-size: 18px;
  margin-bottom: 15px;
}

footer {
  background: #020617;
  color: #fff;
  text-align: center;
  padding: 30px 6%;
}

footer h3 {
  margin-bottom: 8px;
}

.bottom-sticky {
  position: fixed;
  bottom: 0;
  left: 0;
  display: flex;
  width: 100%;
  z-index: 9999;
}

.bottom-sticky a {
  width: 50%;
  text-align: center;
  padding: 17px;
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  font-size: 18px;
}

.call-btn {
  background: #dc2626;
}

.whatsapp-btn {
  background: #16a34a;
}

@media(max-width: 900px) {
  .topbar {
    flex-direction: column;
    gap: 10px;
  }

  .service-nav {
    overflow-x: auto;
    justify-content: flex-start;
  }

  .service-nav a {
    white-space: nowrap;
  }

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

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

  .content-row,
  .content-row.reverse {
    grid-template-columns: 1fr;
  }

  .content-row.reverse .content-img {
    order: 0;
  }

  .content-img img {
    height: 260px;
  }

  .section h2 {
    font-size: 30px;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }
}
.funeral-bg {
  background: url('/images/funeral-service.jpg') center/cover no-repeat;
  min-height: 300px;
  border-radius: 20px;
}

.cremation-bg {
  background: url('/images/cremation-service.jpg') center/cover no-repeat;
  min-height: 300px;
  border-radius: 20px;
}
.content-row .content-img {
  height: auto !important;
  overflow: visible !important;
}

.content-row .content-img img {
  width: 100% !important;
  height: auto !important;
  max-height: none !important;
  object-fit: contain !important;
  display: block !important;
  border-radius: 24px !important;
}
.city-grid {
  margin-top: 25px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.city-btn {
  display: block;
  text-align: center;
  background: #dc2626;
  color: #fff;
  padding: 16px;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
  transition: 0.3s;
}

.city-btn:hover {
  background: #b91c1c;
  transform: scale(1.05);
}

/* Mobile */
@media(max-width: 700px) {
  .city-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.hero {
  background: linear-gradient(135deg, #07111f, #111827);
  color: #fff;
}
.city-search-box {
  max-width: 700px;
  margin: 30px auto;
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(220,38,38,0.4);
  text-align: center;
}

.city-search-box select {
  width: 60%;
  padding: 16px;
  border-radius: 12px;
  border: none;
  font-size: 17px;
  font-weight: 700;
  margin-right: 10px;
}

.city-search-box button {
  padding: 16px 24px;
  background: #111827;
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
}

.city-search-box button:hover {
  background: #000;
}

@media(max-width:700px){
  .city-search-box select,
  .city-search-box button{
    width:100%;
    margin:5px 0;
  }
}