/*/* ========================================
   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; }

.tagline .highlight {
    color: #ff7a00; /* orange */
}


/* HEADER STYLING */
header {
    background-color: #333;
    padding: 15px 40px;
}

.header-container {
    display: flex;
    justify-content: space-between; /* keeps nav on right, logo/text on left */
    align-items: center;
    max-width: 1600px;
    margin: 0 auto;
}

/* Logo + Company Info */
.logo-area {
    display: flex;
    align-items: center;
    gap: 10px; /* reduce gap slightly if needed */
    margin-left: 0; /* ensures flush to left */
}

.logo-area img {
    height: 70px;
    width: auto;
    display: block; /* remove inline spacing issues */
}

/* Company text next to logo */
.header-text {
    display: flex;
    flex-direction: column;
}

.header-text .company-name {
    font-family: 'Bebas Neue', sans-serif;
    color: #cc5500;
    font-size: 22px;
    font-weight: 400;
}

.header-text .tagline {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
}

.header-text .tagline .highlight {
    color: #ff7a00;
}

/* NAVIGATION */
nav {
    display: flex;
    gap: 15px;
    align-items: center;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #ff7a00;
}

nav .quote-button-header {
    background-color: #cc5500;
    color: #fff;
    padding: 10px 25px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

nav .quote-button-header:hover {
    background-color: #e67333;
}



/* ================================
   quote-desktop.css
   ================================ */

.quote-title {
    text-align: center;   /* center the heading */
    width: 100%;
}

.quote-title h1 {
    display: inline-flex;        
    justify-content: center;      
    align-items: center;          
    font-family: 'Bebas Neue', sans-serif;
    font-size: 60px;              
    font-weight: 700;
    margin-top: 150px;
    margin-bottom: 50px;
    white-space: nowrap;          
}

.quote-title .quote-text {
    color: #333;
}

.quote-title .tool-text {
    color: #cc5500;
    margin-left: 50px;  /* spacing between Quote and Tool */
}

/* Form Container */
.quote-form-container {
    max-width: 800px;
    margin: 0 auto 80px;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.quote-form label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    margin-bottom: 8px;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    margin-bottom: 20px;
}

.quote-form button {
    background: #cc5500;
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 18px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: 0.2s ease;
}

.quote-form button:hover {
    background: #a54500;
}

/* Form Row Two Columns */
.form-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.form-group-half {
    flex: 1 1 calc(50% - 10px);
}


/* ========================================
   QUOTE HERO
======================================== */
.quote-hero {
  padding: 80px 40px;
  background: #00264d;
  box-sizing: border-box;
}

.quote-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 40px;
}
.quote-text {
    width: 40%; /* reduced from 80% to 50% */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
	padding-left: 40px;
}

.quote-image {
    width: 60%; /* reduced from 80% to 50% */
    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: 60px;
  margin: 10px 0;
  color: #cc5500;
}

.quote-description {
  font-size: 15px;
  margin-bottom: 20px;
  max-width: 400px;
  color: #fff;
}

/* Quote Hero Button Styling */
.quote-text .quote-button {
    align-self: center;      /* centers button horizontally */
    background-color: #cc5500;
    color: #fff;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    border: 2px solid #cc5500;
    transition: 0.3s ease;
    display: inline-block;
}

.quote-text .quote-button:hover {
    background-color: #e67333;
    border-color: #e67333;
    color: #fff;
}

.quote-image img {
  width: 85%;
  border: 4px solid #cc5500;
  border-radius: 8px;
}


/* ========================================
   FOOTER
======================================== */
#site-footer {
  background: #333;
  color: #fff;
  padding: 60px 40px 30px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

.footer-col {
  flex: 1 1 200px;
  min-width: 200px;
}

#site-footer h4 {
  font-family: 'Bebas Neue', sans-serif;
  color: #cc5500;
  font-size: 20px;
  margin-bottom: 15px;
  letter-spacing: 1.5px;
  font-weight: 700;
  text-transform: uppercase;
}

#site-footer p,
#site-footer li {
  font-size: 13px;
  margin: 5px 0;
  line-height: 1.6;
}

.footer-col ul {
  list-style: none;
  padding-left: 0;
}

.footer-col a {
  color: #fff;
  text-decoration: none;
}

.footer-col a:hover {
  color: #cc5500;
}

.footer-bottom {
  border-top: 1px solid #444;
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
  font-size: 14px;
  color: #aaa;
}
