/* ===== TASK COMPLETE BRAND STYLES ===== */

/* HEADER */
.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 40px;
    background-color: #FFFFFF;
    border-bottom: 3px solid #F36B21;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    height: 60px;
    width: auto;
}

.site-header h1 {
    color: #005596;
    font-size: 1.8em;
    margin: 0;
    font-weight: bold;
}

.site-header .tagline {
    font-size: 0.9em;
    color: #F36B21;
    margin: 0;
    font-style: italic;
}

.navbar ul {
    list-style: none;
    display: flex;
    gap: 25px;
    margin: 0;
    padding: 0;
}

.navbar a {
    text-decoration: none;
    color: #333333;
    font-weight: 600;
    transition: color 0.3s;
}

.navbar a:hover {
    color: #F36B21;
}

/* MAIN CONTENT */
.main-content {
    font-family: Arial, sans-serif;
    padding: 20px 40px;
    color: #333333;
}

.hero {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(to bottom, #FFFFFF, #f8f8f8);
    border-bottom: 2px solid #F36B21;
}

.hero h2 {
    color: #005596;
    font-size: 2em;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.1em;
    color: #333333;
}

.cta-button {
    display: inline-block;
    background-color: #F36B21;
    color: #FFFFFF;
    padding: 10px 25px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    margin-top: 15px;
    transition: 0.3s;
}

.cta-button:hover {
    background-color: #005596;
}

/* SERVICES */
.services-preview {
    margin-top: 50px;
    text-align: center;
}

.services-preview h3 {
    color: #005596;
    margin-bottom: 20px;
}

.services-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.service-item {
    background: #f5f5f5;
    border-radius: 8px;
    padding: 20px;
    width: 280px;
    border: 1px solid #ddd;
}

.service-item h4 {
    color: #005596;
    margin-bottom: 10px;
}
/* -------------------------------
   HEADER STYLES
--------------------------------*/
.site-header {
  background-color: #ffffff;
  border-bottom: 3px solid #F36B21;
  padding: 0.8rem 0;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand img {
  height: 60px;
  width: auto;
}

.brand-text h1 {
  font-size: 1.8rem;
  color: #005596;
  margin: 0;
}

.brand-text .tagline {
  font-size: 0.9rem;
  color: #F36B21;
  margin-top: 0.1rem;
  font-weight: 600;
}

.main-nav {
  display: flex;
  gap: 2rem;
}

.main-nav a {
  text-decoration: none;
  font-weight: 600;
  color: #1f2933;
  transition: 0.3s;
}

.main-nav a:hover {
  color: #F36B21;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .header-inner {
    flex-direction: column;
    align-items: center;
  }
  .main-nav {
    margin-top: 0.8rem;
  }
}
.logo-container img {
  height: 55px;
  width: auto;
  vertical-align: middle;
}

.logo-container div {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.main-nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.main-nav a {
  text-decoration: none;
  color: #005596;
  font-weight: 600;
  transition: color 0.3s ease;
}

.main-nav a:hover {
  color: #F36B21;
}
/* ===== PAGE BODY & CONTENT STYLES ===== */

body {
  font-family: Arial, Helvetica, sans-serif;
  background-color: #fff;
  color: #222;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

section {
  padding: 2rem 10%;
}

h1, h2, h3, h4 {
  color: #005596;
  margin-bottom: 0.5rem;
}

p {
  margin-bottom: 1rem;
}

.hero {
  text-align: center;
  padding: 3rem 10%;
}

.hero h1 {
  font-size: 2rem;
  color: #000;
}

.hero p {
  font-size: 1.1rem;
  color: #444;
}

.section {
  border-top: 2px solid #F36B21;
  margin-top: 2rem;
  padding-top: 2rem;
}

a {
  color: #005596;
  text-decoration: none;
}

a:hover {
  color: #F36B21;
  text-decoration: underline;
}/* ===== PAGE BODY & SECTION STYLING ===== */

body {
  font-family: Arial, Helvetica, sans-serif;
  background-color: #ffffff;
  color: #222222;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

/* Section Wrappers */
section {
  padding: 2rem 10%;
  max-width: 1200px;
  margin: auto;
}

/* Headings */
h1, h2, h3, h4 {
  color: #005596;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

h2 {
  border-bottom: 2px solid #F36B21;
  padding-bottom: 0.3rem;
  margin-top: 2rem;
}

p {
  margin-bottom: 1rem;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 3rem 10%;
  background-color: #f9f9f9;
  border-bottom: 2px solid #F36B21;
}

.hero h1 {
  font-size: 2.2rem;
  color: #000;
}

.hero p {
  font-size: 1.1rem;
  color: #444;
}

.hero a {
  color: #005596;
  font-weight: bold;
}

.hero a:hover {
  color: #F36B21;
}

/* Numbered Steps */
.how-it-works {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.step {
  border-left: 4px solid #F36B21;
  padding-left: 1rem;
}

.step h3 {
  color: #005596;
  margin-bottom: 0.5rem;
}

/* Footer Formatting */
footer {
  background-color: #f9f9f9;
  color: #222;
  text-align: center;
  padding: 2rem 0;
  border-top: 3px solid #F36B21;
}

footer h3 {
  color: #005596;
}

footer a {
  color: #005596;
}

footer a:hover {
  color: #F36B21;
}/* ===== HOW IT WORKS STYLING ===== */

/* ===== HOW IT WORKS STYLING ===== */

.how-it-works {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  margin-top: 2rem;
}

.step {
  background-color: #ffffff;
  border: 2px solid #F36B21;
  border-radius: 10px;
  flex: 1 1 30%;
  min-width: 250px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  padding: 20px;
  transition: all 0.3s ease;
}

.step:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.step-number {
  font-size: 2rem;
  font-weight: bold;
  color: #F36B21;
  margin-bottom: 10px;
}

.step h3 {
  color: #005596;
  margin-bottom: 10px;
}

.step p {
  color: #333;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Responsive Fix */
@media (max-width: 768px) {
  .how-it-works {
    flex-direction: column;
  }

  .step {
    flex: 1 1 100%;
  }
}
/* ===== QUOTE FORM STYLING ===== */
form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: flex-start;
  margin-top: 10px;
}

form input[type="text"],
form input[type="email"],
form input[type="tel"],
form textarea {
  flex: 1 1 200px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

form textarea {
  flex: 1 1 100%;
  min-height: 100px;
  resize: vertical;
}

form button,
form input[type="submit"] {
  background-color: #005596;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.3s;
}

form button:hover,
form input[type="submit"]:hover {
  background-color: #F36B21;
}

.quote-section h2 {
  margin-bottom: 10px;
  color: #005596;
  border-bottom: 2px solid #F36B21;
  display: inline-block;
  padding-bottom: 5px;
}

form label {
  font-weight: 600;
  margin-right: 8px;
  color: #333;
}
/* ===== SUCCESS MESSAGE STYLING ===== */
.success-message {
  text-align: center;
  padding: 80px 20px;
  background-color: #f9f9f9;
  color: #333;
}

.success-message h1 {
  color: #005596;
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.success-message p {
  font-size: 1.1rem;
  margin-bottom: 15px;
}

.success-actions {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 25px;
  flex-wrap: wrap;
}

.button-primary,
.button-outline,
.button-link {
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.button-primary {
  background-color: #005596;
  color: white;
}

.button-primary:hover {
  background-color: #F36B21;
}

.button-outline {
  border: 2px solid #F36B21;
  color: #F36B21;
}

.button-outline:hover {
  background-color: #F36B21;
  color: white;
}

.button-link {
  color: #005596;
}

.button-link:hover {
  color: #F36B21;
}
/* ===== MOBILE RESPONSIVE FIXES ===== */
@media (max-width: 768px) {

  /* Fix overall section padding */
  .section,
  .success-message {
    padding: 40px 15px;
  }

  /* Make text more readable */
  .success-message h1 {
    font-size: 1.8rem;
  }

  .success-message p {
    font-size: 1rem;
  }

  /* Fix form inputs stacking nicely */
  form {
    flex-direction: column;
    gap: 15px;
  }

  form input[type="text"],
  form input[type="email"],
  form input[type="tel"],
  form input[type="submit"],
  form textarea {
    width: 100%;
    max-width: 100%;
    font-size: 1rem;
  }

  form textarea {
    min-height: 120px;
  }

  /* Fix button alignment and stacking */
  .success-actions {
    flex-direction: column;
    gap: 12px;
  }

  .button-primary,
  .button-outline,
  .button-link {
    width: 100%;
    text-align: center;
    padding: 12px;
  }

  /* Adjust headings with dividers */
  .quote-section h2,
  .section h2 {
    font-size: 1.4rem;
  }
}
/* ===== MOBILE RESPONSIVE FIXES (PHONE SIZE) ===== */
@media (max-width: 768px) {

  /* Make header/logo fit better on mobile */
  .site-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px 15px;
  }

  .logo img {
    max-width: 150px;
    height: auto;
  }

  .site-header h1 {
    font-size: 1.4rem;
  }

  .tagline {
    font-size: 0.9rem;
  }

  /* Fix navigation spacing */
  .main-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
  }

  .main-nav a {
    font-size: 1rem;
    padding: 6px 10px;
  }

  /* Keep the hero (main headline) readable */
  .hero {
    padding: 30px 15px;
    text-align: center;
  }

  .hero h1 {
    font-size: 1.6rem;
    line-height: 1.3;
  }

  .hero p {
    font-size: 1rem;
  }

  /* Fix form fields on the quote page */
  form {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  form input,
  form textarea {
    width: 100%;
    font-size: 1rem;
    padding: 10px;
  }

  form input[type="submit"] {
    width: 100%;
    background: #005596;
    color: #fff;
    border: none;
    font-weight: bold;
    padding: 12px;
    border-radius: 6px;
  }

  /* Fix footer text */
  .site-footer {
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
  }

  /* Logo spacing for the top of mobile screen */
  .brand, .brand-text {
    text-align: center;
  }
}
