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

body {
  color: #333;
}



/* NAV */
.nav {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  z-index: 10;
}

.nav a {
  color: white;
  margin-left: 20px;
  text-decoration: none;
}

/* HERO */
.hero {
  height: 80vh;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-overlay {
  background: rgba(0,0,0,0.4);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  max-width: 800px;
}

/* WELCOME */
.welcome {
  padding: 60px 20px;
  text-align: center;
  max-width: 900px;
  margin: auto;
}

.welcome h2 {
  margin-bottom: 20px;
}

/* SERVICES */
.services {
  padding: 60px 20px;
  background: #f7f7f7;
  text-align: center;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.service-card {
  background: white;
  padding: 20px;
}

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


/* FAQ */
.faq {
  padding: 60px 20px;
  max-width: 800px;
  margin: auto;
}

.faq h2 {
  text-align: center;
  margin-bottom: 30px;
}

details {
  margin-bottom: 15px;
  border: 1px solid #d4a200;
}

summary {
  background: #d4a200;
  color: white;
  padding: 15px;
  cursor: pointer;
}

details p {
  padding: 15px;
}

/* ============================= */
/* CONTACT SECTION (ADDED) */
/* ============================= */

.contact-section {
  padding: 60px 20px;
}

.contact-wrapper {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-form h2 {
  margin-bottom: 15px;
}

.contact-form p {
  margin-bottom: 25px;
}

.contact-form label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
}

/* MAP */
.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 350px;
  border: 0;
}

/* ============================= */
/* ABOUT SECTION (ADDED) */
/* ============================= */

.about-section {
  background: #f5c400;
  padding: 80px 20px;
  text-align: center;
}

.about-section h2 {
  margin-bottom: 20px;
}

.about-section p {
  max-width: 700px;
  margin: 0 auto 30px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
}

