.main {
  padding-top: 80px;
}



.contact-information {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg-color) 0%, var(--secondary-bg-color) 100%);
}

.contact-information::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(212,163,115,0.1)"/><circle cx="80" cy="80" r="2" fill="rgba(166,61,64,0.1)"/></svg>') repeat;
  background-size: 60px 60px;
  animation: contactFloat 20s infinite linear;
}

@keyframes contactFloat {
  0% {
    transform: translateY(0px) translateX(0px);
  }

  100% {
    transform: translateY(-60px) translateX(-60px);
  }
}

.contact-information__container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.contact-information__header {
  margin-bottom: 4rem;
  text-align: center;
}

.contact-information__title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  color: var(--main-color);
  font-weight: 700;
  font-size: 2.5rem;
}

.contact-information__title i {
  color: var(--secondary-color);
  font-size: 2rem;
}

.contact-information__subtitle {
  opacity: 0.8;
  color: var(--text-color);
  font-size: 1.2rem;
}

.contact-information__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.contact-method {
  position: relative;
  border: 2px solid transparent;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(46, 74, 98, 0.1);
  overflow: hidden;
  background: white;
  transition: all 0.3s ease;
}

.contact-method:hover {
  border-color: var(--secondary-color);
  box-shadow: 0 20px 60px rgba(46, 74, 98, 0.15);
  transform: translateY(-10px);
}

.contact-method.primary {
  border-color: var(--secondary-color);
  box-shadow: 0 15px 40px rgba(212, 163, 115, 0.2);
}

.contact-method::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
}

.contact-method__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  margin-bottom: 1.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
  transition: all 0.3s ease;
}

.contact-method:hover .contact-method__icon {
  transform: scale(1.1) rotate(5deg);
}

.contact-method__icon i {
  color: white;
  font-size: 2rem;
}

.contact-method__content h3 {
  margin-bottom: 0.5rem;
  color: var(--main-color);
  font-weight: 600;
  font-size: 1.4rem;
}

.contact-method__value {
  margin-bottom: 1rem;
  color: var(--accent-color);
  font-weight: 700;
  font-size: 1.2rem;
}

.contact-method__description {
  margin-bottom: 1.5rem;
  opacity: 0.8;
  color: var(--text-color);
  line-height: 1.6;
}

.contact-method__features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.contact-method__features span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 20px;
  padding: 0.5rem 1rem;
  color: var(--text-color);
  font-weight: 500;
  font-size: 0.85rem;
  background: var(--bg-color);
}

.contact-method__features i {
  color: var(--secondary-color);
  font-size: 0.8rem;
}

.contact-method__button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  border-radius: 25px;
  padding: 0.75rem 1.5rem;
  box-shadow: 0 5px 20px rgba(212, 163, 115, 0.3);
  color: white;
  font-weight: 600;
  text-decoration: none;
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
  transition: all 0.3s ease;
}

.contact-method__button:hover {
  box-shadow: 0 10px 30px rgba(212, 163, 115, 0.4);
  transform: translateY(-2px);
}

.contact-method__button.whatsapp {
  box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
  background: linear-gradient(135deg, #25D366, #128C7E);
}

.contact-method__button.whatsapp:hover {
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}



.social-connections {
  position: relative;
  padding: 5rem 0;
  background: white;
}

.social-connections__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.social-connections__header {
  margin-bottom: 4rem;
  text-align: center;
}

.social-connections__title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  color: var(--main-color);
  font-weight: 700;
  font-size: 2.5rem;
}

.social-connections__title i {
  color: var(--secondary-color);
  font-size: 2rem;
}

.social-connections__subtitle {
  opacity: 0.8;
  color: var(--text-color);
  font-size: 1.2rem;
}

.social-connections__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.social-platform {
  position: relative;
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 10px 30px rgba(46, 74, 98, 0.1);
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg-color) 0%, var(--secondary-bg-color) 100%);
  transition: all 0.3s ease;
}

.social-platform:hover {
  box-shadow: 0 20px 60px rgba(46, 74, 98, 0.15);
  transform: translateY(-5px);
}

.social-platform.featured {
  border: 2px solid var(--secondary-color);
  box-shadow: 0 15px 40px rgba(212, 163, 115, 0.2);
}

.social-platform__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.social-platform__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: white;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.social-platform:hover .social-platform__icon {
  transform: scale(1.1);
}

