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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #ffffff;
}

.min-h-screen {
  min-height: 100vh;
}

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

/* Icons */
.icon-sm {
  width: 1rem;
  height: 1rem;
  stroke: currentColor;
  fill: none;
}

.icon-md {
  width: 2rem;
  height: 2rem;
  stroke: currentColor;
  fill: none;
}

.icon-lg {
  width: 1.75rem;
  height: 1.75rem;
  stroke: currentColor;
  fill: none;
}

.icon-contact {
  width: 1.5rem;
  height: 1.5rem;
  stroke: currentColor;
  fill: none;
}

/* Header */
.header {
  background: #816811;
  color: #ffeba4;
  padding: 1rem 0;
}

.header-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-img {
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.25rem;
}

.logo-text {
  font-size: 1.25rem;
  font-weight: bold;
}

.header-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-text {
  font-size: 0.875rem;
}

.language-toggle {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid #ffeba4;
  color: #ffeba4;
  padding: 0.5rem;
  border-radius: 0.375rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  transition: all 0.2s;
}

.language-toggle:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Hero Section */
.hero {
  position: relative;
  background: linear-gradient(135deg, #b8992e 0%, #1e40af 100%);
  color: white;
  padding: 5rem 0;
  text-align: center;
}

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

.hero-content {
  position: relative;
}

.hero-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  font-weight: bold;
  line-height: normal;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: .5rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

.hero-local-movers {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  font-weight: bold;
}

/* Flag Visual */
.flag-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.flag-item {
  text-align: center;
  width: 8rem;
}

.flag-badge {
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
  font-weight: bold;
  color: white;
  height: 5rem;
  background-size: cover;
  background-position: center;
}

.usa-badge {
  background-image: url("assets/usa.avif");
}

.mex-badge {
  background-image: url("assets/mex.avif");
}

.flag-text {
  font-size: 0.875rem;
  opacity: 0.9;
}

.arrow {
  color: rgba(255, 255, 255, 0.9);
}

.arrow-symbol {
  font-size: 1.875rem;
}

/* Hero Buttons */
.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: center;
}

.btn-primary, .btn-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  font-size: 1.25rem;
  height: 4rem;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  font-weight: 500;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

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

.btn-primary {
  background-color: #16a34a;
  color: white;
}

.btn-primary:hover {
  background-color: #15803d;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid white;
  color: white;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Sections */
.values-section, .services-section, .gallery-section {
  padding: 4rem 0;
}

.values-section {
  background-color: #c4c4c440;
}

.services-section {
  background-color: #c4c4c440;
}

.guaranteed-section {
  padding: 4rem 0;
  background-color: #c4c4c417;
}

.gallery-section {
  background-color: #c4c4c417;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.section-subtitle {
  font-size: 1.125rem;
  max-width: 32rem;
  margin: 0 auto;
}

/* Values Grid */
.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.value-item {
  text-align: center;
}

.value-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem auto;
}

.amber-bg {
  background-color: #fef3c7;
  color: #816811;
}

.blue-bg {
  background-color: #dbeafe;
  color: #1e40af;
}

.value-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.value-desc {
  color: #6b7280;
}

/* Guaranteed Service */
.guaranteed-content {
  max-width: 64rem;
  margin: 0 auto;
  text-align: center;
}

.guaranteed-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.card {
  background: white;
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.2s;
}

.card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.card-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.amber-text {
  color: #816811;
}

.blue-text {
  color: #1e40af;
}

.card-desc {
  color: #6b7280;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 64rem;
  margin: 0 auto;
}

.service-card {
  background: white;
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.2s;
}

.service-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.service-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.service-desc {
  color: #6b7280;
  margin-bottom: 1rem;
}

.service-list {
  list-style: none;
}

.service-list li {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 0.25rem;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.gallery-item {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 0.5rem;
  transition: transform 0.3s;
}

.gallery-item:hover {
  transform: scale(1.05);
}

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

/* Contact Section */
.contact-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #b8992e 0%, #1e40af 100%);
  color: white;
  text-align: center;
}

.contact-content {
  text-align: center;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 32rem;
  margin: 2rem auto;
}

.contact-btn {
  background-color: transparent;
  border: none;
  color: white;
  padding: 1rem;
  border-radius: 0.5rem;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  height: 5rem;
  transition: all 0.2s;
}

.whatsapp-contact {
  background-color: #16a34a;
}

.whatsapp-contact:hover {
  background-color: #15803d;
}

.phone-contact {
  background-color: #1e40af;
}

.phone-contact:hover {
  background-color: #1e3a8a;
}

.facebook-contact {
  background-color: #1d4ed8;
}

.facebook-contact:hover {
  background-color: #1e3a8a;
}

.instagram-contact {
  background-color: #db2777;
}

.instagram-contact:hover {
  background-color: #be185d;
}

.contact-label {
  font-size: 0.875rem;
}

.contact-info {
  margin-top: 2rem;
}

.contact-detail {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

/* Footer */
.footer {
  background: #816811;
  color: #ffeba4;
  padding: 2rem 0;
  text-align: center;
}

.footer-content {
  text-align: center;
}

.footer-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.footer-tagline {
  font-size: 0.875rem;
  opacity: 0.8;
  margin-bottom: 0.5rem;
}

.footer-quote {
  font-size: 0.75rem;
  opacity: 0.7;
  margin-bottom: 1rem;
  font-style: italic;
}

.footer-copyright {
  font-size: 0.75rem;
  opacity: 0.6;
}

/* Responsive Design */
@media (min-width: 640px) {
  .header-content {
    flex-direction: row;
  }

  .header-info {
    flex-direction: row;
    gap: 1rem;
  }

  .hero-title {
    font-size: 3.75rem;
  }

  .hero-subtitle{
    font-size: 1.5rem;
  }

  .hero-local-movers {
    font-size: 2rem;
  }

  .hero-buttons {
    flex-direction: row;
  }

  .contact-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

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

  .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .guaranteed-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

  .section-title {
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}