/* =========================
   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;
}

/* =========================
   PAGE TITLE
========================= */
.transform-title {
  padding: 40px 20px 20px;
  text-align: center;
}

.transform-title h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 40px;
  margin: 0;
}

.transform-title .grey {
  color: #333;
}

.transform-title .orange {
  color: #cc5500;
}

/* =========================
   TRANSFORMATION GRID
========================= */
.transform-grid {
  display: grid;
  grid-template-columns: 1fr 1fr; /* 2 columns on mobile */
  gap: 12px;
  padding: 10px 16px 40px;
}

.transform-grid img {
  width: 100%;
  height: 150px; /* fixed height for consistent sizing */
  object-fit: cover; /* crop images without distortion */
  border-radius: 6px;
  display: block;
}



/* =========================
   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;
}