.social-platform__icon.instagram {
  background: linear-gradient(45deg, #833ab4, #fd1d1d, #fcb045);
}

.social-platform__icon.pinterest {
  background: linear-gradient(45deg, #bd081c, #e60023);
}

.social-platform__icon.facebook {
  background: linear-gradient(45deg, #1877f2, #42a5f5);
}

.social-platform__icon.youtube {
  background: linear-gradient(45deg, #ff0000, #cc0000);
}

.social-platform__info h3 {
  margin-bottom: 0.25rem;
  color: var(--main-color);
  font-weight: 600;
  font-size: 1.3rem;
}

.social-platform__info p {
  margin-bottom: 0.5rem;
  opacity: 0.8;
  color: var(--text-color);
}

.followers {
  border-radius: 15px;
  padding: 0.25rem 0.75rem;
  color: white;
  font-weight: 600;
  font-size: 0.8rem;
  background: var(--secondary-color);
}

.social-platform__preview {
  position: relative;
  margin-bottom: 1rem;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(46, 74, 98, 0.1);
  overflow: hidden;
}

.social-platform__preview img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.social-platform:hover .social-platform__preview img {
  transform: scale(1.05);
}

.preview-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  background: linear-gradient(135deg, rgba(46, 74, 98, 0.8), rgba(166, 61, 64, 0.8));
  transition: all 0.3s ease;
}

.social-platform:hover .preview-overlay {
  opacity: 1;
}

.preview-stats {
  display: flex;
  gap: 1rem;
  color: white;
  font-weight: 600;
}

.preview-stats span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.social-platform__content p {
  margin-bottom: 1rem;
  opacity: 0.8;
  color: var(--text-color);
  line-height: 1.6;
}

.social-platform__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.social-platform__tags span {
  border-radius: 15px;
  padding: 0.25rem 0.75rem;
  color: var(--secondary-color);
  font-weight: 500;
  font-size: 0.8rem;
  background: white;
}

.social-platform__button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  border-radius: 25px;
  padding: 0.75rem 1.5rem;
  color: white;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-platform__button.instagram {
  background: linear-gradient(45deg, #833ab4, #fd1d1d, #fcb045);
}

.social-platform__button.pinterest {
  background: linear-gradient(45deg, #bd081c, #e60023);
}

.social-platform__button.facebook {
  background: linear-gradient(45deg, #1877f2, #42a5f5);
}

.social-platform__button.youtube {
  background: linear-gradient(45deg, #ff0000, #cc0000);
}

.social-platform__button:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}



.operating-schedule {
  position: relative;
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--secondary-bg-color) 0%, var(--bg-color) 100%);
}

.operating-schedule__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.operating-schedule__header {
  margin-bottom: 4rem;
  text-align: center;
}

.operating-schedule__title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  color: var(--main-color);
  font-weight: 700;
  font-size: 2.5rem;
}

.operating-schedule__title i {
  color: var(--secondary-color);
  font-size: 2rem;
}

.operating-schedule__subtitle {
  opacity: 0.8;
  color: var(--text-color);
  font-size: 1.2rem;
}

.operating-schedule__content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.schedule-section {
  position: relative;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(46, 74, 98, 0.1);
  overflow: hidden;
  background: white;
  transition: all 0.3s ease;
}

.schedule-section:hover {
  box-shadow: 0 20px 60px rgba(46, 74, 98, 0.15);
  transform: translateY(-5px);
}

.schedule-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
}

.schedule-section__header {
  margin-bottom: 2rem;
  border-bottom: 2px solid var(--bg-color);
  padding-bottom: 1rem;
  text-align: center;
}

.schedule-section__header i {
  margin-bottom: 1rem;
  color: var(--secondary-color);
  font-size: 2.5rem;
}

.schedule-section__header h3 {
  margin-bottom: 0.5rem;
  color: var(--main-color);
  font-weight: 600;
  font-size: 1.5rem;
}

.schedule-section__header p {
  opacity: 0.8;
  color: var(--text-color);
}

.schedule-table {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.schedule-row {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  border-radius: 10px;
  padding: 0.75rem 1rem;
  background: var(--bg-color);
  transition: all 0.3s ease;
}

.schedule-row:hover {
  background: var(--secondary-bg-color);
  transform: translateX(5px);
}

.schedule-row.weekend {
  opacity: 0.7;
}

.day {
  color: var(--main-color);
  font-weight: 600;
}

.time {
  color: var(--text-color);
  font-weight: 500;
  text-align: center;
}

.status {
  border-radius: 15px;
  padding: 0.25rem 0.75rem;
  font-weight: 600;
  font-size: 0.8rem;
  text-align: center;
}

.status.open {
  color: #155724;
  background: #d4edda;
}

.status.closed {
  color: #721c24;
  background: #f8d7da;
}

.status.limited {
  color: #856404;
  background: #fff3cd;
}

.schedule-notes {
  border-top: 1px solid var(--bg-color);
  padding-top: 1rem;
}

.schedule-notes p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  opacity: 0.8;
  color: var(--text-color);
  font-size: 0.9rem;
}

.schedule-notes i {
  color: var(--secondary-color);
  font-size: 0.8rem;
}



.inquiry-form {
  position: relative;
  padding: 5rem 0;
  background: white;
}

.inquiry-form__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.inquiry-form__header {
  margin-bottom: 4rem;
  text-align: center;
}

.inquiry-form__title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  color: var(--main-color);
  font-weight: 700;
  font-size: 2.5rem;
}

.inquiry-form__title i {
  color: var(--secondary-color);
  font-size: 2rem;
}

.inquiry-form__subtitle {
  opacity: 0.8;
  color: var(--text-color);
  font-size: 1.2rem;
}

.inquiry-form__content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  align-items: start;
  gap: 4rem;
}

