/* Template 28 - Industrial Warehouse / Raw Concrete */
@import url("https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@400;700;900&family=Bebas+Neue&display=swap");

:root {
  --gradient-1: linear-gradient(135deg, #4a4a4a 0%, #2c2c2c 100%);
  --gradient-2: linear-gradient(135deg, #6c6c6c 0%, #4a4a4a 100%);
  --gradient-3: linear-gradient(135deg, #8c8c8c 0%, #6c6c6c 100%);
  --gradient-4: linear-gradient(135deg, #3a3a3a 0%, #1a1a1a 100%);
  --gradient-5: linear-gradient(135deg, #5a5a5a 0%, #3a3a3a 100%);

  --bg-primary: #2a2a2a;
  --bg-secondary: #1a1a1a;
  --glass-bg: rgba(60, 60, 60, 0.8);
  --glass-border: rgba(100, 100, 100, 0.3);

  --text-primary: #e0e0e0;
  --text-secondary: #a0a0a0;
  --text-muted: #707070;
}

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

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

body {
  font-family: "Roboto Condensed", sans-serif;
  line-height: 1.5;
  color: var(--text-primary);
  background: var(--bg-primary);
  font-weight: 400;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(100, 100, 100, 0.03) 2px,
      rgba(100, 100, 100, 0.03) 4px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 2px,
      rgba(100, 100, 100, 0.03) 2px,
      rgba(100, 100, 100, 0.03) 4px
    );
  pointer-events: none;
  z-index: -1;
}

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

/* Header with Industrial Design */
.site-header {
  background: var(--glass-bg);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border-bottom: 3px solid #ff6600;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-logo a {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: #ff6600;
  text-decoration: none;
  transition: all 0.2s ease;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.site-logo a:hover {
  color: #ff8833;
  text-shadow: 0 0 20px rgba(255, 102, 0, 0.6);
}

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

.site-nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
  transition: all 0.2s ease;
  padding: 0.8rem 1.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-right: 1px solid rgba(100, 100, 100, 0.3);
}

.site-nav li:last-child a {
  border-right: none;
}

.site-nav a:hover {
  color: #ff6600;
  background: rgba(255, 102, 0, 0.1);
}

/* Hero Section */
.section.head {
  padding: 8rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.section.head h1 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 5rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  color: #e0e0e0;
  text-transform: uppercase;
  letter-spacing: 8px;
  text-shadow: 3px 3px 0 rgba(255, 102, 0, 0.3);
}

.section.head p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 1000px;
  margin: 0 auto;
  text-transform: uppercase;
  letter-spacing: 2px;
}

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

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

.section header h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 1rem;
  color: #ff6600;
  text-transform: uppercase;
  letter-spacing: 6px;
  position: relative;
}

.section header h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: #ff6600;
}

.section header p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Footer */
.footer {
  background: var(--bg-secondary);
  padding: 3rem 0 1rem;
  border-top: 3px solid #ff6600;
  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(--text-secondary);
  line-height: 1.7;
}

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

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links a:hover {
  color: #ff6600;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(100, 100, 100, 0.3);
}

.copyright a {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Animations */
@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  opacity: 0;
  animation: floatIn 0.6s 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.8rem;
  color: #ff6600;
  margin-top: 15px;
  margin-bottom: 10px;
  text-align: left;
  font-family: "Bebas Neue", sans-serif;
  text-transform: uppercase;
  letter-spacing: 3px;
}
