/* Unlimited Junk - Main Stylesheet */

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

:root {
  --primary-red: #ED1C24;
  --primary-red-dark: #c41920;
  --white: #FFFFFF;
  --dark-text: #222222;
  --light-gray: #F5F5F5;
  --medium-gray: #666666;
  --border-gray: #dddddd;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--dark-text);
  background-color: var(--white);
}

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

a {
  color: var(--primary-red);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Typography */
h1, h2, h3, h4 {
  line-height: 1.2;
  margin-bottom: 0.5em;
  letter-spacing: -0.02em;
}

h1 {
  font-size: 2.5rem;
  font-weight: 800;
}
h2 {
  font-size: 1.75rem;
  font-weight: 700;
}
h3 {
  font-size: 1.25rem;
  font-weight: 600;
}

p { margin-bottom: 1em; }

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

.section {
  padding: 4rem 0;
}

.section--gray {
  background-color: var(--light-gray);
}

/* Header */
.header {
  background-color: var(--white);
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.header__logo img {
  height: 50px;
  width: auto;
}

.nav {
  display: none;
}

.nav--open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  padding: 1rem;
}

.nav__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.nav__link {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--dark-text);
  font-weight: 500;
  border-bottom: 1px solid var(--border-gray);
}

.nav__link:hover {
  color: var(--primary-red);
  text-decoration: none;
}

.nav__link--active {
  color: var(--primary-red);
}

/* Hamburger Menu */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  min-width: 48px;
  min-height: 48px;
  justify-content: center;
  align-items: center;
}

.hamburger__line {
  width: 24px;
  height: 3px;
  background-color: var(--dark-text);
  border-radius: 2px;
  transition: transform 0.3s;
}

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-dark) 100%);
  color: var(--white);
  padding: 3rem 1rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.hero__subtitle {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  opacity: 0.95;
}

.hero__ctas {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 300px;
  margin: 0 auto;
  align-items: center;
  justify-content: center;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
  min-height: 48px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  text-decoration: none;
}

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

.btn--primary:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

.btn--secondary {
  background-color: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  box-shadow: none;
}

.btn--secondary:hover {
  background-color: rgba(255,255,255,0.15);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

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

.btn--red:hover {
  background-color: var(--primary-red-dark);
  border-color: var(--primary-red-dark);
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

/* Service Cards */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.service-card {
  background: var(--white);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.service-card__icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.service-card h3 {
  margin-bottom: 0.5rem;
}

.service-card p {
  color: var(--medium-gray);
  font-size: 0.95rem;
  margin-bottom: 0;
}

.service-card a {
  color: inherit;
}

.service-card a:hover {
  text-decoration: none;
}

/* Service Area */
.service-area {
  text-align: center;
  padding: 3rem 1rem;
  background: var(--light-gray);
}

.service-area p {
  color: var(--medium-gray);
  max-width: 600px;
  margin: 0 auto;
}

/* Trust Signals */
.trust-signals {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  padding: 2.5rem 1rem;
  background: var(--light-gray);
  border-top: 1px solid var(--border-gray);
  border-bottom: 1px solid var(--border-gray);
}

.trust-item {
  text-align: center;
  padding: 1.75rem 2.25rem;
  background: var(--white);
  border-radius: 10px;
  border: 1px solid var(--border-gray);
  box-shadow: 0 3px 12px rgba(0,0,0,0.08);
  min-width: 150px;
  width: 100%;
  max-width: 280px;
}

.trust-item__value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-red);
  margin-bottom: 0.35rem;
  letter-spacing: -0.02em;
}

.trust-item__label {
  font-size: 0.9rem;
  color: var(--medium-gray);
  font-weight: 600;
}

/* Footer */
.footer {
  background-color: var(--dark-text);
  color: var(--white);
  padding: 2rem 1rem;
  text-align: center;
}

.footer a {
  color: var(--white);
}

.footer__contact {
  margin-bottom: 1rem;
}

.footer__contact a {
  display: block;
  padding: 0.25rem 0;
}

.footer__address {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-bottom: 1rem;
}

.footer__copyright {
  font-size: 0.85rem;
  opacity: 0.6;
  margin-top: 1.5rem;
}

/* Page Header */
.page-header {
  background: var(--primary-red);
  color: var(--white);
  padding: 2rem 1rem;
  text-align: center;
}

.page-header h1 {
  margin-bottom: 0;
}

/* Content Sections */
.content-section {
  padding: 2rem 1rem;
}

.content-section h2 {
  color: var(--primary-red);
  margin-bottom: 1rem;
  padding-top: 1rem;
}

.content-section ul {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.content-section li {
  margin-bottom: 0.5rem;
}

/* Service Detail */
.service-detail {
  padding: 2rem 0;
  border-bottom: 1px solid var(--border-gray);
}

.service-detail:last-child {
  border-bottom: none;
}

.service-detail h2 {
  color: var(--primary-red);
}

.service-detail__cta {
  margin-top: 1.5rem;
}

/* Before/After */
.before-after {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 1.5rem 0;
}

.before-after__item {
  position: relative;
}

.before-after__item img {
  border-radius: 8px;
  width: 100%;
}

.before-after__label {
  position: absolute;
  bottom: 0.5rem;
  left: 0.5rem;
  background: rgba(0,0,0,0.7);
  color: var(--white);
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 600;
}

/* FAQ */
.faq-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border-gray);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item h3 {
  color: var(--dark-text);
  margin-bottom: 0.5rem;
}

.faq-item p {
  color: var(--medium-gray);
  margin-bottom: 0;
}

/* Contact Info */
.contact-info {
  text-align: center;
  padding: 2rem 1rem;
}

.contact-info__item {
  margin-bottom: 1.5rem;
}

.contact-info__label {
  font-size: 0.9rem;
  color: var(--medium-gray);
  margin-bottom: 0.25rem;
}

.contact-info__value {
  font-size: 1.25rem;
  font-weight: 600;
}

.contact-info__value a {
  color: var(--primary-red);
}

/* Map placeholder */
.map-container {
  margin-top: 2rem;
  border-radius: 8px;
  overflow: hidden;
}

.map-container iframe {
  width: 100%;
  height: 300px;
  border: none;
}

/* About Grid */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

.about-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.about-image img {
  width: 100%;
  height: auto;
}

/* Service Area Grid */
.service-area-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 1.5rem;
}

