/* =========================
   GLOBAL BOX-SIZING
========================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* =========================
   BASE STYLES
========================= */
body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  color: #333;
  background: #fff;
}

.dark { color: #333; }
.orange { color: #cc5500; }

/* =========================
   HEADER
========================= */
header {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0px 20px 25px;  /* TOP | LEFT/RIGHT | BOTTOM */
  background: #333;
  color: #fff;
  gap: 12px; /* reduce vertical spacing slightly */
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-area img {
  height: 60px;
}

.tagline {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-align: center;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

nav a {
  color: #fff;
  font-weight: 300;
  font-size: 14px;
  text-decoration: none;
}

nav .quote-button-header {
  width: 100%;
  max-width: 300px;
  margin-top: 5px;
  background-color: #cc5500;
  color: #fff;
  border: 2px solid #cc5500;
  padding: 12px 25px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 6px;
  text-align: center;
  display: inline-block;
  transition: 0.3s ease;
}

nav .quote-button-header:hover {
  background-color: #e67333;
  border-color: #e67333;
}

/* =========================
   ABOUT US - MOBILE
========================= */

.about-us-wrapper {
  display: flex;
  flex-direction: column;
  gap: 35px;
  padding: 35px 20px;
}

.about-us-text h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 40px;
  text-align: center;
}

.about-us-text h2 span:first-child {
  color: #333;
}

.about-us-text h2 span:last-child {
  color: #cc5500;
}

.about-us-text p {
  tfont-size: 14px;
  line-height: 1.6;
  text-align: center;
}

.about-us-image img {
  max-width: 100%;
  border-radius: 12px;
}

/* =========================
   QUOTE HERO
========================= */
.quote-hero {
  padding: 60px 20px;
  margin-bottom: 20px;
  background: #00264d;
  text-align: center;
}

.quote-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: center;
}

.quote-text,
.quote-image {
  width: 100%;
  margin: 0;
}

.quote-small {
  font-family: 'Avenir', sans-serif;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: #fff;
}

.quote-large {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  margin: 10px 0;
  color: #cc5500;
}

.quote-description {
  font-size: 14px;
  max-width: 95%;
  margin: 0 auto 20px;
  color: #fff;
}

.quote-button {
  background: #cc5500;
  padding: 12px 25px;
  font-size: 16px;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  display: inline-block;
  width: 100%;
  max-width: 300px;
  transition: 0.3s ease;
}

.quote-button:hover {
  background: #e67333;
  border-color: #e67333;
}

.quote-image img {
  width: 100%;
  max-width: 300px;
  border: 4px solid #cc5500;
  border-radius: 8px;
}


/* =========================
   FOOTER
========================= */
#site-footer {
  background: #333;
  color: #fff;
  padding: 40px 20px 20px;
  text-align: center;
}

.footer-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  max-width: 100%;
  margin: 0 auto;
}

.footer-col {
  width: 100%;
}

#site-footer h4 {
  font-family: 'Bebas Neue', sans-serif;
  color: #cc5500;
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

#site-footer p,
#site-footer li {
  font-size: 13px;
  color: #fff;
  margin: 5px 0;
}

.footer-col ul {
  padding-left: 0;
  list-style: none;
}

.footer-col a {
  color: #fff;
  text-decoration: none;
}

.footer-col a:hover {
  color: #cc5500;
}

.social-list li {
  margin-bottom: 5px;
  cursor: pointer;
}

.footer-bottom {
  border-top: 1px solid #444;
  padding-top: 10px;
  font-size: 14px;
  color: #aaa;
  margin-top: 15px;
}
