/* ============================================================
   DESIGN SYSTEM: "Industrial Utility" — Neo-Brutalist Service Design
   Company: TowReach Us
   Colors: Charcoal #1A1A1A, Orange #FF6B00, Cream #FFF8F0
   Fonts: Oswald (headings), DM Sans (body)
   Style: Thick borders, high contrast, highway-signage inspired
   ============================================================ */

/* ---- Reset & Base ---- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: #1A1A1A;
  background: #FFF8F0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.2;
  color: #1A1A1A;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.2rem; }

a {
  color: #FF6B00;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: #CC5500;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul { list-style: none; }

/* ---- Container ---- */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container { padding: 0 1.5rem; }
}
@media (min-width: 1024px) {
  .container { padding: 0 2rem; }
}

/* ---- Stripe Accent (caution tape) ---- */
.stripe-accent {
  background: repeating-linear-gradient(
    -45deg,
    #FF6B00,
    #FF6B00 10px,
    #1A1A1A 10px,
    #1A1A1A 20px
  );
  height: 8px;
  width: 100%;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  background: #1A1A1A;
  border-bottom: 4px solid #FF6B00;
  position: sticky;
  top: 0;
  z-index: 999;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.navbar-logo img {
  height: 44px;
  width: auto;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.navbar-links a {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.5rem 1rem;
  color: #FFF8F0;
  border-bottom: 3px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.navbar-links a:hover,
.navbar-links a.active {
  color: #FF6B00;
  border-bottom-color: #FF6B00;
}

.navbar-cta {
  margin-left: 1rem;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  color: #FFF8F0;
  font-size: 1.75rem;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  background: #1A1A1A;
  border-top: 3px solid #FF6B00;
  padding: 1rem;
}
.mobile-menu a {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.75rem 0;
  color: #FFF8F0;
  border-bottom: 1px solid #333;
}
.mobile-menu a:hover,
.mobile-menu a.active {
  color: #FF6B00;
}
.mobile-menu.open {
  display: block;
}

@media (max-width: 768px) {
  .navbar-links { display: none; }
  .navbar-cta { display: none; }
  .hamburger { display: block; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-block;
  background: #FF6B00;
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.875rem 2rem;
  border: 3px solid #1A1A1A;
  box-shadow: 4px 4px 0 #1A1A1A;
  transition: all 0.15s;
  cursor: pointer;
  text-decoration: none;
}
.btn-primary:hover {
  background: #CC5500;
  color: #fff;
  box-shadow: 2px 2px 0 #1A1A1A;
  transform: translate(2px, 2px);
}

.btn-secondary {
  display: inline-block;
  background: #1A1A1A;
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.875rem 2rem;
  border: 3px solid #1A1A1A;
  box-shadow: 4px 4px 0 #FF6B00;
  transition: all 0.15s;
  cursor: pointer;
  text-decoration: none;
}
.btn-secondary:hover {
  background: #333;
  color: #fff;
  box-shadow: 2px 2px 0 #FF6B00;
  transform: translate(2px, 2px);
}

.btn-small {
  padding: 0.5rem 1.25rem;
  font-size: 0.85rem;
}

/* ============================================================
   CARDS
   ============================================================ */
.card-brutal {
  background: #fff;
  border: 3px solid #1A1A1A;
  box-shadow: 6px 6px 0 #1A1A1A;
  padding: 1.5rem;
  transition: box-shadow 0.15s, transform 0.15s;
  color: #1A1A1A;
}
.card-brutal:hover {
  box-shadow: 3px 3px 0 #1A1A1A;
  transform: translate(3px, 3px);
}
.card-brutal h2,
.card-brutal h3,
.card-brutal h4,
.card-brutal h5 {
  color: #1A1A1A;
}
.card-brutal p,
.card-brutal li,
.card-brutal span,
.card-brutal td {
  color: #333;
}

/* ============================================================
   SECTION BANDS
   ============================================================ */
.band-dark {
  background: #1A1A1A;
  color: #FFF8F0;
}
.band-dark h2, .band-dark h3, .band-dark h4 {
  color: #FF6B00;
}

.band-cream {
  background: #FFF8F0;
  color: #1A1A1A;
}

.band-orange {
  background: #FF6B00;
  color: #fff;
}
.band-orange h2, .band-orange h3, .band-orange h4 {
  color: #1A1A1A;
}

.band-white {
  background: #fff;
  color: #1A1A1A;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(26,26,26,0.92) 0%, rgba(26,26,26,0.7) 50%, rgba(26,26,26,0.3) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  padding: 3rem 0;
}

.hero-content h1 {
  color: #FFF8F0;
  font-size: 3.25rem;
  margin-bottom: 0.5rem;
}

.hero-content h1 span {
  color: #FF6B00;
}

.hero-content p {
  color: #ccc;
  font-size: 1.15rem;
  margin-bottom: 2rem;
}

.hero-badges {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.hero-badge {
  background: rgba(255,107,0,0.15);
  border: 2px solid #FF6B00;
  color: #FF6B00;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  letter-spacing: 0.05em;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .hero { min-height: 70vh; }
  .hero-content h1 { font-size: 2.25rem; }
  .hero-bg::after {
    background: linear-gradient(to bottom, rgba(26,26,26,0.9) 0%, rgba(26,26,26,0.7) 100%);
  }
}

/* ============================================================
   FORM INPUTS
   ============================================================ */
.input-brutal {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 3px solid #1A1A1A;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.input-brutal:focus {
  outline: none;
  border-color: #FF6B00;
  box-shadow: 3px 3px 0 #FF6B00;
}

textarea.input-brutal {
  resize: vertical;
  min-height: 120px;
}

label {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  display: block;
  margin-bottom: 0.4rem;
  color: #1A1A1A;
}

/* ============================================================
   GRID LAYOUTS
   ============================================================ */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   SECTION SPACING
   ============================================================ */
.section {
  padding: 4rem 0;
}

.section-header {
  margin-bottom: 2.5rem;
}

.section-header h2 {
  margin-bottom: 0.75rem;
}

.section-header p {
  font-size: 1.1rem;
  color: #555;
  max-width: 700px;
}

.band-dark .section-header p {
  color: #bbb;
}

/* ============================================================
   STEP CIRCLES
   ============================================================ */
.step-circle {
  width: 64px;
  height: 64px;
  border: 3px solid #1A1A1A;
  background: #FF6B00;
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  flex-shrink: 0;
}

/* ============================================================
   PRICING BOX
   ============================================================ */
.pricing-box {
  background: #1A1A1A;
  border: 4px solid #FF6B00;
  padding: 2.5rem;
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
}

.pricing-box .price-main {
  font-family: 'Oswald', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: #FF6B00;
  margin-bottom: 0.25rem;
}

.pricing-box .price-sub {
  font-size: 1.25rem;
  color: #ccc;
  margin-bottom: 1.5rem;
}

.pricing-box .price-note {
  font-size: 0.9rem;
  color: #999;
}

/* ============================================================
   FLOATING CALL BUTTON
   ============================================================ */
.floating-call {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  background: #FF6B00;
  color: #fff;
  width: 60px;
  height: 60px;
  border: 3px solid #1A1A1A;
  box-shadow: 4px 4px 0 #1A1A1A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  z-index: 1000;
  transition: all 0.15s;
  text-decoration: none;
}
.floating-call:hover {
  background: #CC5500;
  color: #fff;
  box-shadow: 2px 2px 0 #1A1A1A;
  transform: translate(2px, 2px);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #1A1A1A;
  color: #FFF8F0;
  padding: 3rem 0 1.5rem;
}

.footer h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.25rem;
  color: #FF6B00;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.footer p, .footer a {
  font-size: 0.95rem;
  color: #ccc;
  line-height: 1.7;
}

.footer a:hover {
  color: #FF6B00;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-bottom {
  border-top: 2px solid #333;
  padding-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: #999;
}

/* ============================================================
   SCROLL ANIMATION
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   PAGE BANNER (for inner pages)
   ============================================================ */
.page-banner {
  background: #1A1A1A;
  padding: 3rem 0;
  text-align: left;
}

.page-banner h1 {
  color: #FF6B00;
  margin-bottom: 0.5rem;
}

.page-banner p {
  color: #ccc;
  font-size: 1.1rem;
}

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-content {
  padding: 3rem 0;
}

.legal-content h2 {
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 3px solid #FF6B00;
  display: inline-block;
}

.legal-content p {
  margin-bottom: 1rem;
  color: #333;
}

.legal-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-content ul li {
  margin-bottom: 0.5rem;
  color: #333;
}

/* ============================================================
   MISC UTILITIES
   ============================================================ */
.text-orange { color: #FF6B00; }
.text-white { color: #fff; }
.text-cream { color: #FFF8F0; }
.text-muted { color: #777; }
.bg-orange { background: #FF6B00; }
.bg-dark { background: #1A1A1A; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-2 { margin-top: 1rem; }
.mt-4 { margin-top: 2rem; }
.text-center { text-align: center; }
.inline-block { display: inline-block; }

/* ============================================================
   FORM GROUP (Contact page)
   ============================================================ */
.form-group {
  margin-bottom: 1.25rem;
}
.form-group label {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  display: block;
  margin-bottom: 0.4rem;
  color: #1A1A1A;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 3px solid #1A1A1A;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  color: #1A1A1A;
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #FF6B00;
  box-shadow: 3px 3px 0 #FF6B00;
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* ============================================================
   RESPONSIVE GRID FIX for inline style grids
   ============================================================ */
@media (max-width: 768px) {
  div[style*="grid-template-columns: 1fr 1fr"],
  div[style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
}