.service-area-column h3 {
  color: var(--primary-red);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--primary-red);
}

.service-area-column ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.service-area-column li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-gray);
}

.service-area-column li:last-child {
  border-bottom: none;
}

/* Lists */
.two-col-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
}

.two-col-list li {
  margin-bottom: 0.25rem;
}

/* Pricing Note */
.pricing-note {
  background: var(--light-gray);
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
  margin-top: 2rem;
}

.pricing-note p {
  margin-bottom: 0;
  font-weight: 500;
}

/* CTA Section */
.cta-section {
  background: var(--primary-red);
  color: var(--white);
  padding: 4rem 1rem;
  text-align: center;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-section .hero__ctas {
  margin-top: 1.5rem;
}

/* CTA Helper Text */
.cta-helper {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.8);
  margin-top: 1rem;
  font-weight: 400;
}

.cta-helper--dark {
  color: var(--medium-gray);
}

/* About Page Profile Image */
.about-image--profile img {
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* Environmental Section */
.environmental-section {
  padding: 3rem 1rem;
  background: var(--white);
}

.environmental-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

.environmental-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.environmental-image img {
  width: 100%;
  height: auto;
}

/* Testimonials */
.testimonials {
  background-color: var(--light-gray);
  padding: 4rem 1rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--white);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  text-align: center;
}

.testimonial-stars {
  color: var(--primary-red);
  font-size: 1.25rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.testimonial-quote {
  font-style: italic;
  color: var(--dark-text);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0 0 1rem 0;
}

.testimonial-author {
  display: block;
  font-style: normal;
  font-size: 0.9rem;
  color: var(--medium-gray);
  font-weight: 500;
}

/* Mobile Styles */
@media (max-width: 767px) {
  .container {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .trust-signals {
    flex-direction: column;
    align-items: center;
  }
}

/* Desktop Styles */
@media (min-width: 768px) {
  body {
    font-size: 18px;
  }

  h1 { font-size: 3.5rem; }
  h2 { font-size: 2.25rem; }
  h3 { font-size: 1.5rem; }

  .hamburger {
    display: none;
  }

  .nav {
    display: flex;
  }

  .nav__list {
    flex-direction: row;
    gap: 0.5rem;
  }

  .nav__link {
    border-bottom: none;
    padding: 0.5rem 1rem;
  }

  .hero {
    padding: 7rem 2rem;
    background: linear-gradient(135deg, rgba(237, 28, 36, 0.88) 0%, rgba(196, 25, 32, 0.88) 100%),
                url('/images/full-trailer-uj.png') center 70%/cover no-repeat;
  }

  .hero h1 {
    font-size: 4rem;
  }

  .hero__subtitle {
    font-size: 1.5rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2rem;
  }

  .hero__ctas {
    flex-direction: row;
    max-width: 500px;
    gap: 1.5rem;
  }

  .section {
    padding: 6rem 0;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 3rem;
  }

  .service-card {
    padding: 2.5rem 2rem;
  }

  .service-card__icon {
    font-size: 3rem;
  }

  .service-card h3 {
    font-size: 1.35rem;
  }

  .service-card p {
    font-size: 1rem;
  }

  .service-area {
    padding: 5rem 1rem;
  }

  .trust-signals {
    padding: 4rem 2rem;
    gap: 2.5rem;
  }

  .trust-item {
    padding: 2.25rem 3rem;
    min-width: 200px;
  }

  .trust-item__value {
    font-size: 2.5rem;
  }

  .trust-item__label {
    font-size: 1rem;
  }

  .cta-section {
    padding: 6rem 2rem;
  }

  .cta-section h2 {
    font-size: 2.5rem;
  }

  .before-after {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .about-grid {
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
  }

  .about-image {
    min-width: 350px;
    max-width: 450px;
  }

  .environmental-section {
    padding: 5rem 2rem;
  }

  .environmental-grid {
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
  }

  .environmental-image {
    max-width: 500px;
  }

  .service-area-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }

  .two-col-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-info {
    display: flex;
    justify-content: center;
    gap: 5rem;
    flex-wrap: wrap;
  }

  .contact-info__item {
    margin-bottom: 0;
  }

  .contact-info__value {
    font-size: 1.4rem;
  }

  .map-container iframe {
    height: 400px;
  }

  .content-section {
    padding: 4rem 2rem;
  }

  .page-header {
    padding: 4rem 2rem;
  }

  .page-header h1 {
    font-size: 3rem;
  }

  .service-detail {
    padding: 3rem 0;
  }

  .faq-item {
    padding: 2rem 0;
  }

  .faq-item h3 {
    font-size: 1.3rem;
  }

  .faq-item p {
    font-size: 1.05rem;
  }

  .testimonials {
    padding: 5rem 2rem;
  }

  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
  }

  .testimonial-card {
    padding: 2rem;
  }

  .testimonial-stars {
    font-size: 1.5rem;
  }

  .testimonial-quote {
    font-size: 1.05rem;
  }
}
