/* =========================
   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: 15px 20px;
  background: #333;
  color: #fff;
  gap: 15px;
}

.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;
}

/* =========================
   QUOTE TITLE
========================= */
.quote-title h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  text-align: center;
  margin-top: 60px;
  margin-bottom: 30px;
}

.quote-title .quote-text {
  color: #666; /* gray */
}

.quote-title .tool-text {
  color: #cc5500; /* orange */
}

/* =========================
   QUOTE FORM CONTAINER
========================= */
.quote-form-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
  margin: 0 16px 40px;
  background: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.quote-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Stack rows on mobile */
.form-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group-half {
  flex: 1 1 100%;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.quote-form label {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 4px;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  padding: 12px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  outline: none;
  width: 100%;
  transition: border-color 0.2s ease;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: #cc5500;
}

/* Textarea */
.quote-form textarea {
  min-height: 100px;
  resize: vertical;
}

/* =========================
   SUBMIT BUTTON
========================= */
.quote-form .quote-submit {
  background-color: #cc5500;
  color: #fff;
  border: 2px solid #cc5500;
  padding: 16px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 6px;
  text-align: center;
  width: 100%;
  max-width: 300px;
  display: inline-block;
  margin: 20px auto 0;
  transition: 0.3s ease;
}

.quote-form .quote-submit:hover {
  background-color: #e67333;
  border-color: #e67333;
  color: #fff;
}

/* =========================
   MOBILE MEDIA QUERY (refinements)
========================= */
@media (max-width: 768px) {

    /* Ensure proper spacing for inputs */
    .quote-form input,
    .quote-form select,
    .quote-form textarea {
        padding: 12px;
        font-size: 14px;
    }

    /* Ensure button is full width */
    .quote-form .quote-submit {
        width: 100%;
        max-width: 300px;
    }

    /* Adjust quote title for smaller screens */
    .quote-title h1 {
        font-size: 36px;
        margin-top: 60px;
        margin-bottom: 20px;
    }
}
/* =========================
   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;
}
