* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: #1f2937;
  min-height: 100vh;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}
@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

.logo {
  font-size: 1.875rem;
  font-weight: bold;
  color: #d97706;
}
.logo__accent {
  color: #92400e;
}

.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #1f2937;
  margin-bottom: 1rem;
  text-align: center;
}
@media (min-width: 1024px) {
  .section-title {
    font-size: 3rem;
  }
}

.section-description {
  font-size: 1.25rem;
  color: #6b7280;
  text-align: center;
  max-width: 48rem;
  margin: 0 auto;
}

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

.text-accent {
  color: #d97706;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 500;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn i {
  margin-right: 0.5rem;
}
.btn--primary {
  background: #d97706;
  color: #ffffff;
}
.btn--primary:hover {
  background: #92400e;
  transform: scale(1.05);
}
.btn--outline {
  border: 2px solid #d97706;
  color: #d97706;
  background: transparent;
}
.btn--outline:hover {
  background: #d97706;
  color: #ffffff;
}
.btn--large {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}
.btn--full {
  width: 100%;
}

.header {
  background: #ffffff;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 50;
}
.header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}
.header__actions {
  display: none;
}
@media (min-width: 1024px) {
  .header__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
  }
}
.header__contact {
  display: flex;
  gap: 1rem;
  font-size: 0.875rem;
}

.contact-item {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b7280;
}
.contact-item i {
  color: #d97706;
  margin-right: 0.25rem;
}

.nav--desktop {
  display: none;
}
@media (min-width: 768px) {
  .nav--desktop {
    display: flex;
    gap: 2rem;
  }
}
.nav--mobile {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding-bottom: 1rem;
}
.nav--mobile.active {
  display: flex;
}
.nav__link {
  color: #6b7280;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}
.nav__link:hover {
  color: #d97706;
}
.nav__contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 0.5rem;
  border-top: 1px solid #e5e7eb;
}

.mobile-menu-btn {
  display: block;
  background: none;
  border: none;
  color: #6b7280;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.mobile-menu-btn:hover {
  color: #d97706;
}
@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}

