/* Red Rock Dumpster Rental - Red Rock Dumpster Rental - Teal & High-Vis Industrial Theme */
:root {
  --primary: #b91c1c;
  --primary-dark: #991b1b;
  --primary-light: #ef4444;
  --accent: #d97706;
  --accent-dark: #b45309;
  --accent-light: #f59e0b;
  --text: #0f172a;
  --text-muted: #475569;
  --bg: #ffffff;
  --surface: #f8fafc;
  --surface-alt: #fef2f2;
  --border: #e2e8f0;
  --border-focus: #b91c1c;
  --radius: 10px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.08), 0 2px 4px -1px rgba(0,0,0,0.04);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -2px rgba(0,0,0,0.03);
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font);
  color: var(--text);
  background-color: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 70px;
}

@media (min-width: 769px) {
  body {
    padding-bottom: 0;
  }
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--primary-dark);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Top Notification Bar */
.top-bar {
  background-color: #0f172a;
  color: #e2e8f0;
  font-size: 0.85rem;
  padding: 8px 0;
  border-bottom: 1px solid #1e293b;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.top-info {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.top-info-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Site Header */
.site-header {
  background-color: #ffffff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 76px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.5px;
}

.brand-logo svg {
  width: 34px !important;
  height: 34px !important;
  max-width: 34px;
  max-height: 34px;
  fill: var(--primary);
  flex-shrink: 0;
}

.nav-menu {
  display: none;
  list-style: none;
  gap: 28px;
  align-items: center;
}

@media (min-width: 900px) {
  .nav-menu {
    display: flex;
  }
}

.nav-link {
  font-weight: 600;
  color: var(--text);
  font-size: 0.95rem;
  padding: 8px 0;
  position: relative;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary);
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--primary);
  border-radius: 2px;
}

.header-cta {
  display: none;
  align-items: center;
  gap: 14px;
}

@media (min-width: 900px) {
  .header-cta {
    display: flex;
  }
}

.header-phone-box {
  text-align: right;
}

.header-phone-box .subtext {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 700;
}

.header-phone-box .phonenum {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary);
}

.mobile-toggle {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--text);
}

@media (min-width: 900px) {
  .mobile-toggle {
    display: none;
  }
}

.mobile-nav-panel {
  display: none;
  position: absolute;
  top: 76px;
  left: 0;
  width: 100%;
  background: #ffffff;
  border-bottom: 2px solid var(--border);
  box-shadow: var(--shadow-lg);
  padding: 16px 0;
  z-index: 999;
}

.mobile-nav-panel.open {
  display: block;
}

.mobile-nav-panel ul {
  list-style: none;
}

.mobile-nav-panel li a {
  display: block;
  padding: 14px 24px;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  border-bottom: 1px solid #f1f5f9;
}

.mobile-nav-panel li a:hover {
  background-color: var(--surface);
  color: var(--primary);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #052e16 0%, #15803d 100%);
  color: #ffffff;
  padding: 56px 0 64px;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 992px) {
  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #bbf7d0;
  margin-bottom: 18px;
  backdrop-filter: blur(4px);
}

.hero h1 {
  font-size: 2.2rem;
  line-height: 1.2;
  font-weight: 800;
  margin-bottom: 20px;
  color: #ffffff;
}

@media (min-width: 768px) {
  .hero h1 {
    font-size: 2.85rem;
  }
}

.hero-lead {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #dcfce7;
  margin-bottom: 28px;
  max-width: 620px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  padding: 14px 26px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  min-height: 48px;
  font-size: 1rem;
  border: none;
}

.btn-primary {
  background-color: var(--accent);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(234, 88, 12, 0.35);
}

.btn-primary:hover {
  background-color: var(--accent-dark);
  color: #ffffff;
  transform: translateY(-1px);
}

.btn-secondary {
  background-color: #ffffff;
  color: var(--primary-dark);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
  background-color: #f8fafc;
  color: var(--primary-dark);
}

.btn-outline {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
  color: #ffffff;
}

.hero-trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #e2e8f0;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-trust-item svg {
  width: 18px !important;
  height: 18px !important;
  max-width: 18px;
  max-height: 18px;
  color: #4ade80;
  fill: currentColor;
  flex-shrink: 0;
}

