@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  color: #153c2f;
  background-color: #fff;
  line-height: 1.6;
}

/* ===== NAVBAR ===== */
header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  padding: 15px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
}

.logo h1 {
  font-size: 20px;
  font-weight: 600;
  color: #153c2f;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

nav a {
  text-decoration: none;
  color: #153c2f;
  font-weight: 500;
  transition: 0.3s;
}

nav a:hover,
nav a.active {
  color: #c3a046;
}

/* ===== PAGE HEADER ===== */
.page-header {
  background: linear-gradient(rgba(21,60,47,0.85), rgba(21,60,47,0.85)),
    url('https://images.pexels.com/photos/3184637/pexels-photo-3184637.jpeg?auto=compress&cs=tinysrgb&w=1600');
  background-size: cover;
  background-position: center;
  color: #fff;
  text-align: center;
  padding: 120px 20px;
}

.page-header h2 {
  font-size: 42px;
  margin-bottom: 10px;
}

.page-header p {
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.9;
}

/* ===== SECTIONS ===== */
section {
  padding: 80px 60px;
}

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  text-align: center;
  transition: 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.service-card h3 {
  color: #153c2f;
  font-size: 20px;
  margin-bottom: 10px;
}

.service-card p {
  color: #555;
}

/* ===== ABOUT ===== */
.about-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.about-text {
  flex: 1 1 400px;
}

.about-text h3 {
  font-size: 28px;
  margin-bottom: 10px;
  color: #153c2f;
}

.about-text p {
  color: #555;
  margin-bottom: 12px;
}

.about-image {
  flex: 1 1 400px;
}

.about-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* ===== CONTACT FORM ===== */
.contact-form {
  text-align: center;
  background: #f9f9f9;
}

.contact-form form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 15px;
  transition: 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #153c2f;
  outline: none;
}

.contact-form button {
  background: #c3a046;
  border: none;
  padding: 14px;
  color: #fff;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  background: #b18c34;
}

/* ===== FOOTER ===== */
footer {
  background: #153c2f;
  color: #fff;
  text-align: center;
  padding: 25px 15px;
  font-size: 14px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  header {
    padding: 15px 25px;
  }

  nav ul {
    gap: 15px;
  }

  .about-content {
    flex-direction: column;
    text-align: center;
  }

  .about-text, .about-image {
    flex: 1 1 100%;
  }

  .page-header h2 {
    font-size: 32px;
  }
}