.hero {
  background: linear-gradient(135deg, #fef3c7 0%, #fed7aa 100%);
  padding: 5rem 0;
}
.hero__content {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero__content {
    grid-template-columns: 1fr 1fr;
  }
}
.hero__text {
  text-align: center;
}
@media (min-width: 1024px) {
  .hero__text {
    text-align: left;
  }
}
.hero__title {
  font-size: 3rem;
  font-weight: bold;
  color: #1f2937;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
@media (min-width: 1024px) {
  .hero__title {
    font-size: 3.75rem;
  }
}
.hero__title--accent {
  color: #d97706;
  display: block;
}
.hero__description {
  font-size: 1.25rem;
  color: #6b7280;
  margin-bottom: 2rem;
  line-height: 1.6;
}
.hero__buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}
@media (min-width: 640px) {
  .hero__buttons {
    flex-direction: row;
    justify-content: center;
  }
}
@media (min-width: 1024px) {
  .hero__buttons {
    justify-content: flex-start;
  }
}
.hero__features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}
@media (min-width: 640px) {
  .hero__features {
    grid-template-columns: repeat(3, 1fr);
  }
}
.hero__image {
  position: relative;
}
.hero__image-container {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
.hero__img {
  width: 100%;
  height: 24rem;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 1024px) {
  .hero__img {
    height: 31.25rem;
  }
}
.hero__card {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: #ffffff;
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  text-align: center;
}
.hero__card-number {
  font-size: 1.875rem;
  font-weight: bold;
  color: #d97706;
}
.hero__card-text {
  font-size: 0.875rem;
  color: #6b7280;
}

.feature {
  text-align: center;
}
.feature__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  background: #ffffff;
  border-radius: 50%;
  margin: 0 auto 0.75rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.feature__icon i {
  font-size: 2rem;
  color: #d97706;
}
.feature__title {
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.25rem;
}
.feature__text {
  font-size: 0.875rem;
  color: #6b7280;
}

.products {
  padding: 4rem 0;
  background: #ffffff;
}
.products__categories {
  display: grid;
  gap: 2rem;
  margin-bottom: 5rem;
}
@media (min-width: 768px) {
  .products__categories {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .products__categories {
    grid-template-columns: repeat(3, 1fr);
  }
}
.products__featured {
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) {
  .products__featured {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .products__featured {
    grid-template-columns: repeat(3, 1fr);
  }
}

.category-card {
  background: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  overflow: hidden;
  transition: transform 0.3s ease;
}
.category-card:hover {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
.category-card:hover {
  transform: translateY(-2px);
}
.category-card__image {
  position: relative;
  height: 12rem;
  overflow: hidden;
}
.category-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.category-card__image:hover img {
  transform: scale(1.1);
}
.category-card__content {
  padding: 1.5rem;
}
.category-card__title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #1f2937;
  margin-bottom: 0.5rem;
}
.category-card__description {
  color: #6b7280;
  margin-bottom: 1rem;
}
.category-card__items {
  margin-bottom: 1rem;
}
.category-card__item {
  font-size: 0.875rem;
  color: #b45309;
  font-weight: 500;
  margin-bottom: 0.25rem;
}
.category-card__link {
  color: #d97706;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}
.category-card__link:hover {
  color: #92400e;
}

.featured-card {
  background: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  overflow: hidden;
  transition: transform 0.3s ease;
}
.featured-card:hover {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
.featured-card:hover {
  transform: translateY(-2px);
}
.featured-card__image {
  position: relative;
  height: 12rem;
}
.featured-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.featured-card__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: #ef4444;
  color: #ffffff;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
}
.featured-card__heart {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.9);
  padding: 0.5rem;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.featured-card__heart:hover {
  background: #ffffff;
}
.featured-card__heart i {
  color: #6b7280;
}
.featured-card__content {
  padding: 1.5rem;
}
.featured-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}
.featured-card__title {
  font-size: 1.25rem;
  font-weight: bold;
  color: #1f2937;
}
.featured-card__rating {
  display: flex;
  align-items: center;
  justify-content: center;
}
.featured-card__rating i {
  color: #fbbf24;
  margin-right: 0.25rem;
}
.featured-card__rating span {
  font-size: 0.875rem;
  color: #6b7280;
}
.featured-card__description {
  color: #6b7280;
  margin-bottom: 1rem;
}
.featured-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.featured-card__price {
  font-size: 1.5rem;
  font-weight: bold;
  color: #d97706;
}

.about {
  padding: 4rem 0;
  background: linear-gradient(135deg, #fef3c7 0%, #fed7aa 100%);
}
.about__content {
  display: grid;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
}
@media (min-width: 1024px) {
  .about__content {
    grid-template-columns: 1fr 1fr;
  }
}
.about__title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #1f2937;
  margin-bottom: 1.5rem;
}
@media (min-width: 1024px) {
  .about__title {
    font-size: 3rem;
  }
}
.about__description {
  font-size: 1.125rem;
  color: #6b7280;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.about__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.about__image {
  position: relative;
}
.about__image-container {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
.about__img {
  width: 100%;
  height: 24rem;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 1024px) {
  .about__img {
    height: 31.25rem;
  }
}
.about__testimonial {
  position: absolute;
  bottom: -2rem;
  left: -2rem;
  background: #ffffff;
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  max-width: 18rem;
}
.about__values {
  margin-top: 5rem;
}

.stat {
  text-align: center;
  background: #ffffff;
  border-radius: 0.5rem;
  padding: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.stat__number {
  font-size: 1.875rem;
  font-weight: bold;
  color: #d97706;
}
.stat__text {
  color: #6b7280;
}

.testimonial__stars {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}
.testimonial__stars i {
  color: #fbbf24;
  font-size: 1.125rem;
}
.testimonial__text {
  color: #6b7280;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}
.testimonial__author {
  font-size: 0.875rem;
  font-weight: 600;
  color: #1f2937;
}

.values__grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) {
  .values__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .values__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.value-card {
  text-align: center;
  background: #ffffff;
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
.value-card:hover {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
.value-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  background: #fef3c7;
  border-radius: 50%;
  margin: 0 auto 1rem;
}
.value-card__icon i {
  font-size: 2rem;
  color: #d97706;
}
.value-card__title {
  font-size: 1.25rem;
  font-weight: bold;
  color: #1f2937;
  margin-bottom: 0.75rem;
}
.value-card__description {
  color: #6b7280;
}

.locations {
  padding: 4rem 0;
  background: linear-gradient(135deg, #fef3c7 0%, #fed7aa 100%);
}
.locations__grid {
  display: grid;
  gap: 3rem;
  margin-bottom: 4rem;
}
@media (min-width: 1024px) {
  .locations__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.locations__info {
  margin-top: 4rem;
}

.location-card {
  background: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  overflow: hidden;
  transition: transform 0.3s ease;
}
.location-card:hover {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
.location-card:hover {
  transform: translateY(-2px);
}
.location-card__image {
  position: relative;
  height: 16rem;
  overflow: hidden;
}
.location-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.location-card__image:hover img {
  transform: scale(1.05);
}
.location-card__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: #d97706;
  color: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-weight: 600;
}
.location-card__content {
  padding: 2rem;
}
.location-card__description {
  color: #6b7280;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.location-card__details {
  margin-bottom: 1.5rem;
}
.location-card__detail {
  display: flex;
  align-items: center;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 1rem;
}
.location-card__detail:last-child {
  margin-bottom: 0;
}
.location-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: #fef3c7;
  border-radius: 50%;
  margin-right: 1rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}
.location-card__icon i {
  color: #d97706;
}
.location-card__info {
  flex: 1;
}
.location-card__title {
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.25rem;
}
.location-card__text {
  color: #6b7280;
}
.location-card__hours {
  color: #6b7280;
  font-size: 0.875rem;
}
.location-card__amenities {
  margin-bottom: 1.5rem;
}
.location-card__amenities-title {
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.75rem;
}
.location-card__amenities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}
.location-card__amenity {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b7280;
  font-size: 0.875rem;
}
.location-card__amenity i {
  color: #d97706;
  margin-right: 0.5rem;
}
.location-card__specialties {
  margin-bottom: 1.5rem;
}
.location-card__specialties-title {
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.75rem;
}
.location-card__specialty {
  color: #b45309;
  font-weight: 500;
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}
.location-card__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .location-card__actions {
    flex-direction: row;
  }
}

.info__grid {
  display: grid;
  gap: 2rem;
  text-align: center;
}
@media (min-width: 768px) {
  .info__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.info__item {
  background: #ffffff;
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.info__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background: #d97706;
  color: #ffffff;
  border-radius: 50%;
  margin: 0 auto 1rem;
}
.info__icon i {
  font-size: 1.5rem;
}

.info__title {
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.info__text {
  color: #6b7280;
  font-size: 0.875rem;
}

.contact {
  padding: 4rem 0;
  background: #ffffff;
}
.contact__content {
  display: grid;
  gap: 4rem;
}
@media (min-width: 1024px) {
  .contact__content {
    grid-template-columns: 1fr 1fr;
  }
}
.contact__title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #1f2937;
  margin-bottom: 2rem;
}
.contact__form {
  background: linear-gradient(135deg, #fef3c7 0%, #fed7aa 100%);
  border-radius: 1rem;
  padding: 2rem;
}

.branch-info {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, #fef3c7 0%, #fed7aa 100%);
  border-radius: 0.75rem;
}
.branch-info__title {
  font-size: 1.25rem;
  font-weight: bold;
  color: #b45309;
  margin-bottom: 1rem;
}
.branch-info__details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-detail {
  display: flex;
  align-items: center;
  justify-content: center;
  align-items: flex-start;
}
.contact-detail__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  background: #fef3c7;
  border-radius: 50%;
  margin-right: 1rem;
  flex-shrink: 0;
}
.contact-detail__icon i {
  color: #d97706;
}
.contact-detail__content {
  flex: 1;
}
.contact-detail__primary {
  color: #1f2937;
  font-weight: 500;
  margin-bottom: 0.25rem;
}
.contact-detail__secondary {
  color: #6b7280;
}
.contact-detail__hours {
  color: #6b7280;
  font-size: 0.875rem;
}

.general-contact {
  margin-bottom: 2rem;
}
.general-contact__title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 1rem;
}
.general-contact__item {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b7280;
  margin-bottom: 0.5rem;
}
.general-contact__item i {
  color: #d97706;
  margin-right: 0.75rem;
}

.social-media__title {
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 1rem;
}
.social-media__links {
  display: flex;
  gap: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background: #d97706;
  color: #ffffff;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
}
.social-link:hover {
  background: #92400e;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.form__row {
  display: grid;
  gap: 1rem;
}
@media (min-width: 640px) {
  .form__row {
    grid-template-columns: repeat(2, 1fr);
  }
}
.form__group {
  display: flex;
  flex-direction: column;
}
.form__label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #1f2937;
  margin-bottom: 0.5rem;
}
.form__input, .form__select, .form__textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: all 0.3s ease;
}
.form__input:focus, .form__select:focus, .form__textarea:focus {
  outline: none;
  border-color: transparent;
  box-shadow: 0 0 0 2px #d97706;
}
.form__textarea {
  resize: vertical;
  min-height: 6rem;
}

.special-services {
  margin-top: 4rem;
  background: linear-gradient(135deg, #d97706 0%, #ea580c 100%);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  color: #ffffff;
}
.special-services__title {
  font-size: 1.875rem;
  font-weight: bold;
  margin-bottom: 1rem;
}
.special-services__description {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.services__grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 640px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .services__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.service {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 0.5rem;
  padding: 1rem;
}
.service__title {
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.service__text {
  font-size: 0.875rem;
  opacity: 0.9;
}

.footer {
  background: #1f2937;
  color: #ffffff;
  padding: 3rem 0;
}
.footer__content {
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) {
  .footer__content {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .footer__content {
    grid-template-columns: repeat(4, 1fr);
  }
}
.footer__brand {
  margin-bottom: 1rem;
}
.footer__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.footer__logo i {
  color: #f59e0b;
  margin-right: 0.5rem;
  font-size: 2rem;
}
.footer__description {
  color: #d1d5db;
  margin-bottom: 1rem;
}
.footer__made-with {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d1d5db;
}
.footer__made-with i {
  color: #ef4444;
  margin: 0 0.5rem;
}
.footer__title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.footer__links {
  list-style: none;
}
.footer__link {
  color: #d1d5db;
  text-decoration: none;
  transition: all 0.3s ease;
}
.footer__link:hover {
  color: #f59e0b;
}
.footer__newsletter-text {
  color: #d1d5db;
  margin-bottom: 1rem;
}
.footer__bottom {
  border-top: 1px solid #374151;
  margin-top: 2rem;
  padding-top: 2rem;
  text-align: center;
  color: #d1d5db;
}

.newsletter {
  display: flex;
}
.newsletter__input {
  flex: 1;
  padding: 0.5rem 1rem;
  border: 1px solid #374151;
  border-radius: 0.5rem 0 0 0.5rem;
  background: #374151;
  color: #ffffff;
}
.newsletter__input:focus {
  outline: none;
  border-color: #f59e0b;
}
.newsletter__input::-moz-placeholder {
  color: #9ca3af;
}
.newsletter__input::placeholder {
  color: #9ca3af;
}
.newsletter__btn {
  background: #d97706;
  color: #ffffff;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 0 0.5rem 0.5rem 0;
  cursor: pointer;
  transition: all 0.3s ease;
}
.newsletter__btn:hover {
  background: #92400e;
}

@media (max-width: 767px) {
  .hero__buttons .btn {
    width: 100%;
  }
  .location-card__actions .btn {
    flex: 1;
  }
}
.hidden {
  display: none;
}

.active {
  display: block;
}

html {
  scroll-behavior: smooth;
}/*# sourceMappingURL=main.css.map */