.inquiry-form__info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.form-benefits {
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(46, 74, 98, 0.1);
  background: linear-gradient(135deg, var(--bg-color) 0%, var(--secondary-bg-color) 100%);
}

.form-benefits h3 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  color: var(--main-color);
  font-weight: 600;
  font-size: 1.3rem;
}

.form-benefits h3 i {
  color: var(--secondary-color);
}

.benefit-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  border-radius: 12px;
  padding: 1rem;
  background: white;
  transition: all 0.3s ease;
}

.benefit-item:hover {
  box-shadow: 0 5px 20px rgba(46, 74, 98, 0.1);
  transform: translateX(5px);
}

.benefit-item i {
  margin-top: 0.25rem;
  color: var(--secondary-color);
  font-size: 1.2rem;
}

.benefit-content h4 {
  margin-bottom: 0.25rem;
  color: var(--main-color);
  font-weight: 600;
  font-size: 1rem;
}

.benefit-content p {
  opacity: 0.8;
  color: var(--text-color);
  font-size: 0.9rem;
  line-height: 1.5;
}

.contact-testimonial {
  position: relative;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(46, 74, 98, 0.1);
  overflow: hidden;
  background: white;
}

.contact-testimonial::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
}

.testimonial-content i {
  margin-bottom: 1rem;
  color: var(--secondary-color);
  font-size: 2rem;
}

.testimonial-content blockquote {
  margin-bottom: 1.5rem;
  color: var(--text-color);
  font-size: 1rem;
  font-style: italic;
  line-height: 1.6;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(46, 74, 98, 0.2);
  overflow: hidden;
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info h5 {
  margin-bottom: 0.25rem;
  color: var(--main-color);
  font-weight: 600;
  font-size: 1rem;
}

.author-info p {
  margin-bottom: 0.5rem;
  opacity: 0.8;
  color: var(--text-color);
  font-size: 0.9rem;
}

.rating {
  display: flex;
  gap: 0.25rem;
}

.rating i {
  color: var(--secondary-color);
  font-size: 0.8rem;
}

.inquiry-form__form {
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(46, 74, 98, 0.1);
  background: linear-gradient(135deg, var(--bg-color) 0%, var(--secondary-bg-color) 100%);
}

.form-section {
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(46, 74, 98, 0.1);
  padding-bottom: 1.5rem;
}

.form-section:last-of-type {
  border-bottom: none;
}

.form-section h4 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: var(--main-color);
  font-weight: 600;
  font-size: 1.2rem;
}

.form-section h4 i {
  color: var(--secondary-color);
}

.form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  color: var(--main-color);
  font-weight: 500;
  font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  border: 2px solid transparent;
  border-radius: 10px;
  padding: 0.75rem 1rem;
  box-shadow: 0 2px 10px rgba(46, 74, 98, 0.05);
  color: var(--text-color);
  font-size: 0.9rem;
  background: white;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--secondary-color);
  box-shadow: 0 5px 20px rgba(212, 163, 115, 0.2);
  outline: none;
}

