/* =========================
   GLOBAL
========================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #ffffff;
  color: #222;
  line-height: 1.7;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

#main {
  overflow-x: hidden;
}

/* =========================
   HEADER
========================= */

.mobile-header {
  display: none;
}

.desktop-header {
  display: block;
  background: #111;
  padding: 10px 80px;
  position: sticky;
  top: 0;
  z-index: 999;
}

.desktopnav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#desktoplogo {
  width: auto;
  height: 200px;
}

.desktopnav nav ul {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}

.desktopnav nav a {
  color: white;
  font-size: 30px;
  transition: 0.3s;
  font-weight: 700;
}

.desktopnav nav a:hover {
  color: #f0b400;
}

#permits-header-desktop {
  width: 170px;
}

/* =========================
   MAIN
========================= */

main {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0px 60px 60px;
}

#main-logo img {
  max-width: 760px;
  margin: 0 auto 80px;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.15));
}

h1 {
  font-size: 52px;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 30px;
}

h3 {
  font-size: 26px;
  margin-bottom: 15px;
}

p {
  font-size: 18px;
  margin-bottom: 20px;
}

/* =========================
   ABOUT
========================= */

#about {
  max-width: 1100px;
  margin: 0 auto 110px;
  text-align: center;
}

#about > h1 {
  position: relative;
  padding-bottom: 18px;
  margin-bottom: 36px;
}

#about > h1::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 90px;
  height: 4px;
  border-radius: 4px;
  background: #f0b400;
  transform: translateX(-50%);
}

#about p {
  max-width: 1000px;
  margin: 0 auto 20px;
  color: #333;
}

/* =========================
   SERVICES
========================= */

#service {
  width: 100%;
  margin: 0 auto 110px;
  text-align: center;
}

#service > h1 {
  position: relative;
  padding-bottom: 18px;
  margin-bottom: 50px;
}

#service > h1::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 90px;
  height: 4px;
  border-radius: 4px;
  background: #f0b400;
  transform: translateX(-50%);
}

#services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: stretch;
  max-width: 1300px;
  margin: 0 auto;
}

.service-card {
  background: #f7f7f7;
  padding: 32px 28px;
  border-radius: 14px;
  border: 1px solid #ececec;
  border-top: 4px solid #f0b400;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
  padding-bottom: 14px;
  margin-bottom: 18px;
  border-bottom: 1px solid #e2e2e2;
}

.service-card ul {
  list-style: none;
}

.service-card li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 12px;
  font-size: 16px;
  color: #444;
  line-height: 1.5;
}

.service-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f0b400;
}

/* =========================
   Photo Gallery
========================= */
#gallery-header {
  margin-top: 30px;
  font-size: 52px;
  line-height: 1.15;
  letter-spacing: -0.5px;
  text-align: center;
  align-items: center;
}

/* =========================
   CONTACT FORM
========================= */

#contactus {
  max-width: 1000px;
  margin: 0 auto 110px;
  text-align: center;
}

#contactus > h1 {
  position: relative;
  padding-bottom: 18px;
  margin-bottom: 36px;
}

#contactus > h1::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 90px;
  height: 4px;
  border-radius: 4px;
  background: #f0b400;
  transform: translateX(-50%);
}

/* Center form and fields */
#contactus .wpforms-container {
  max-width: 900px;
  margin: 0 auto;
}

#contactus .wpforms-field {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#contactus .wpforms-field input,
#contactus .wpforms-field textarea {
  width: 100%;
  max-width: 700px;
  box-sizing: border-box;
  padding: 18px;
  border: 1px solid #ccc;
  font-size: 18px;
  font-family: inherit;
  text-align: left;
}

#contactus .wpforms-field-label {
  font-size: 24px;
}

#contactus .wpforms-field textarea {
  min-height: 250px;
}

#contactus .wpforms-submit-container {
  text-align: center;
}

#contactus button.wpforms-submit {
  width: 220px;
  padding: 20px;
  background: #111;
  color: white;
  text-align: center;
  border: none;
  border-radius: 4px;
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

#contactus button.wpforms-submit:hover {
  background: #f0b400;
  color: #111;
}


/* =========================
   FOOTER
========================= */

.site-footer {
  background: #111;
  color: white;
  padding: 40px 80px 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
}

.footer-logo img {
  max-width: 200px;
  margin-bottom: 20px;
}

.site-footer h3 {
  margin-bottom: 15px;
}

.site-footer a:hover {
  color: #f0b400;
}

.copyright {
  margin-top: 50px;
  border-top: 1px solid #333;
  padding-top: 25px;
  text-align: center;
  margin-bottom: -30px;
}