* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  color: #333;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo span {
  font-size: 1.5rem;
  font-weight: bold;
  color: #d4af37;
}

.nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s;
}

.nav a:hover {
  color: #d4af37;
}

.header-phone {
  background: #007bff;
  color: white;
  padding: 0.25rem 0.5rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.75rem;
  transition: background 0.3s;
  white-space: nowrap;
  margin-left: 1rem;
}

.header-phone:hover {
  background: #0056b3;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
  color: white;
  padding: 120px 0 80px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  color: #d4af37;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #ccc;
}

.hero-description {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #aaa;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  background: #d4af37;
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s;
  display: inline-block;
}

.btn-primary:hover {
  background: #b8941f;
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25d366;
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s;
  display: inline-block;
}

.btn-whatsapp:hover {
  background: #1da851;
  transform: translateY(-2px);
}

/* Flags */
.hero-flags {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.usa-flag,
.texas-flag {
  width: 120px;
  height: 80px;
  border: 2px solid #333;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* USA Flag */
.usa-flag {
  display: flex;
}

.flag-canton {
  width: 40%;
  height: 100%;
  background: #002868;
  position: relative;
}

.stars {
  color: white;
  font-size: 6px;
  line-height: 1;
  padding: 2px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-content: space-around;
  height: 100%;
}

.flag-stripes {
  width: 60%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.stripe {
  flex: 1;
}

.stripe.red {
  background: #bf0a30;
}

.stripe.white {
  background: white;
}

/* Texas Flag */
.texas-flag {
  display: flex;
}

.flag-blue {
  width: 33.33%;
  height: 100%;
  background: #002868;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flag-star {
  color: white;
  font-size: 24px;
}

.flag-stripes-tx {
  width: 66.67%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.stripe-white {
  height: 50%;
  background: white;
}

.stripe-red {
  height: 50%;
  background: #bf0a30;
}

/* Services Section */
.services {
  padding: 80px 0;
  background: #f8f9fa;
}

.services h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #333;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.service-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  background: #d4af37;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  filter: grayscale(100%) brightness(0);
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #333;
}

.service-card p {
  color: #666;
  margin-bottom: 1.5rem;
}

.btn-learn-more {
  background: #d4af37;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s;
}

.btn-learn-more:hover {
  background: #b8941f;
}

/* Testimonials */
.testimonials {
  padding: 80px 0;
  background: white;
}

.testimonials h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #333;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.stars {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #d4af37;
}

.testimonial-card p {
  font-style: italic;
  margin-bottom: 1.5rem;
  color: #666;
}

.customer strong {
  color: #333;
  display: block;
}

.customer span {
  color: #666;
  font-size: 0.9rem;
}

/* About Section */
.about {
  padding: 80px 0;
  background: #f8f9fa;
}

.about-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #333;
}

.about p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.feature {
  color: #333;
  font-weight: 500;
}

.about-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.about-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.about-card h3 {
  color: #333;
  margin-bottom: 0.5rem;
}

.about-card p {
  color: #666;
  margin: 0;
}

/* Service Areas */
.service-areas {
  padding: 80px 0;
  background: white;
}

.service-areas h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #333;
}

.cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.city-btn {
  background: #f8f9fa;
  border: 2px solid #d4af37;
  color: #333;
  padding: 1rem;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s;
}

.city-btn:hover {
  background: #d4af37;
  color: white;
}

.areas-footer {
  text-align: center;
  margin-top: 2rem;
}

.areas-footer p {
  color: #666;
  margin-bottom: 0.5rem;
}

.areas-footer a {
  color: #d4af37;
  text-decoration: none;
  font-weight: bold;
}

/* Contact Section */
.contact {
  padding: 80px 0;
  background: #f8f9fa;
}

.contact h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #333;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-form {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
  margin-bottom: 1.5rem;
  color: #333;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #d4af37;
}

.btn-submit {
  background: #d4af37;
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 10px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1rem;
  width: 100%;
  transition: background 0.3s;
}

.btn-submit:hover {
  background: #b8941f;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-card {
  background: white;
  padding: 1.5rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  font-size: 1.5rem;
  margin-top: 0.25rem;
}

.contact-card h4 {
  color: #333;
  margin-bottom: 0.5rem;
}

.contact-card p {
  color: #666;
  margin-bottom: 0.5rem;
}

.contact-card a {
  color: #d4af37;
  text-decoration: none;
  font-weight: bold;
}

.contact-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.btn-whatsapp-contact,
.btn-location,
.btn-call-us,
.btn-take-picture {
  padding: 0.75rem;
  border-radius: 10px;
  text-decoration: none;
  text-align: center;
  font-weight: bold;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
}

