:root {
  --blue: #2462b5;
  --blue-dark: #133d79;
  --black: #171717;
  --white: #ffffff;
  --gold: #d4af37;
  --gold-dark: #b89323;
  --border: #d8e0e8;
  --soft-bg: #f5f7fa;
  --text: #1b1b1b;
  --shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  --max-width: 1440px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  background: var(--white);
  color: var(--text);
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 18px;
  line-height: 1.5;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--blue-dark);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 14px 18px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 22px;
}

.logo-wrap {
  flex: 0 0 auto;
}

.site-logo {
  width: 600px;
  max-width: 100%;
}

.header-right {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.menu-row {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}

.call-row {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}

.click-call-img {
  width: 400px;
  max-width: 100%;
}

.nav-toggle {
  display: none;
}

.nav-toggle-label {
  display: none;
  width: 46px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle-label span {
  display: block;
  width: 100%;
  height: 3px;
  border-radius: 3px;
  background: var(--black);
}

.main-nav {
  width: 100%;
}

.menu {
  list-style: none;
  margin: 0;
  padding: 8px 0 0;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 8px;
  flex-wrap: wrap;
}

.menu > li {
  position: relative;
}

.menu > li > a,
.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 14px;
  background: var(--white);
  color: var(--black);
  border: 1px solid transparent;
  font-size: 17px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
}

.imgleft{float:left;margin-right:10px;}.imgright{float:right;margin-left:10px;}.tbl th,.tbl td{padding:15px;text-align:left;}.tbl{width:100%;}.tbl tr:nth-child(odd){background-color:#fff;}.tbl tr:nth-child(even){background-color:var(--gold);}.tbl th{background-color:var(--blue);color:white;}.ttltoc a{text-decoration:none;color:#4a4a4a;background-color:#f5f5f5}.ttltoc{text-align:left;font-weight:600;}.toc ul,.toc ol{margin-left:-30px;}.toc ul li,.toc ol li{list-style:none;margin-bottom:8px;}.toc ul li::before{content:'•';color:#4a4a4a;display:inline-block;width:1em;}.toc{color:#4a4a4a;background:#f6f6f6 none repeat scroll 0 0;border:1px solid #aaa;margin-bottom:1em;display:table;font-size:18px;width:auto;padding:18px;}



.menu > li > a:hover,
.menu-toggle:hover {
  background: var(--soft-bg);
  border-color: var(--border);
  text-decoration: none;
}

.has-submenu > .menu-toggle::after {
  content: "▾";
  margin-left: 6px;
  font-size: 14px;
}

.submenu {
  list-style: none;
  margin: 0;
  padding: 10px;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 245px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  display: none;
  z-index: 100;
}

.submenu li {
  margin: 0;
  padding: 0;
}

.submenu li a {
  display: block;
  padding: 10px 12px;
  color: var(--black);
  font-weight: 600;
}

.submenu li a:hover {
  background: var(--soft-bg);
  text-decoration: none;
}

.has-submenu:hover > .submenu {
  display: block;
}

.brands-submenu {
  max-height: 420px;
  overflow-y: auto;
}

.hero-banner {
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
}

.hero-image {
  width: 100%;
  height: auto;
  max-height: 250px;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 40px;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.75) 0%,
    rgba(0,0,0,0.55) 40%,
    rgba(0,0,0,0.2) 70%,
    rgba(0,0,0,0) 100%
  );
}

.hero-content {
  max-width: 520px;
  color: #fff;
}

.hero-top {
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 10px;
}

.hero-content h1 {
  font-size: 42px;
  margin: 0 0 10px;
  line-height: 1.2;
}


.hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-btn {
  display: inline-block;
  background: #d4af37;
  color: #000;
  padding: 14px 24px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 4px;
}

.hero-btn:hover {
  background: #b99220;
}

.hero-btn.alt {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.hero-btn.alt:hover {
  background: rgba(255,255,255,0.15);
}
.page-wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 24px 18px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 25%;
  gap: 24px;
}

.main-content {
  min-width: 0;
}

.content-box {
  min-height: 500px;
  padding: 24px;
  border: 1px solid var(--border);
  background: var(--white);
}

.sidebar {
  min-width: 0;
}