.form-group textarea {
  min-height: 100px;
  resize: vertical;
}

.privacy-agreement {
  margin-bottom: 1.5rem;
  border-top: 1px solid rgba(46, 74, 98, 0.1);
  padding-top: 1rem;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  line-height: 1.5;
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
  cursor: pointer;
}

.checkmark {
  position: relative;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  border: 2px solid var(--main-color);
  border-radius: 4px;
  background-color: var(--bg-color);
  transition: all 0.3s ease;
}

.checkbox-label:hover .checkmark {
  border-color: var(--secondary-color);
}

.checkbox-label input:checked~.checkmark {
  border-color: var(--secondary-color);
  background-color: var(--secondary-color);
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.checkbox-label input:checked~.checkmark:after {
  display: block;
}

.checkbox-label .checkmark:after {
  top: 2px;
  left: 6px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.checkbox-text {
  color: var(--text-color);
  font-size: 0.9rem;
  line-height: 1.5;
}

.checkbox-text a {
  color: var(--secondary-color);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
}

.checkbox-text a:hover {
  color: var(--accent-color);
  text-decoration: underline;
}

.form-submit {
  padding-top: 1rem;
  text-align: center;
}

.submit-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  border: none;
  border-radius: 25px;
  padding: 1rem 2.5rem;
  box-shadow: 0 5px 20px rgba(212, 163, 115, 0.3);
  color: white;
  font-weight: 600;
  font-size: 1rem;
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
  transition: all 0.3s ease;
  cursor: pointer;
}

.submit-button:hover {
  box-shadow: 0 15px 40px rgba(212, 163, 115, 0.4);
  transform: translateY(-3px);
}

.form-privacy {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.8;
  color: var(--text-color);
  font-size: 0.85rem;
  line-height: 1.5;
}

.form-privacy i {
  color: var(--secondary-color);
}



.location-map {
  position: relative;
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--bg-color) 0%, var(--secondary-bg-color) 100%);
}

.location-map__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.location-map__header {
  margin-bottom: 4rem;
  text-align: center;
}

.location-map__title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  color: var(--main-color);
  font-weight: 700;
  font-size: 2.5rem;
}

.location-map__title i {
  color: var(--secondary-color);
  font-size: 2rem;
}

.location-map__subtitle {
  opacity: 0.8;
  color: var(--text-color);
  font-size: 1.2rem;
}

.location-map__content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  align-items: start;
  gap: 3rem;
}

.map-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.location-details {
  position: relative;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(46, 74, 98, 0.1);
  overflow: hidden;
  background: white;
}

.location-details::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
}

.location-details h3 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: var(--main-color);
  font-weight: 600;
  font-size: 1.4rem;
}

.location-details h3 i {
  color: var(--secondary-color);
}

.location-address {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.location-address p {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--text-color);
  line-height: 1.6;
}

.location-address i {
  margin-top: 0.25rem;
  color: var(--secondary-color);
  font-size: 1rem;
}

.location-features {
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(46, 74, 98, 0.1);
  background: white;
}

.location-features h4 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  color: var(--main-color);
  font-weight: 600;
  font-size: 1.2rem;
}

.location-features h4 i {
  color: var(--secondary-color);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-radius: 10px;
  padding: 0.75rem;
  background: var(--bg-color);
  transition: all 0.3s ease;
}

.feature-item:hover {
  box-shadow: 0 5px 15px rgba(46, 74, 98, 0.1);
  transform: translateX(5px);
}

.feature-item i {
  color: var(--secondary-color);
  font-size: 1rem;
}

.feature-item span {
  color: var(--text-color);
  font-weight: 500;
  font-size: 0.9rem;
}

.location-directions {
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(46, 74, 98, 0.1);
  background: white;
}

.location-directions h4 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  color: var(--main-color);
  font-weight: 600;
  font-size: 1.2rem;
}

.location-directions h4 i {
  color: var(--secondary-color);
}

.direction-options {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.direction-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  border-radius: 12px;
  padding: 1rem;
  background: var(--bg-color);
  transition: all 0.3s ease;
}

.direction-item:hover {
  box-shadow: 0 5px 15px rgba(46, 74, 98, 0.1);
  transform: translateX(5px);
}

.direction-item i {
  margin-top: 0.25rem;
  color: var(--secondary-color);
  font-size: 1.2rem;
}

.direction-content h5 {
  margin-bottom: 0.25rem;
  color: var(--main-color);
  font-weight: 600;
  font-size: 1rem;
}

