/* =========================
   GLOBAL
========================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #272727;
  color: #ffffff;
  line-height: 1.6;
  padding-top: 80px;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  padding-left: 20px;
}

/* =========================
   MOBILE HEADER
========================= */

.desktop-header {
  display: none;
}

.mobile-header {
  display: block;
  background: #272727;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
}

.topnav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px;
  position: relative;
}

#mobilelogo {
  width: 130px;
}

#menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
}

/* Dropdown menu */
#nav-links {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #272727;
  flex-direction: column;
  padding: 10px 15px 20px;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.25);
}

#nav-links.active {
  display: flex;
}

#nav-links a {
  color: white;
  font-size: 1.3rem;
  font-weight: 550;
  padding: 14px 0;
  border-bottom: 1px solid #333;
}

#nav-links a:hover {
  color: #f0b400;
}

#nav-links a:last-child {
  border-bottom: none;
}

/* =========================
   MAIN CONTENT
========================= */

main {
  padding: 25px 15px;
}

#main-logo img {
  width: 100%;
  max-width: 500px;
  margin: 0 auto 30px;
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.35));
}

#about,
#service,
#contactus {
  margin-bottom: 50px;
}

h1 {
  font-size: 32px;
  margin-bottom: 10px;
  text-align: center;
  position: relative;
  padding-bottom: 14px;
}

/* gold accent underline, centered on mobile */
#about > h1::after,
#service > h1::after,
#contactus > h1::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 70px;
  height: 4px;
  border-radius: 4px;
  background: #f0b400;
}

h3 {
  margin: 0 20px 10px;
  text-align: left;
  font-size: 1.9rem;
  font-weight: 700;
}

p {
  margin: 0 20px 20px;
}

/* =========================
   SERVICES
========================= */

#service {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

#services-grid {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.service-card {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  border-top: 4px solid #f0b400;
  color: #272727;
}

.service-card h3 {
  margin: 0 0 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e2e2e2;
}

.service-card ul {
  list-style: none;
  padding-left: 0;
}

.service-card li {
  position: relative;
  margin: 0 0 8px 30px;
  padding-left: 20px;
  font-size: 1.1rem;
  font-weight: 520;
}

.service-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f0b400;
}

/* =========================
   CONTACT FORM
========================= */

#contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 20px;
}

#contact-form input,
#contact-form textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
  font-family: inherit;
  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.25);
}

#contact-form textarea {
  min-height: 180px;
  resize: vertical;
}

#contact-form button {
  background: #fff;
  color: #272727;
  border: none;
  padding: 15px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
}

#contact-form button:hover {
  background: #f0b400;
  color: #272727;
}

/* =========================
   FOOTER
========================= */

.site-footer {
  background: #272727;
  color: white;
  padding: 40px 20px;
}

#footer-email {
  margin-left: 20px;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

#footerinfo p {
  margin: 0 auto;
  font-size: 1.2rem;
  font-weight: 500;
  text-align: center;
}

.footer-logo img {
  max-width: 220px;
  margin: 0 auto 15px;
}

.site-footer a:hover {
  color: #f0b400;
}

.copyright {
  margin-top: 30px;
  border-top: 1px solid #3a3a3a;
  padding-top: 20px;
  text-align: center;
  font-size: 14px;
}
