/* Template 29 - Charcoal Industrial / Urban Edge */
@import url("https://fonts.googleapis.com/css2?family=Barlow:wght@400;500;600;700;800&family=Teko:wght@500;600;700&display=swap");

:root {
  --charcoal: #1a1a1a;
  --charcoal-light: #2d2d2d;
  --orange-hot: #ff6b35;
  --orange-light: #ff8f66;
  --steel: #7c8a92;
  --steel-light: #a8b5be;
  --white: #f5f5f5;
  --yellow-accent: #ffc857;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: "Barlow", sans-serif;
  line-height: 1.6;
  color: var(--white);
  background: var(--charcoal);
  font-weight: 400;
  overflow-x: hidden;
  background-image: 
    linear-gradient(90deg, rgba(255, 107, 53, 0.03) 1px, transparent 1px),
    linear-gradient(rgba(255, 107, 53, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Header - Industrial Side Bar Style */
.site-header {
  background: var(--charcoal-light);
  border-bottom: 3px solid var(--orange-hot);
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.header-inner {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 4rem;
}

.site-logo a {
  font-family: "Teko", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--orange-hot);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.3s ease;
  display: inline-block;
  border-left: 4px solid var(--orange-hot);
  padding-left: 1rem;
}

.site-logo a:hover {
  color: var(--yellow-accent);
  border-left-color: var(--yellow-accent);
  transform: translateX(5px);
}

.site-nav ul {
  list-style: none;
  display: flex;
  gap: 0;
  align-items: center;
}

.site-nav a {
  color: var(--steel-light);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  padding: 0.8rem 1.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.95rem;
  position: relative;
}

.site-nav a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--orange-hot);
  transition: height 0.3s ease;
}

.site-nav a:hover {
  color: var(--orange-hot);
}

.site-nav a:hover::before {
  height: 100%;
}

/* Hero Section - Bold Left Aligned */
.section.head {
  padding: 7rem 0;
  text-align: left;
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal-light) 100%);
  border-bottom: 2px solid var(--orange-hot);
}

.section.head h1 {
  font-family: "Teko", sans-serif;
  font-size: 5.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 3px;
  line-height: 1.1;
  animation: slideInLeft 0.8s ease;
  border-left: 6px solid var(--orange-hot);
  padding-left: 1.5rem;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.section.head p {
  font-size: 1.2rem;
  color: var(--steel-light);
  max-width: 800px;
  padding-left: 2rem;
}

/* Section Styling */
.section {
  padding: 5rem 0;
}

.section header {
  text-align: left;
  margin-bottom: 4rem;
}

.section header h2 {
  font-family: "Teko", sans-serif;
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--orange-hot);
  text-transform: uppercase;
  letter-spacing: 2px;
  border-left: 6px solid var(--orange-hot);
  padding-left: 1.5rem;
}

.section header p {
  font-size: 1.1rem;
  color: var(--steel-light);
  max-width: 700px;
  padding-left: 2rem;
}

/* Footer - Dark Industrial */
.footer {
  background: var(--charcoal-light);
  padding: 3rem 0 1rem;
  border-top: 3px solid var(--orange-hot);
  margin-top: 5rem;
}

.footer-columns {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.footer-about {
  flex: 1;
  max-width: 400px;
}

.footer-tagline {
  color: var(--steel);
  line-height: 1.8;
}

.footer-links ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--steel-light);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--orange-hot);
  transform: translateX(5px);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 107, 53, 0.2);
}

.copyright a {
  color: var(--steel);
  font-size: 0.95rem;
}

/* Animations */
@keyframes slideRight {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.fade-in {
  opacity: 0;
  animation: slideRight 0.8s ease forwards;
}

.fade-in:nth-child(1) { animation-delay: 0.1s; }
.fade-in:nth-child(2) { animation-delay: 0.2s; }
.fade-in:nth-child(3) { animation-delay: 0.3s; }

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

body:not(.faq) h3,
:not(section.faq) h3 {
  font-size: 1.9rem;
  color: var(--orange-hot);
  margin-top: 15px;
  margin-bottom: 10px;
  text-align: left;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}
