/* =========================
   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: 20px 80px;
  position: sticky;
  top: 0;
  z-index: 999;
}

.desktopnav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#desktoplogo {
  width: 300px;
  height: auto;
}

.desktopnav nav ul {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}

.desktopnav nav a {
  color: white;
  font-size: 20px;
  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;
}

/* =========================
   CONTACT FORM
========================= */

/* =========================
   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%);
}

#contact-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

#contact-form input,
#contact-form textarea {
  width: 100%;
  padding: 18px;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 18px;
  font-family: inherit;
  text-align: left;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

#contact-form input:focus,
#contact-form textarea:focus {
  outline: none;
  border-color: #f0b400;
  box-shadow: 0 0 0 3px rgba(240, 180, 0, 0.2);
}

#contact-form textarea {
  min-height: 250px;
  resize: vertical;
}

#contact-form button {
  width: 220px;
  margin: 0 auto;
  background: #111;
  color: white;
  border: none;
  padding: 18px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.3px;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.15s ease;
}

#contact-form button:hover {
  background: #f0b400;
  color: #111;
}

#contact-form button:active {
  transform: translateY(1px);
}

/* =========================
   FOOTER
========================= */

.site-footer {
  background: #111;
  color: white;
  padding: 70px 80px 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
}

.footer-logo img {
  max-width: 300px;
  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;
}