header {
  background-color: #660000;
  padding: 1rem 0;
}

nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  flex-wrap: wrap;
}

/* Links */
nav a {
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
  font-weight: 700; 
  
}

nav a:hover {
  opacity: 0.8;
}

/* Logo */
.brand-logo {
  text-align: center;
  text-decoration: none;
}

.brand-logo h1 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  margin: 0;
  color: #ffff00;
}

.brand-logo h5 {
  color: #ffff00;
  font-size: 0.8rem;
  margin: 0;
  letter-spacing: 2px;
}

/* Menu groups */
.nav-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

/* ✅ MOBILE VIEW */
@media (max-width: 768px) {
  nav {
    flex-direction: column;
    text-align: center;
    gap: 0.8rem;
  }

  .brand-logo {
    order: -1; /* Logo first */
  }

  .nav-links {
    flex-direction: column; /* Make each link appear on new line */
    gap: 0.5rem;
  }
}
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
  }

  .service-card {
    background: #f8f8f8;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.2s, box-shadow 0.2s;
  }

  .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0,0,0,0.2);
  }

  .service-card h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
  }

  .service-card p {
    margin-bottom: 0px;
    font-size: 0.95rem;
    color: #555;
  }

  .service-card .price {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: bold;
    font-size: 1.1rem;
    color: #286f77;
    margin: 5px 0 0 0;
  }

  .service-card .price svg {
    width: 18px;
    height: 18px;
    fill: #286f77;
  }

   .services-hero {
      background: linear-gradient(to bottom right, #e4f1ef, #f8f4ee);
      padding: 5rem 10%;
      text-align: center;
    }
    .services-hero h2 {
      font-family: 'Playfair Display', serif;
      font-size: 2.8rem;
      color: #660000;
      margin-bottom: 1rem;
    }
    .services-hero p {
      color: #2e5555;
      font-size: 1.1rem;
      max-width: 600px;
      margin: 0 auto 1rem;
      line-height: 1.6;
    }
    .service-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 2.5rem;
      padding: 3rem 10%;
    }
    .service-card {
      background-color: #fff;
      border-radius: 12px;
      padding: 2rem;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
      text-align: left;
    }
    .service-card:hover {
      transform: translateY(-5px);
    }
    .service-card h3 {
      font-family: 'Playfair Display', serif;
      color: #0b7372;
      margin-bottom: 1rem;
    }
    .service-card p {
      font-size: 1rem;
      color: #2e5555;
      line-height: 1.6;
    }
