:root {
  --primary-yellow: #ffd200;
  --dark-gray: #2c2c2c;
  --light-gray-text: #666666;
  --white: #ffffff;
  --section-bg-dark: #333333;
  --image-bg: #e2e2e2;
  --image-bg-dark: #333333;
  --border-light-gray: #eeeeee;
  --card-border-radius: 24px;
  --button-border-radius: 5px;
}

html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Open Sans", sans-serif;
  line-height: 1.6;
  color: var(--dark-gray);
  background-color: var(--white);
  overflow-x: hidden;
  padding-top: 132px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  color: var(--dark-gray);
  font-weight: 700;
}

h1 {
  font-size: 3.2em;
  line-height: 1.1;
}
h2 {
  font-size: 2.5em;
  line-height: 1.2;
}
h3 {
  font-size: 1.8em;
  line-height: 1.3;
}
h4 {
  font-size: 1.4em;
  line-height: 1.4;
}
h5 {
  font-size: 1.2em;
  line-height: 1.5;
}
h6 {
  font-size: 1em;
}

p {
  margin-bottom: 1em;
  color: var(--light-gray-text);
}

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

.btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--primary-yellow);
  color: var(--dark-gray);
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  border: none;
  border-radius: var(--button-border-radius);
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-align: center;
}

.btn:hover {
  background-color: #e6b800;
}

.image-placeholder {
  background-color: #cccccc;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666666;
  font-family: "Montserrat", sans-serif;
  font-size: 0.9em;
  text-align: center;
  border-radius: var(--card-border-radius);
  overflow: hidden;
}

.site-header-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo-placeholder {
  width: 180px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: "Montserrat", sans-serif;
  font-size: 1.2em;
  font-weight: 600;
}

/* Header Top Bar */
.header-top-bar {
  background-color: var(--dark-gray);
  color: var(--white);
  padding: 10px 0;
  font-size: 0.9em;
}
.header-top-bar .container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.header-top-bar span {
  margin-left: 20px;
  display: flex;
  align-items: center;
}
.phone-span::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background-color: #fff; /* Placeholder for icon */
  -webkit-mask: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor"><path d="M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1C12.44 21 3 11.56 3 3c0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.47.57 3.57.11.35.03.74-.25 1.02L6.62 10.79z"/></svg>')
    no-repeat 50% 50%;
  mask: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor"><path d="M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1C12.44 21 3 11.56 3 3c0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.47.57 3.57.11.35.03.74-.25 1.02L6.62 10.79z"/></svg>')
    no-repeat 50% 50%;
  background-size: contain;
  margin-right: 8px;
}

.main-header {
  background-color: #000;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-light-gray);
  position: relative;
}
.main-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
}
.nav-menu a {
  color: var(--white);
  transition: color 0.3s ease;
}
.nav-menu a:hover {
  color: var(--primary-yellow);
}
.quote-button {
  padding: 12px 25px;
  font-size: 0.95em;
}
.hamburger-menu {
  display: none;
  font-size: 30px;
  cursor: pointer;
  color: var(--white);
}

.main-footer {
  background-color: var(--section-bg-dark);
  color: var(--white);
  padding: 60px 0 20px 0;
  font-size: 0.95em;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 30px;
}
.footer-logo-placeholder {
  width: 180px;
  height: 40px;
  background-color: var(--primary-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-gray);
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
}
.social-icons {
  display: flex;
  gap: 15px;
}
.social-icon-placeholder {
  width: 40px;
  height: 40px;
  background-color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-gray);
  font-size: 0.8em;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
}
.footer-columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}
.footer-column h5 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: 1.1em;
}
.footer-column ul {
  list-style: none;
}
.footer-column ul li {
  margin-bottom: 10px;
}
.footer-column ul li a {
  color: #ccc;
  transition: color 0.3s ease;
}
.footer-column ul li a:hover {
  color: var(--primary-yellow);
}
.footer-bottom-bar {
  text-align: center;
  font-size: 0.85em;
  color: #ccc;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 992px) {
  h1 {
    font-size: 2.8em;
  }
  h2 {
    font-size: 2em;
  }
  .main-header .nav-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #000000;
    border-top: 1px solid var(--border-light-gray);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 100;
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .main-header .nav-menu.active {
    display: flex;
  }
  .main-header .nav-menu li {
    padding: 10px 20px;
    text-align: center;
  }
  .main-header .quote-button {
    display: none;
  }
  .hamburger-menu {
    display: block;
  }
  .main-header .container {
    flex-wrap: wrap;
  }
  .logo-placeholder {
    margin-right: auto;
  }
  .footer-columns {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.2em;
  }
  h2 {
    font-size: 1.8em;
  }
  .footer-columns {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
  h1 {
    font-size: 1.8em;
  }
  h2 {
    font-size: 1.5em;
  }
  .btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .logo-placeholder {
    width: 150px;
    height: 35px;
  }
}

.logo {
  height: 60px;
}

.btn-active {
  color: #777777 !important;
}

.btn-active:hover {
  color: var(--primary-yellow) !important;
}

.red-text {
  color: #ff670f;
}

.light-text {
  color: #fff570;
}

.highlight-text {
  /*font-style: italic;*/
  color: #ffffff;
  /*text-decoration: underline;*/
}

.highlighted-text {
  color: #ffffff;
}

.btn-inline {
  border: 2px solid #fff;
}

.fa-icon {
  font-size: 2em;
}

.footer-columns {
  display: none;
}

.footer-top {
  border: none;
}