.sidebar-box {
  margin-bottom: 20px;
  padding: 18px;
  border: 1px solid var(--border);
  background: var(--white);
  text-align: center;
}

.sidebar-box h2 {
  margin-top: 0;
  margin-bottom: 14px;
  color: var(--blue-dark);
  font-size: 24px;
}

.sidebar-image {
  margin: 0 auto;
}

.social-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.social-buttons a {
  width: 52px;
  height: 52px;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}

.social-buttons a:hover {
  background: var(--blue-dark);
  text-decoration: none;
}

.social-buttons svg {
  width: 26px;
  height: 26px;
  fill: var(--white);
}

.quote-form {
  display: grid;
  gap: 12px;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #bfc8d2;
  background: var(--white);
  color: var(--black);
  font-size: 16px;
  font-family: inherit;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  outline: 2px solid var(--blue);
  border-color: var(--blue);
}

.gold-btn,
.gold-link-btn,
button:not(.menu-toggle) {
  background: var(--gold);
  color: var(--black);
  border: 1px solid var(--gold-dark);
  padding: 13px 18px;
  font-size: 17px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
}

.gold-btn:hover,
.gold-link-btn:hover,
button:not(.menu-toggle):hover {
  background: var(--gold-dark);
  text-decoration: none;
}

.gold-link-btn {
  display: inline-block;
}

.quote-page-wrap {
  grid-template-columns: 1fr;
}

.full-width-content .content-box {
  min-height: 240px;
}

.quote-nav .menu {
  justify-content: flex-end;
}

.site-footer {
  margin-top: 20px;
  background: var(--blue-dark);
  color: var(--white);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 24px 18px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}

.footer-col h2 {
  margin-top: 0;
  margin-bottom: 10px;
  color: var(--white);
  font-size: 22px;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-col a {
  color: var(--white);
}

.footer-col p {
  margin: 0;
}

@media (max-width: 1200px) {
  .header-inner {
    flex-direction: column;
  }

  .header-right {
    width: 100%;
    align-items: flex-start;
  }

  .menu-row,
  .call-row {
    justify-content: flex-start;
  }

  .menu,
  .quote-nav .menu {
    justify-content: flex-start;
  }

  .page-wrap {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .hero-image {
    height: 220px;
  }

  .hero-overlay {
    padding: 28px 24px;
    background: linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.78) 0%,
      rgba(0, 0, 0, 0.62) 55%,
      rgba(0, 0, 0, 0.25) 100%
    );
  }

  .hero-content {
    max-width: 460px;
  }

  .hero-content h1 {
    font-size: 34px;
  }

}

@media (max-width: 640px) {
  .hero-image {
    height: 260px;
  }

  .hero-overlay {
    justify-content: center;
    align-items: center;
    padding: 20px 16px;
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.72) 0%,
      rgba(0, 0, 0, 0.50) 100%
    );
  }

  .hero-content {
    max-width: 100%;
    text-align: center;
  }

  .hero-top {
    font-size: 12px;
    letter-spacing: 1.2px;
    margin-bottom: 8px;
  }

  .hero-content h1 {
    font-size: 28px;
    margin-bottom: 8px;
  }


  .hero-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .hero-btn,
  .hero-btn.alt {
    width: 100%;
    max-width: 280px;
  }

  .nav-toggle-label {
    display: flex;
  }

  .main-nav {
    display: none;
    width: 100%;
  }

  .nav-toggle:checked + .nav-toggle-label + .main-nav {
    display: block;
  }

  .menu {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding-top: 0;
  }

  .menu > li > a,
  .menu-toggle {
    width: 100%;
    justify-content: space-between;
    border: 1px solid var(--border);
  }

  .submenu {
    position: static;
    display: block;
    min-width: 0;
    border: 0;
    box-shadow: none;
    padding: 8px 0 0 12px;
  }

  .brands-submenu {
    max-height: none;
  }

  .has-submenu:hover > .submenu {
    display: block;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 16px;
  }

  .header-inner,
  .page-wrap,
  .footer-inner {
    padding-left: 12px;
    padding-right: 12px;
  }

  .content-box,
  .sidebar-box {
    padding: 16px;
  }

}