* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

html,
body {
  overflow-x: hidden;
  width: 100%;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* ===================================
   HEADER (IGUAL AL INDEX LARGO)
   =================================== */
header {
  background-color: transparent;
  position: fixed;
  /* se superpone */
  top: 0;
  left: 0;
  width: 100%;
  padding: 10px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
}

header.scrolled {
  background-color: rgba(255, 255, 255, 0.65);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

/*.logo-icon {
            width: 40px;
            height: 40px;
            background-color: transparent;
            border: 2px solid #FDDD58;
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #FDDD58;
            font-size: 20px;
        }

        .logo-text {
            color: #FDDD58;
            font-size: 20px;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
        }*/

.logo-imagen {
  width: 100px;
  height: auto;
}

nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

nav a {
  color: #000;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
  font-weight: 400;
}

nav a:hover {
  color: #fddd58;
}

.services-link::after {
  content: " ▾";
}

/* Dropdown Menu */
.services-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #2a2a2a;
  min-width: 220px;
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  margin-top: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  overflow: hidden;
}

.services-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  margin-top: 15px;
}

.dropdown-menu a {
  display: block;
  padding: 15px 25px;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(253, 221, 88, 0.1);
}

.dropdown-menu a:last-child {
  border-bottom: none;
}

.dropdown-menu a:hover {
  background-color: #fddd58;
  color: #1a1a1a;
  padding-left: 30px;
}

/* Estilos del menú hamburguesa (oculto por defecto) */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: 1000;
  gap: 5px;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background-color: #fddd58;
  transition: all 0.3s ease;
  border-radius: 3px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Prevenir scroll cuando el menú está abierto */
body.menu-open {
  overflow: hidden;
}

/* ===================================
   HERO
   =================================== */
.hero-bg-1 {
  background: url(imagenes/pickup-and-delivery-3.jpg) center/cover no-repeat;
  position: relative;
  /*padding: 120px 0;*/
  height: 100vh;
  display: flex;
  align-items: center; /* Centrado vertical */
  justify-content: center; /* Centrado horizontal (opcional) */
}

.hero-bg-2 {
  background: url(imagenes/junk-removal-cover.jpg) center/cover no-repeat;
  position: relative;
  padding: 120px 0;
  height: 100vh;
  display: flex;
  align-items: center; /* Centrado vertical */
  justify-content: center; /* Centrado horizontal (opcional) */
}

.hero-bg-3 {
  background: url(imagenes/recent-work-1.jpg) center/cover no-repeat;
  position: relative;
  padding: 120px 0;
  height: 100vh;
  display: flex;
  align-items: center; /* Centrado vertical */
  justify-content: center; /* Centrado horizontal (opcional) */
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
}

.hero-content {
  position: relative;
  color: #fff;
  max-width: 650px;
}

.hero-content h1 {
  font-size: 48px;
  margin-bottom: 20px;
  font-weight: bold;
  text-transform: uppercase;
  align-items: flex-start;
  text-align: left;
}

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

.hero-content p {
  margin-bottom: 30px;
  color: white;
  font-size: 16px;
  line-height: 1.6;
}

.btn-primary {
  background: #fddd58;
  color: #1a1a1a;
  padding: 15px 30px;
  border-radius: 25px;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  text-transform: uppercase;
  font-size: 13px;
  cursor: pointer;
  transition: transform 0.2s;
}

.btn-primary:hover {
  transform: scale(1.05);
}

/* ===================================
   APPROACH
   =================================== */
.approach {
  background: #f5f5f5;
  padding: 80px 0;
}

.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.approach h2 {
  color: #1a1a1a;
  margin-bottom: 20px;
  font-size: 36px;
  font-weight: bold;
  text-transform: uppercase;
}

.approach h3 {
  margin-top: 30px;
  font-size: 28px;
  font-weight: bold;
  color: #1a1a1a;
}

.approach-text p {
  color: #333;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.check-list {
  list-style: none;
  margin-top: 20px;
}

.check-list li {
  margin-bottom: 10px;
  padding-left: 22px;
  position: relative;
  color: #333;
  font-size: 15px;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #fddd58;
  font-weight: bold;
}

.approach-image img {
  width: 100%;
  border-radius: 20px;
}

/* ===================================
   HOW IT WORKS
   =================================== */
.how-cards {
  text-align: center;
  padding: 80px 0;
  background-color: white;
}

.how-cards h2 {
  font-size: 40px;
  margin-bottom: 15px;
  text-transform: uppercase;
  font-weight: bold;
  color: #1a1a1a;
}

.subtitle {
  margin-top: 10px;
  color: #666;
  font-size: 16px;
  margin-bottom: 50px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.card {
  padding: 35px;
  border-radius: 20px;
  text-align: left;
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.card h4 {
  margin: 15px 0;
  font-size: 20px;
  font-weight: bold;
  color: #1a1a1a;
}

.card p {
  color: #333;
  font-size: 14px;
  line-height: 1.6;
}

.icon {
  font-size: 32px;
}

.card-yellow {
  background: #fffbf0;
  border: 1px solid #fddd58;
}

.card-purple {
  background: #fafafa;
  border: 1px solid #e0e0e0;
}

.card-blue {
  background: #fafafa;
  border: 1px solid #e0e0e0;
}

/* ===================================
   FAQ WITH ACCORDION
   =================================== */
.faq {
  padding: 80px 0;
  background: #f5f5f5;
}

.faq h2 {
  text-align: center;
  font-size: 40px;
  margin-bottom: 15px;
  text-transform: uppercase;
  font-weight: bold;
  color: #1a1a1a;
}

.faq-subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 50px;
  font-size: 16px;
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  border-radius: 8px;
  padding: 20px;
}

.faq-item {
  border-bottom: 1px solid #e5e5e5;
  margin-bottom: 0;
}

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

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
  text-align: left;
  color: #1a1a1a;
  transition: color 0.3s;
}