.btn-call-us {
  background: #d4af37;
  color: white;
}

.btn-call-us:hover {
  background: #b8941f;
}

.btn-whatsapp-contact {
  background: #25d366;
  color: white;
}

.btn-whatsapp-contact:hover {
  background: #1da851;
}

.btn-location {
  background: #007bff;
  color: white;
}

.btn-location:hover {
  background: #0056b3;
}

.btn-take-picture {
  background: #6f42c1;
  color: white;
}

.btn-take-picture:hover {
  background: #5a32a3;
}

/* Footer */
.footer {
  background: #333;
  color: white;
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
  color: #d4af37;
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section ul li a:hover {
  color: #d4af37;
}

.footer-contact p {
  margin-bottom: 0.5rem;
  color: #ccc;
}

.footer-contact a {
  color: #d4af37;
  text-decoration: none;
}

.footer-bottom {
  border-top: 1px solid #555;
  padding-top: 1rem;
  text-align: center;
  color: #ccc;
}

/* Modals */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  max-width: 500px;
  width: 90%;
  position: relative;
  max-height: 80vh;
  overflow-y: auto;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 2rem;
  cursor: pointer;
  color: #666;
  background: none;
  border: none;
}

.modal-close:hover {
  color: #333;
}

.city-info {
  margin: 1rem 0;
}

.city-info p {
  margin-bottom: 0.5rem;
  color: #666;
}

.city-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}

.city-actions .btn-call,
.city-actions .btn-whatsapp,
.city-actions .btn-location,
.city-actions .btn-picture {
  padding: 0.75rem 1rem;
  border-radius: 10px;
  text-decoration: none;
  text-align: center;
  font-weight: bold;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
}

.city-actions .btn-call {
  background: #d4af37;
  color: white;
}

.city-actions .btn-call:hover {
  background: #b8941f;
}

.city-actions .btn-whatsapp {
  background: #25d366;
  color: white;
}

.city-actions .btn-whatsapp:hover {
  background: #1da851;
}

.city-actions .btn-location {
  background: #007bff;
  color: white;
}

.city-actions .btn-location:hover {
  background: #0056b3;
}

.city-actions .btn-picture {
  background: #6f42c1;
  color: white;
}

.city-actions .btn-picture:hover {
  background: #5a32a3;
}

/* City Popup */
.city-popup {
  display: none;
  position: fixed;
  z-index: 3000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
}

.city-popup-content {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  max-width: 400px;
  width: 90%;
  text-align: center;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.city-popup-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.5rem;
  cursor: pointer;
  color: #666;
  background: none;
  border: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.city-popup-close:hover {
  background: #f0f0f0;
  color: #333;
}

.city-popup-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.city-popup-text h3 {
  color: #333;
  margin-bottom: 0.5rem;
}

.city-popup-text p {
  color: #666;
  margin-bottom: 1.5rem;
}

.city-popup-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.city-popup-buttons .btn-call {
  background: #d4af37;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.city-popup-buttons .btn-call:hover {
  background: #b8941f;
}

.city-popup-buttons .btn-close {
  background: #6c757d;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  border: none;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s;
}

.city-popup-buttons .btn-close:hover {
  background: #545b62;
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

.whatsapp-float a {
  display: block;
  width: 50px;
  height: 50px;
  background: #25d366;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  transition: all 0.3s;
}

.whatsapp-float a:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-icon {
  color: white;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
  .header-content {
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .nav {
    gap: 1rem;
    order: 3;
    width: 100%;
    justify-content: center;
  }

  .header-phone {
    order: 2;
    margin-left: 0;
  }

  .hero {
    padding: 140px 0 60px;
    text-align: center;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-flags {
    flex-direction: row;
    justify-content: center;
  }

  .about-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .contact-content {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-actions {
    grid-template-columns: 1fr;
  }

  .city-actions {
    grid-template-columns: 1fr;
  }

  .cities-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .services h2,
  .about h2,
  .service-areas h2,
  .contact h2,
  .testimonials h2 {
    font-size: 2rem;
  }

  .btn-primary,
  .btn-whatsapp {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }

  .header-phone {
    padding: 0.2rem 0.4rem;
    font-size: 0.7rem;
  }
}

/* Mobile adjustments for WhatsApp button */
@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 15px;
    right: 15px;
  }

  .whatsapp-float a {
    width: 45px;
    height: 45px;
  }

  .whatsapp-icon {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .whatsapp-float {
    bottom: 10px;
    right: 10px;
  }

  .whatsapp-float a {
    width: 40px;
    height: 40px;
  }

  .whatsapp-icon {
    font-size: 1rem;
  }
}