* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Outfit', sans-serif;
  background: #fffaf5;
  color: #2e2e2e;
  line-height: 1.6;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}

/* === HEADER === */
.header {
  background: #1a1a1a;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.logo {
  font-size: 1.8rem;
  font-weight: 800;
  color: #ff8c42;
}
.logo span {
  color: #00bfa6;
}
.navbar ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}
.navbar a {
  color: #fff;
  font-weight: 600;
  transition: color 0.3s ease;
}
.navbar a:hover {
  color: #ff8c42;
}

/* === HERO === */
.hero {
  background: linear-gradient(rgba(26, 26, 26, 0.6), rgba(26, 26, 26, 0.6)),
    url('https://images.unsplash.com/photo-1593508512255-86ab42a8e620?auto=format&fit=crop&w=1950&q=80') center/cover no-repeat;
  height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  padding: 2rem;
}
.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 800;
}
.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}
.btn {
  background-color: #00bfa6;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-weight: bold;
  transition: all 0.3s ease;
}
.btn:hover {
  background-color: #009e8f;
}

/* === SECTIONS === */
section {
  padding: 4rem 2rem;
}
section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #1a1a1a;
}

/* === SERVICES === */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.service-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.07);
  transition: all 0.3s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}
.service-card img {
  height: 200px;
  object-fit: cover;
  width: 100%;
}
.service-card h3 {
  padding: 1rem 1rem 0.5rem;
  color: #ff8c42;
}
.service-card p {
  padding: 0 1rem 1rem;
  color: #4b4b4b;
}

/* === TESTIMONIALS === */
.testimonials {
  background: #fff3e0;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}
.testimonial {
  background: white;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  font-style: italic;
  color: #333;
  position: relative;
  transition: transform 0.3s ease;
}
.testimonial:hover {
  transform: translateY(-5px);
}
.testimonial h4 {
  margin-top: 1rem;
  font-weight: bold;
  color: #00bfa6;
  text-align: right;
}

/* === FOOTER === */
.footer {
  background: #1a1a1a;
  color: #f4f4f4;
  padding: 3rem 2rem;
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}
.footer h3 {
  margin-bottom: 1rem;
  color: #ff8c42;
}
.footer form {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.footer input[type="email"] {
  padding: 0.6rem 1rem;
  border-radius: 4px;
  border: none;
  flex: 1;
}
.footer button {
  background: #00bfa6;
  color: white;
  border: none;
  padding: 0.6rem 1rem;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s ease;
}
.footer button:hover {
  background: #009e8f;
}
.footer-note {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.875rem;
  color: #ccc;
}
.error {
  color: #ff4d4f;
  font-size: 0.875rem;
  margin-top: 0.3rem;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .navbar ul {
    flex-direction: column;
    background: #000;
    padding: 1rem;
    border-radius: 6px;
  }
  .footer-top {
    flex-direction: column;
  }
}