.faq-question:hover {
  color: #fddd58;
}

.faq-icon {
  font-size: 20px;
  transition: transform 0.3s;
  color: #1a1a1a;
  font-weight: bold;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: #fddd58;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding-bottom: 24px;
}

.faq-answer p {
  color: #333;
  line-height: 1.6;
  margin: 0;
  font-size: 14px;
}

/* ===================================
   FOOTER (IGUAL AL INDEX LARGO)
   =================================== */
.footer {
  background-color: #ccc;
  color: #333333;
  padding: 60px 60px 0;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto 40px;
}

.footer-column h3 {
  color: #333333;
  font-size: 20px;
  margin-bottom: 25px;
  text-transform: uppercase;
}

.footer-logo {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.footer-logo-icon {
  width: 50px;
  height: 50px;
  background-color: transparent;
  border: 2px solid #fddd58;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fddd58;
  font-size: 24px;
  flex-shrink: 0;
}

.footer-logo-text {
  flex: 1;
}

.logo-footer {
  width: 100px;
  height: auto;
}

.footer-logo-text strong {
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
}

.footer-logo-text p {
  font-size: 13px;
  line-height: 1.6;
  color: #333333;
}

.footer-contact {
  font-size: 14px;
  line-height: 2;
}

.footer-links {
  list-style: none;
  font-size: 14px;
  line-height: 2.5;
}

button{
  border: none;
  background: none;
}

.list-link {
  display: flex;
  align-items: center;
  gap: 5px;
}

.link-footer {
  text-decoration: none;
  color: #333333;
}

.circle-icon {
  font-size: 5px;
}

.quote-box {
  border: 2px solid #fddd58;
  padding: 30px;
  border-radius: 8px;
  text-align: center;
}

.quote-phone {
  font-size: 24px;
  font-weight: bold;
  margin: 20px 0;
}

.footer-quote-btn {
  background-color: #fddd58;
  color: #1a1a1a;
  padding: 15px 40px;
  border: none;
  border-radius: 25px;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 14px;
  cursor: pointer;
  width: 100%;
}

.footer-bottom {
  border-top: 1px solid #333;
  padding: 25px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #999;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-cta {
  background-color: #000;
  padding: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  font-size: 18px;
  font-weight: bold;
}

.cta-phone {
  color: #fddd58;
}

.footer-cta-btn {
  background-color: #fddd58;
  color: #1a1a1a;
  padding: 12px 35px;
  border: none;
  border-radius: 25px;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 13px;
  cursor: pointer;
}

/* ===================================
   RESPONSIVE (IGUAL AL INDEX LARGO)
   =================================== */

/* Tablets (768px - 1024px) */
@media (max-width: 1024px) {
  header {
    padding: 20px 40px;
  }

  .approach-grid,
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-column:last-child {
    grid-column: 1 / -1;
    max-width: 400px;
    margin: 0 auto;
  }
}

/* Mobile (hasta 767px) */
@media (max-width: 767px) {
  /* Header y Menú Hamburguesa */
  header {
    padding: 15px 20px;
    flex-wrap: wrap;
  }

  .logo {
    flex: 1;
  }

  .hamburger {
    display: flex;
  }

  nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(26, 26, 26, 0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    z-index: 999;
    padding: 20px;
  }

  nav.active {
    display: flex;
  }

  nav a {
    font-size: 20px;
    color: white;
  }

  nav .cta-button {
    margin-top: 20px;
    padding: 15px 30px;
  }

  /* Header y Menú Hamburguesa */
  header {
    padding: 15px 20px;
    flex-wrap: wrap;
  }

  .logo {
    flex: 1;
  }

  .hamburger {
    display: flex;
  }

  nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(26, 26, 26, 0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    z-index: 999;
    padding: 20px;
  }

  nav.active {
    display: flex;
  }

  nav a {
    font-size: 20px;
    color: white;
  }

  nav .cta-button {
    margin-top: 20px;
    padding: 15px 30px;
  }

  /* Hero Section */
  .hero-content h1 {
    font-size: 32px;
  }

  /* Approach, Cards */
  .approach-grid,
  .cards {
    grid-template-columns: 1fr;
  }

  .approach {
    padding: 60px 20px;
  }

  .how-cards {
    padding: 60px 20px;
  }

  .faq {
    padding: 60px 20px;
  }

  /* Footer */
  .footer {
    padding: 40px 20px 0;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
    width: 100%;
  }

  .footer-column {
    width: 100%;
  }

  .footer-column h3 {
    font-size: 18px;
  }

  .footer-logo {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .footer-bottom-links {
    flex-direction: column;
    gap: 10px;
  }

  .footer-cta {
    flex-direction: column;
    gap: 20px;
    font-size: 16px;
    text-align: center;
    padding: 25px 20px;
  }

  .services-dropdown {
    position: static;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    margin: 0;
    padding: 0;
    background-color: transparent;
    box-shadow: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    width: 100%;
  }

  .services-dropdown.active .dropdown-menu {
    max-height: 200px;
  }

  .dropdown-menu a {
    padding: 12px 40px;
    font-size: 16px;
    border-bottom: 1px solid rgba(253, 221, 88, 0.2);
    text-align: center;
  }

  .dropdown-menu a:hover {
    padding-left: 40px;
  }
}

/* Mobile pequeño (hasta 480px) */
@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 28px;
  }

  .logo-text {
    font-size: 16px;
  }

  .logo-icon {
    width: 35px;
    height: 35px;
    font-size: 18px;
  }
}