.direction-content p {
  opacity: 0.8;
  color: var(--text-color);
  font-size: 0.9rem;
  line-height: 1.5;
}

.map-container {
  position: relative;
  height: 500px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(46, 74, 98, 0.1);
  overflow: hidden;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.map-overlay {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 10;
  border-radius: 15px;
  padding: 1.5rem;
  box-shadow: 0 10px 30px rgba(46, 74, 98, 0.2);
  background: white;
}

.map-overlay__content h4 {
  margin-bottom: 0.25rem;
  color: var(--main-color);
  font-weight: 600;
  font-size: 1.1rem;
}

.map-overlay__content p {
  margin-bottom: 1rem;
  opacity: 0.8;
  color: var(--text-color);
  font-size: 0.9rem;
}

.map-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 20px;
  padding: 0.5rem 1rem;
  color: white;
  font-weight: 500;
  font-size: 0.9rem;
  text-decoration: none;
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
  transition: all 0.3s ease;
}

.map-button:hover {
  box-shadow: 0 5px 20px rgba(212, 163, 115, 0.3);
  transform: translateY(-2px);
}



.order-faq {
  position: relative;
  padding: 5rem 0;
  background: white;
}

.order-faq__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.order-faq__header {
  margin-bottom: 4rem;
  text-align: center;
}

.order-faq__title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  color: var(--main-color);
  font-weight: 700;
  font-size: 2.5rem;
}

.order-faq__title i {
  color: var(--secondary-color);
  font-size: 2rem;
}

.order-faq__subtitle {
  opacity: 0.8;
  color: var(--text-color);
  font-size: 1.2rem;
}

.order-faq__content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.faq-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 2rem;
}

.faq-category {
  position: relative;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(46, 74, 98, 0.1);
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg-color) 0%, var(--secondary-bg-color) 100%);
  transition: all 0.3s ease;
}

.faq-category:hover {
  box-shadow: 0 20px 60px rgba(46, 74, 98, 0.15);
  transform: translateY(-5px);
}

.faq-category::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
}

.faq-category__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  border-bottom: 2px solid white;
  padding-bottom: 1rem;
}

.faq-category__header i {
  color: var(--secondary-color);
  font-size: 2rem;
}

.faq-category__header h3 {
  color: var(--main-color);
  font-weight: 600;
  font-size: 1.5rem;
}

.faq-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(46, 74, 98, 0.1);
  overflow: hidden;
  background: white;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 10px 30px rgba(46, 74, 98, 0.15);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.faq-question:hover {
  background: var(--bg-color);
}

.faq-question h4 {
  color: var(--main-color);
  font-weight: 600;
  font-size: 1.1rem;
  line-height: 1.4;
}

.faq-question i {
  color: var(--secondary-color);
}

.faq-answer {
  padding: 0 1.5rem 1.5rem;
  opacity: 0.8;
  color: var(--text-color);
  line-height: 1.6;
}

.faq-contact {
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 15px 40px rgba(212, 163, 115, 0.3);
  color: white;
  text-align: center;
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
}

.faq-contact__content h3 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-weight: 600;
  font-size: 1.5rem;
}

.faq-contact__content p {
  margin-bottom: 2rem;
  opacity: 0.9;
  font-size: 1.1rem;
}

.faq-contact__buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.faq-contact__button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  border-radius: 25px;
  padding: 0.75rem 1.5rem;
  box-shadow: 0 5px 20px rgba(255, 255, 255, 0.2);
  color: var(--main-color);
  font-weight: 600;
  text-decoration: none;
  background: white;
  transition: all 0.3s ease;
}

.faq-contact__button:hover {
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
}




@media (max-width: 1024px) {
  .contact-information__grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  .social-connections__grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  .operating-schedule__content {
    grid-template-columns: 1fr;
  }

  .inquiry-form__content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .location-map__content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .faq-categories {
    grid-template-columns: 1fr;
  }
}


