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

body {
  font-family: 'Poppins', sans-serif;
  background: #f8f9fb;
  color: #1f2a44;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 8%;
  background: rgba(255,255,255,0.96);
  box-shadow: 0 8px 28px rgba(15,23,42,0.12);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 4px solid #d6284b;
}

.brand {
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand img {
  height: 115px;
  filter: drop-shadow(0 8px 10px rgba(0,0,0,0.16));
}

.brand-text h2 {
  color: #d6284b;
  font-size: 30px;
  line-height: 1;
}

.brand-text p {
  color: #1f2a44;
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 14px;
  text-transform: uppercase;
}

nav a {
  margin-left: 18px;
  text-decoration: none;
  font-weight: 700;
  color: #1f2a44;
  padding: 10px 16px;
  border-radius: 25px;
  transition: 0.3s;
}

nav a:hover {
  color: white;
  background: #d6284b;
}

.hero {
  position: relative;
  min-height: 650px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 90px 8%;
  align-items: center;
  gap: 40px;
  background-image: linear-gradient(rgba(255,255,255,0.65), rgba(255,255,255,0.65)), url("background.jpg");
  background-size: cover;
  background-position: center;
}

.hero h1 {
  font-size: 44px;
  margin-bottom: 20px;
}

.hero span {
  color: #d6284b;
}

.hero p {
  margin-bottom: 25px;
  color: #555;
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  margin-right: 10px;
  margin-bottom: 10px;
}

.primary {
  background: #d6284b;
  color: white;
}

.outline {
  border: 2px solid #1f2a44;
  color: #1f2a44;
  background: white;
}

.hero-card {
  background: rgba(255, 255, 255, 0.92);
  padding: 35px;
  border-radius: 22px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
  max-width: 480px;
  margin-left: auto;
}

.hero-card h2 {
  color: #1f2a44;
  margin-bottom: 15px;
  text-align: center;
}

.hero-card li {
  margin-bottom: 10px;
}

section {
  padding: 70px 8%;
}

h2 {
  text-align: center;
  margin-bottom: 35px;
  font-size: 32px;
}

.services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.card {
  background: white;
  border-radius: 18px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.06);
  border-top: 4px solid #d6284b;
  overflow: hidden;
}

.card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
}

.card h3 {
  color: #1f2a44;
  padding: 18px 18px 8px;
}

.card p {
  padding: 0 18px 22px;
  color: #555;
}

.about {
  background: white;
  padding: 80px 8%;
}

.about-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 50px;
  align-items: center;
}

.about-logo {
  width: 100%;
  max-width: 260px;
  margin: auto;
  display: block;
}

.small-title {
  color: #d6284b;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.about-text h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #1f2a44;
}

.about-text p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 18px;
}

.about-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.about-highlights span {
  background: #f8f9fb;
  padding: 10px 15px;
  border-radius: 25px;
  font-weight: 600;
}

.reviews {
  background: #f8f9fb;
}

.review-boxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.review-card {
  background: white;
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.06);
  border-left: 5px solid #d6284b;
}

.review-card p:first-child {
  color: #d6284b;
  font-size: 20px;
  margin-bottom: 10px;
}

.review-card h3 {
  margin-bottom: 10px;
}

.section-subtitle {
  text-align: center;
  color: #555;
  margin-top: -20px;
  margin-bottom: 35px;
}

.reviews {
  background: linear-gradient(135deg, #ffffff, #f8f9fb);
}

.review-card {
  background: white;
  padding: 30px;
  border-radius: 22px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  border-left: 5px solid #d6284b;
}

.stars {
  color: #d6284b;
  font-size: 22px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.leave-review {
  max-width: 650px;
  margin: 45px auto 0;
  background: white;
  padding: 35px;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  border-top: 5px solid #d6284b;
}

.leave-review h3 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 26px;
}

.leave-review input,
.leave-review select,
.leave-review textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 14px;
  border: 1px solid #ddd;
  border-radius: 12px;
  font-family: inherit;
}

.leave-review textarea {
  height: 120px;
}

#reviewMessage {
  margin-top: 12px;
  color: #1f2a44;
  text-align: center;
  font-weight: 600;
}

.contact {
  background: #1f2a44;
  color: white;
}

.contact-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

form input,
form select,
form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  border: none;
  border-radius: 10px;
  font-family: inherit;
}

form textarea {
  height: 120px;
}

button {
  width: 100%;
  padding: 12px;
  background: #d6284b;
  color: white;
  border: none;
  border-radius: 25px;
  font-weight: 700;
  cursor: pointer;
}

#formMessage {
  margin-top: 12px;
  color: white;
  font-weight: 600;
}

footer {
  text-align: center;
  padding: 20px;
  background: #0f172a;
  color: white;
}

/* MOBILE FRIENDLY */
@media (max-width: 1000px) {
  .services {
    grid-template-columns: repeat(2, 1fr);
  }

  .review-boxes {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 800px) {
  header {
    flex-direction: column;
    gap: 15px;
    padding: 15px 5%;
  }

  .brand {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .brand img {
    height: 100px;
  }

  nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  nav a {
    margin: 5px;
    font-size: 14px;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 65px 6%;
    min-height: auto;
    text-align: center;
  }

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

  .hero-card {
    margin: 20px auto 0;
    text-align: left;
  }

  .services {
    grid-template-columns: 1fr;
  }

  .contact-box {
    grid-template-columns: 1fr;
  }

  section {
    padding: 55px 6%;
  }
}
@media (max-width: 800px) {
  .about-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-logo {
    max-width: 180px;
  }

  .about-highlights {
    justify-content: center;
  }
}