/* ========================================
   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;
}



/* ================================
   PAGE TITLE
================================ */
.transform-title {
    padding: 80px 40px 20px;
    text-align: center; /* centered title */
}

.transform-title h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 60px;
    letter-spacing: 1px;
    margin: 0;
}
}

.transform-title .grey {
  color: #333;
}

.transform-title .orange {
  color: #cc5500;
}

/* ========================================
   TRANSFORMATION GRID
======================================== */
.transform-grid {
  padding: 20px 40px 80px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: 1400px;
  margin: 0 auto;
}

.transform-grid img {
  width: 100%;
  height: 250px;      /* All images same height */
  object-fit: cover;  /* Crop without distortion */
  border-radius: 6px;
  display: block;
}

/* ========================================
   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%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  padding-left: 40px;
}

.quote-image {
  width: 60%;
  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-text .quote-button {
  align-self: center;
  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;
}