/* Quote Card Component */
.quote-card {
  background: #ffffff;
  color: var(--text);
  border-radius: 12px;
  padding: 28px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.quote-card h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
  color: var(--primary);
}

.quote-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 16px;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text);
}

.form-select, .form-input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 6px;
  border: 1px solid var(--border);
  font-size: 0.95rem;
  background-color: #ffffff;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s ease;
}

.form-select:focus, .form-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(21, 128, 61, 0.15);
}

/* Sections */
.section {
  padding: 64px 0;
}

.section-alt {
  background-color: var(--surface);
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 48px;
}

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--primary);
  letter-spacing: 1px;
  margin-bottom: 10px;
  background: rgba(21, 128, 61, 0.1);
  padding: 4px 12px;
  border-radius: 20px;
}

.section-header h2 {
  font-size: 2.1rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 16px;
  color: var(--text);
}

.section-header p {
  font-size: 1.05rem;
  color: var(--text-muted);
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: var(--shadow-sm);
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: #cbd5e1;
}

.feature-icon-wrapper {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background-color: rgba(21, 128, 61, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Dumpster Fleet Cards */
.dumpster-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

@media (min-width: 768px) {
  .dumpster-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .dumpster-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.dumpster-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.dumpster-card.featured {
  border: 2px solid var(--primary);
  box-shadow: var(--shadow-md);
}

.dumpster-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 14px;
}

.dumpster-size {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text);
}

.dumpster-tag {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  background: #f1f5f9;
  color: var(--text-muted);
}

.dumpster-dim {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 12px;
}

.dumpster-price {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text);
  margin: 14px 0;
}

.dumpster-price .period {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
}

.dumpster-specs {
  list-style: none;
  margin-bottom: 24px;
  flex-grow: 1;
}

.dumpster-specs li {
  font-size: 0.9rem;
  color: var(--text-muted);
  padding: 6px 0;
  border-bottom: 1px solid #f1f5f9;
}

/* Service Areas Grid */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

@media (min-width: 768px) {
  .areas-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.area-pill {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px 16px;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
}

/* FAQ Accordion */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 14px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  text-align: left;
  background: none;
  border: none;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  padding: 0 24px 20px;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  display: none;
}

.faq-item.open .faq-answer {
  display: block;
}

/* Contact Page Layout */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}

@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

.contact-form-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}

/* Page Banner */
.page-banner {
  background: linear-gradient(135deg, #052e16 0%, #15803d 100%);
  color: #ffffff;
  padding: 48px 0;
  text-align: center;
}

.page-banner h1 {
  font-size: 2.3rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: #ffffff;
}

.page-banner p {
  color: #dcfce7;
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Site Footer */
.site-footer {
  background-color: #0f172a;
  color: #94a3b8;
  padding: 60px 0 24px;
  font-size: 0.95rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  margin-bottom: 48px;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  }
}

.footer-col h4 {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #94a3b8;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
}

.footer-contact-item svg {
  width: 18px !important;
  height: 18px !important;
  max-width: 18px;
  max-height: 18px;
  color: var(--primary-light);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid #1e293b;
  text-align: center;
  font-size: 0.85rem;
  color: #64748b;
}

/* Mobile Sticky Call Bar (< 768px) */
.mobile-call-bar {
  display: block;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #ffffff;
  border-top: 1px solid var(--border);
  padding: 10px 16px;
  box-shadow: 0 -4px 10px rgba(0,0,0,0.06);
  z-index: 9999;
}

@media (min-width: 769px) {
  .mobile-call-bar {
    display: none;
  }
}

.mobile-call-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: var(--accent);
  color: #ffffff !important;
  font-weight: 800;
  font-size: 1.05rem;
  border-radius: 8px;
  height: 50px;
  width: 100%;
  box-shadow: 0 2px 8px rgba(234, 88, 12, 0.4);
}

.mobile-call-btn svg {
  width: 20px !important;
  height: 20px !important;
  max-width: 20px;
  max-height: 20px;
  fill: currentColor;
  flex-shrink: 0;
}
