* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #222;
  background: #fff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #111;
  color: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,.2);
}

.site-header .nav {
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: .5px;
}

.brand span {
  color: #f5a623;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links a {
  font-weight: 600;
}

.nav-links a:hover {
  color: #f5a623;
}

.menu {
  display: none;
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
  border-radius: 8px;
  padding: 8px 12px;
}

/* HERO */
.hero {
  min-height: 650px;
  display: flex;
  align-items: center;
  color: #fff;
  background:
    linear-gradient(rgba(0,0,0,.62), rgba(0,0,0,.62)),
    linear-gradient(135deg, #333, #111);
}

.hero-content {
  max-width: 760px;
  padding: 90px 0;
}

.eyebrow {
  color: #f5a623;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero h1 {
  font-size: clamp(42px, 7vw, 76px);
  line-height: 1.05;
  margin: 15px 0 25px;
  font-weight: 800;
}

.hero-copy {
  font-size: 21px;
  max-width: 680px;
  color: #eee;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button {
  display: inline-block;
  padding: 14px 24px;
  border-radius: 7px;
  font-weight: 800;
  border: 2px solid #f5a623;
  background: #f5a623;
  color: #111;
}

.button.secondary {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

.button:hover {
  transform: translateY(-1px);
}

/* TRUST */
.trust {
  background: #111;
  color: #fff;
  padding: 25px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  text-align: center;
}

.trust-grid div {
  padding: 10px;
}

.trust-grid strong {
  color: #f5a623;
  display: block;
  font-size: 22px;
}

/* SECTIONS */
.section {
  padding: 90px 0;
}

.section:nth-of-type(even) {
  background: #f7f7f7;
}

.section h2 {
  font-size: clamp(36px, 5vw, 54px);
  line-height: 1.1;
  margin: 10px 0 20px;
}

.section-intro {
  max-width: 720px;
  font-size: 18px;
  color: #555;
}

/* SERVICES */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 40px;
}

.card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0,0,0,.06);
}

.card .icon {
  font-size: 35px;
  margin-bottom: 10px;
}

.card h3 {
  margin: 5px 0 10px;
  font-size: 24px;
}

.card p {
  color: #555;
  margin: 0;
}

/* ABOUT */
.section.dark {
  background: #171717;
  color: #fff;
}

.section.dark .section-intro {
  color: #ddd;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.text-link {
  display: inline-block;
  margin-top: 20px;
  color: #f5a623;
  font-weight: 800;
}

/* GALLERY */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 35px;
}

.gallery-item {
  min-height: 230px;
  border-radius: 12px;
  background: #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #666;
  font-weight: 700;
  padding: 20px;
}

/* QUOTE */
.quote-section {
  background: #f7f7f7;
}

.quote-box {
  max-width: 800px;
  margin: auto;
}

#quote-form {
  margin-top: 30px;
  display: grid;
  gap: 16px;
}

#quote-form input,
          select {
width: 100%;
padding: 18px;
border: 1px solid #ccc;
border-radius: 8px;
font-size: 16px;
background: #fff;
box-sizing: border-box;
}
#quote-form textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 7px;
  font: inherit;
  background: #fff;
}

#quote-form textarea {
  min-height: 150px;
  resize: vertical;
}

#quote-form button {
  border: 0;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
}

.form-note {
  color: #666;
  font-size: 14px;
}

/* CONTACT */
.contact {
  background: #111;
  color: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 30px;
}

.contact-grid div {
  padding: 20px;
  border: 1px solid #333;
  border-radius: 10px;
}

.contact-grid span {
  display: block;
  color: #f5a623;
  font-weight: 800;
  margin-bottom: 5px;
}

/* FOOTER */
.footer {
  padding: 30px 0;
  background: #080808;
  color: #aaa;
  text-align: center;
}

.footer strong {
  color: #fff;
}

/* MOBILE */
@media (max-width: 800px) {

#nav-links {
display: none !important;
}

#nav-links.open {
display: flex !important;
position: absolute;
top: 72px;
right: 20px;
flex-direction: column;
align-items: stretch;
background: #111;
padding: 20px;
gap: 16px;
border: 1px solid #fff;
border-radius: 8px;
z-index: 9999;
min-width: 200px;
}

#nav-links.open a {
display: block;
color: #fff !important;
padding: 8px 0;
}

.hero-content {
padding: 70px 0;
}

.hero h1 {
font-size: 46px;
}
.hero-copy {
font-size: 18px;
}

.section {
    padding: 65px 0;
}
}
/* DESKTOP MENU */
@media (min-width: 801px) {
#nav-links {
display: flex !important;
position: static;
flex-direction: row;
align-items: center;
gap: 24px;
background: transparent;
padding: 0;
border: 0;
border-radius: 0;
z-index: auto;
}

#nav-links a {
display: inline-block;
color: #fff !important;
padding: 8px 0;
}

.menu-toggle {
display: none !important;
}
}
/* DESKTOP NAVIGATION FIX */
@media (min-width: 801px) {
#nav-links {
display: flex !important;
position: static !important;
flex-direction: row !important;
align-items: center !important;
gap: 24px !important;
background: transparent !important;
padding: 0 !important;
border: none !important;
border-radius: 0 !important;
z-index: 1000 !important;
min-width: 0 !important;
}

#nav-links a {
display: inline-block !important;
color: #fff !important;
padding: 8px 0 !important;
}

.menu-toggle {
display: none !important;
}
}
.logo-img {
height: 70px;
width: auto;
display: block;
}

@media (max-width: 700px) {
.logo-img {
height: 60px;
}
}
.brand .logo-img {
height: 70px !important;
width: auto !important;
max-width: 220px !important;
display: block;
}

@media (max-width: 700px) {
.brand .logo-img {
height: 60px !important;
max-width: 190px !important;
}
}
.brand {
width: 280px !important;
display: block !important;
flex-shrink: 0 !important;
}

.brand .logo-img {
width: 280px !important;
height: 120px !important;
max-width: none !important;
object-fit: contain !important;
}