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

body {
  color: #333;
}


@media (max-width: 768px){
  .nav{
    flex-direction: column;
    align-items: center;
    gap:10px;
  }

  .nav nav{
    justify-content: center;
  }
}

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

.nav nav {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

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

/* HERO */
.hero {
  min-height: 75vh;           
  max-height: 700px;
  background-size: cover;
  background-position: center;
  position: relative;
}

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

.hero h1 {
  font-size: clamp(1.6rem, 6vw, 3rem);
  line-height: 1.2;
  max-width: 900px;
}

@media (max-width: 480px) {
  .hero {
    min-height: 65vh;
  }
}


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

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

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

.service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 30px;
}

.service-card {
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}

/* Image behavior */
.service-card img {
  width: 100%;
  aspect-ratio: 16 / 9; 
  object-fit: cover;
  display: block;
}

/* Tablet+ */
@media (min-width: 600px) {
  .service-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  }

  .service-card img {
    aspect-ratio: 4 / 3;
  }
}

/* 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 {
  padding: 14px;
  font-size: 16px; /* prevents iOS zoom */
}


/* 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;
  }
}

.logoimg {
  max-width: 120px;
  width: 100%;

}

body {
  line-height: 1.6;
}

section {
  scroll-margin-top: 80px;
}

button,
a {
  touch-action: manipulation;
}

h2 {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
}

p {
  font-size: 1rem;
}

/*new*/
@media (max-width: 768px) {
  .logoimg {
    max-width: 80px;
  }
}

@media (max-width: 768px) {
  .nav nav {
    width: 100%;
    justify-content: center;
    gap: 12px;
  }

  .nav a {
    margin: 0;
    padding: 10px 16px;
    border-radius: 999px;
    background: #d4a200;
    color: white;
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .nav {
    padding: 12px 16px;
  }
}

/*option2*/
/*
@media (max-width: 768px) {
  .nav {
    background: white;
    color: #333;
  }

  .nav nav {
    background: #f7f7f7;
    padding: 12px;
    border-radius: 12px;
  }

  .nav a {
    background: #f5c400;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .service-card img {
    aspect-ratio: 3 / 2;
  }
}

*/