@media (max-width: 768px) {

  .contact-information,
  .social-connections,
  .operating-schedule,
  .inquiry-form,
  .location-map,
  .order-faq {
    padding: 3rem 0;
  }

  .contact-information__container,
  .social-connections__container,
  .operating-schedule__container,
  .inquiry-form__container,
  .location-map__container,
  .order-faq__container {
    padding: 0 15px;
  }

  .contact-information__title,
  .social-connections__title,
  .operating-schedule__title,
  .inquiry-form__title,
  .location-map__title,
  .order-faq__title {
    flex-direction: column;
    gap: 0.5rem;
    font-size: 2rem;
  }

  .contact-information__title i,
  .social-connections__title i,
  .operating-schedule__title i,
  .inquiry-form__title i,
  .location-map__title i,
  .order-faq__title i {
    font-size: 1.5rem;
  }

  .contact-method {
    padding: 1.5rem;
  }

  .contact-method__features {
    flex-direction: column;
  }

  .social-platform {
    padding: 1.5rem;
  }

  .schedule-section {
    padding: 1.5rem;
  }

  .schedule-row {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    text-align: center;
  }

  .form-group-row {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .direction-item {
    padding: 1rem;
  }

  .map-overlay {
    position: static;
    margin-bottom: 1rem;
  }

  .faq-contact__buttons {
    flex-direction: column;
    align-items: center;
  }

  .faq-contact__button {
    justify-content: center;
    width: 100%;
    max-width: 200px;
  }
}


@media (max-width: 480px) {

  .contact-information,
  .social-connections,
  .operating-schedule,
  .inquiry-form,
  .location-map,
  .order-faq {
    padding: 2rem 0;
  }

  .contact-information__title,
  .social-connections__title,
  .operating-schedule__title,
  .inquiry-form__title,
  .location-map__title,
  .order-faq__title {
    font-size: 1.8rem;
  }

  .checkbox-text {
    font-size: 0.85rem;
  }

  .checkmark {
    width: 18px;
    height: 18px;
  }

  .checkbox-label .checkmark:after {
    top: 1px;
    left: 5px;
    width: 4px;
    height: 8px;
  }

  .contact-method {
    padding: 1rem;
  }

  .social-platform {
    padding: 1rem;
  }

  .schedule-section {
    padding: 1rem;
  }

  .inquiry-form__form {
    padding: 1.5rem;
  }

  .location-details,
  .location-features,
  .location-directions {
    padding: 1.5rem;
  }

  .faq-category {
    padding: 1.5rem;
  }

  .faq-contact {
    padding: 2rem;
  }

  .map-container {
    height: 300px;
  }
}


.contact-method:nth-child(1) {
  animation-delay: 0.1s;
}

.contact-method:nth-child(2) {
  animation-delay: 0.2s;
}

.contact-method:nth-child(3) {
  animation-delay: 0.3s;
}

.contact-method:nth-child(4) {
  animation-delay: 0.4s;
}

.social-platform:nth-child(1) {
  animation-delay: 0.1s;
}

.social-platform:nth-child(2) {
  animation-delay: 0.2s;
}

.social-platform:nth-child(3) {
  animation-delay: 0.3s;
}

.social-platform:nth-child(4) {
  animation-delay: 0.4s;
}

.schedule-section:nth-child(1) {
  animation-delay: 0.1s;
}

.schedule-section:nth-child(2) {
  animation-delay: 0.2s;
}

.schedule-section:nth-child(3) {
  animation-delay: 0.3s;
}


@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact-information,
.social-connections,
.operating-schedule,
.inquiry-form,
.location-map,
.order-faq {
  animation: fadeInUp 0.8s ease-out;
}


.faq-answer {
  max-height: 0;
  padding-top: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease, opacity 0.3s ease;
}

.faq-item.active .faq-answer {
  padding-top: 0.5rem;
  opacity: 1;
}


.faq-question i {
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}


.faq-item:hover .faq-question h4 {
  color: var(--secondary-color);
}

.faq-item.active .faq-question {
  border-left: 4px solid var(--secondary-color);
  background: var(--bg-color);
}

.faq-item.active .faq-question h4 {
  color: var(--main-color);
}


.faq-item {
  animation: fadeInUp 0.6s ease-out;
}

.faq-item:nth-child(1) {
  animation-delay: 0.1s;
}

.faq-item:nth-child(2) {
  animation-delay: 0.2s;
}

.faq-item:nth-child(3) {
  animation-delay: 0.3s;
}

.faq-item:nth-child(4) {
  animation-delay: 0.4s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 425px) {
  .inquiry-form__container {
    padding: 0;
  }

  .benefit-item {
    flex-direction: column;
  }

  .inquiry-form__form,
  .form-benefits,
  .inquiry-form__header {
    padding: 0 .5rem;
  }
}