/* ===========================
   CHICAGO REMOVAL COMPANY CSS
   Updated Color Scheme - Red, White, Blue
   =========================== */

/* CSS Variables */
:root {
  /* Primary Colors - Blue (from logo) */
  --primary: #003d7a;
  --primary-light: #0052a3;
  --primary-dark: #002952;
  
  /* Secondary Colors - Red (from logo) */
  --secondary: #e31e24;
  --secondary-dark: #c41e24;
  --secondary-light: #ff2b31;
  
  /* Accent - Chicago flag blue */
  --accent-blue: #b3ddf2;
  
  /* Neutral Colors */
  --background: #ffffff;
  --foreground: #0d1829;
  --muted: #f0f4f8;
  --muted-foreground: #64748b;
  --border: #d1dce5;
  --white: #ffffff;
  --black: #000000;
  
  --font-sans: 'Inter', sans-serif;
  --font-heading: 'Oswald', sans-serif;
}

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

body {
  font-family: var(--font-sans);
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
}

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

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

/* Navigation */
.nav {
  background-color: var(--primary);
  border-bottom: 2px solid var(--secondary);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
}

.logo img {
  background: transparent !important;
  mix-blend-mode: screen;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-weight: 500;
  color: var(--white);
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--accent-blue);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--white);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem 0;
}

.mobile-menu a {
  padding: 0.5rem 0;
  color: var(--white);
  font-weight: 500;
}

.mobile-menu.hidden {
  display: none;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 0.5rem;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
  font-size: 0.875rem;
  letter-spacing: 0.5px;
}

.btn-primary {
  background-color: var(--secondary);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--secondary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(227, 30, 36, 0.4);
}

.btn-secondary {
  background-color: var(--secondary);
  color: var(--white);
}

.btn-secondary:hover {
  background-color: var(--secondary-dark);
  transform: scale(1.05);
}

.btn-outline {
  background-color: var(--white);
  color: var(--primary);
  border: 2px solid var(--white);
  font-weight: 700;
}

.btn-outline:hover {
  background-color: var(--primary);
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline-white {
  background-color: rgba(255,255,255,0.1);
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
  backdrop-filter: blur(10px);
}

.btn-outline-white:hover {
  background-color: var(--white);
  color: var(--primary);
}

.btn-large {
  padding: 1rem 2.5rem;
  font-size: 1rem;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background-color: var(--primary-dark);
  background-image: url('assets/images/professional_junk_removal_truck_in_chicago_city_street.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--white);
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 61, 122, 0.95) 0%, rgba(0, 41, 82, 0.85) 50%, rgba(227, 30, 36, 0.15) 100%);
  z-index: 1;
}

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

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: rgba(227, 30, 36, 0.2);
  border: 1px solid rgba(227, 30, 36, 0.5);
  border-radius: 50px;
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 0.9;
}

.text-secondary {
  color: var(--secondary);
}

.hero-subtitle {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 2.5rem;
  max-width: 600px;
  font-weight: 500;
  line-height: 1.6;
}

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

/* Stats Bar */
.stats-bar {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  padding: 2rem 0;
  border-bottom: 3px solid var(--secondary);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--white);
}

.stat-item svg {
  color: var(--secondary);
  flex-shrink: 0;
}

.stat-title {
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.25rem;
  line-height: 1;
}

.stat-subtitle {
  font-size: 0.75rem;
  color: var(--accent-blue);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Services Section */
.services-section {
  padding: 6rem 0;
  background-color: #f8fafc;
  border-top: 3px solid var(--secondary);
  border-bottom: 1px solid var(--border);
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4rem;
  flex-wrap: wrap;
  gap: 2rem;
}

.section-title {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 600px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

.service-card {
  background-color: var(--white);
  padding: 2.5rem;
  border-radius: 1rem;
  border: 2px solid var(--border);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: all 0.5s;
  display: block;
}

.service-card:hover {
  box-shadow: 0 20px 40px rgba(227, 30, 36, 0.15);
  transform: translateY(-8px);
  border-color: var(--secondary);
}

.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  transition: all 0.5s;
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
  transform: rotate(6deg) scale(1.1);
}

.service-icon svg {
  color: var(--white);
  transition: color 0.5s;
}

.service-title {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.service-card:hover .service-title {
  color: var(--secondary);
}

.service-description {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.service-link {
  color: var(--secondary);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s;
}

.service-card:hover .service-link {
  color: var(--primary);
}

/* CTA Section */
.cta-section {
  padding: 5rem 0;
}

.cta-card {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 50%, var(--primary-dark) 100%);
  border-radius: 1.5rem;
  padding: 5rem 2rem;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
  border: 3px solid var(--secondary);
}

.cta-card::before,
.cta-card::after {
  content: '';
  position: absolute;
  width: 256px;
  height: 256px;
  background-color: rgba(227, 30, 36, 0.15);
  border-radius: 50%;
  filter: blur(80px);
}

.cta-card::before {
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
}

.cta-card::after {
  bottom: 0;
  right: 0;
  transform: translate(50%, 50%);
  background-color: rgba(179, 221, 242, 0.2);
}

.cta-title {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 10;
}

.cta-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  position: relative;
  z-index: 10;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  position: relative;
  z-index: 10;
}

/* Footer */
.footer {
  background: linear-gradient(180deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: var(--white);
  padding: 4rem 0;
  border-top: 3px solid var(--secondary);
}

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

.footer-col {
  /* Column styles */
}

.footer-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--white);
}

.footer-text {
  color: var(--accent-blue);
  line-height: 1.6;
}

.footer-heading {
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: var(--white);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: var(--accent-blue);
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--secondary);
}

.footer-bottom {
  border-top: 1px solid rgba(179, 221, 242, 0.2);
  padding-top: 2rem;
  text-align: center;
  color: var(--accent-blue);
}

/* Page Header */
.page-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid var(--secondary);
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background-color: rgba(227, 30, 36, 0.1);
  border-radius: 50%;
  filter: blur(100px);
}

.page-header-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
}

.page-header h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.page-header p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.95);
  max-width: 600px;
}

/* Content Section */
.content-section {
  padding: 4rem 0;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  align-items: start;
}

.content-box {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 0.75rem;
  border: 2px solid var(--border);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: all 0.3s;
}

.content-box:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 20px rgba(0, 61, 122, 0.15);
}

.content-box h3 {
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.content-box svg {
  color: var(--secondary);
}

.checklist {
  list-style: none;
}

.checklist li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  color: var(--foreground);
}

.checklist svg {
  color: var(--secondary);
  flex-shrink: 0;
}

/* Form Styles */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  color: var(--primary);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--border);
  border-radius: 0.5rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  transition: all 0.3s;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 61, 122, 0.1);
}

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

/* Contact Info Cards */
.contact-info-card {
  background-color: var(--white);
  border-radius: 0.75rem;
  border: 2px solid var(--border);
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: all 0.3s;
}

.contact-info-card:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 20px rgba(0, 61, 122, 0.15);
}

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  color: var(--white);
}

.contact-details h3 {
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
  color: var(--primary);
}

.contact-details p {
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

.contact-details a {
  color: var(--primary);
  font-weight: 700;
  font-size: 1.5rem;
  transition: color 0.3s;
}

.contact-details a:hover {
  color: var(--secondary);
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-6 { margin-bottom: 3rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.hidden {
  display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .mobile-menu {
    display: flex;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.125rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .cta-title {
    font-size: 2rem;
  }
  
  .page-header h1 {
    font-size: 2.5rem;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-buttons,
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .btn {
    width: 100%;
    justify-content: center;
  }
}
