* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: #333;
  background: linear-gradient(135deg, #ffc9e0 0%, #bfe8f8 100%);
  min-height: 100vh;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.header {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: calc(100% - 40px);
  max-width: 1160px;
  background: hsla(0, 0%, 100%, 0.25);
  backdrop-filter: blur(10px);
  border: 1px solid hsla(0, 0%, 100%, 0.3);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(31, 38, 135, 0.37);
  transition: all 0.3s ease;
}
.header.scrolled {
  background: hsla(0, 0%, 100%, 0.15);
  backdrop-filter: blur(15px);
  transform: translateX(-50%) translateY(-5px);
  box-shadow: 0 12px 40px rgba(31, 38, 135, 0.5);
}
.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
}
.logo h1 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ff80ab;
  margin-bottom: 0;
}
.logo span {
  font-size: 0.8rem;
  color: #b089f7;
  font-weight: 500;
}
.nav-list {
  display: flex;
  list-style: none;
  gap: 30px;
}
.nav-list a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 12px;
  transition: all 0.3s ease;
  position: relative;
}
.nav-list a:hover,
.nav-list a.active {
  background: rgba(255, 128, 171, 0.2);
  color: #ff80ab;
  transform: translateY(-2px);
}
.mobile-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}
.mobile-toggle span {
  width: 25px;
  height: 3px;
  background: #ff80ab;
  margin: 3px 0;
  border-radius: 2px;
  transition: 0.3s;
}
.mobile-toggle.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-7px, 6px);
}
.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}
.mobile-toggle.active span:nth-child(3) {
  transform: rotate(45deg) translate(-6px, -6px);
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(255, 201, 224, 0.95);
  backdrop-filter: blur(20px);
  z-index: 999;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.mobile-nav {
  list-style: none;
  text-align: center;
}
.mobile-nav li {
  margin: 20px 0;
}
.mobile-nav a {
  text-decoration: none;
  color: #333;
  font-size: 1.5rem;
  font-weight: 600;
  padding: 15px 30px;
  border-radius: 15px;
  transition: all 0.3s ease;
  display: block;
}
.mobile-nav a:hover {
  background: rgba(255, 128, 171, 0.3);
  color: #ff80ab;
  transform: scale(1.05);
}
.main-content {
  margin-top: 100px;
}
.hero {
  position: relative;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 20px;
  margin: 20px;
}
.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(255, 201, 224, 0.7) 0%,
    rgba(191, 232, 248, 0.7) 100%
  );
  z-index: 2;
  border-radius: 20px;
}
.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: #fff;
}
.hero-title {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease;
}
.hero-subtitle {
  display: block;
  font-size: 1.5rem;
  font-weight: 400;
  color: #b089f7;
  margin-top: 10px;
}
.hero-description {
  font-size: 1.2rem;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease 0.2s both;
}
.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  animation: fadeInUp 1s ease 0.4s both;
}
.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: linear-gradient(135deg, #ff80ab, #b089f7);
  color: #fff;
  box-shadow: 0 4px 15px rgba(255, 128, 171, 0.4);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 128, 171, 0.6);
}
.btn-secondary {
  background: hsla(0, 0%, 100%, 0.9);
  color: #ff80ab;
  border: 2px solid rgba(255, 128, 171, 0.3);
}
.btn-secondary:hover {
  background: rgba(255, 128, 171, 0.1);
  transform: translateY(-3px);
}
.btn-small {
  padding: 8px 20px;
  font-size: 0.9rem;
}
.btn-large {
  padding: 15px 40px;
  font-size: 1.1rem;
}
.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 50px;
  position: relative;
}
.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #ff80ab, #b089f7);
  border-radius: 2px;
}
.features {
  padding: 80px 0;
  background: hsla(0, 0%, 100%, 0.1);
  backdrop-filter: blur(10px);
  margin: 40px 20px;
  border-radius: 20px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 60px;
}
.feature-card {
  background: hsla(0, 0%, 100%, 0.9);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 128, 171, 0.1);
  animation: fadeInUp 0.6s ease;
}
.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(255, 128, 171, 0.2);
}
.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #ff80ab, #b089f7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.feature-icon i {
  font-size: 2rem;
  color: #fff;
}
.feature-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
}
.feature-card p {
  color: #666;
  line-height: 1.6;
}
.menu-highlights {
  padding: 80px 0;
}
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 60px;
}
.highlight-item {
  background: hsla(0, 0%, 100%, 0.9);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 128, 171, 0.1);
}
.highlight-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(255, 128, 171, 0.2);
}
.highlight-image {
  height: 200px;
  overflow: hidden;
}
.highlight-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.highlight-item:hover .highlight-image img {
  transform: scale(1.1);
}
.highlight-content {
  padding: 25px;
}
.highlight-content h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}
.highlight-content p {
  color: #666;
  margin-bottom: 15px;
}
.price {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ff80ab;
}
.highlights-cta {
  text-align: center;
  margin-top: 50px;
}
.about {
  padding: 80px 0;
  background: hsla(0, 0%, 100%, 0.1);
  backdrop-filter: blur(10px);
  margin: 40px 20px;
  border-radius: 20px;
}
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
}
.about-text p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 20px;
  line-height: 1.7;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}
.stat {
  text-align: center;
}
.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #ff80ab;
}
.stat-label {
  font-size: 0.9rem;
  color: #666;
  font-weight: 500;
}
.about-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.location-preview {
  padding: 80px 0;
}
.location-content {
  background: hsla(0, 0%, 100%, 0.9);
  padding: 50px;
  border-radius: 20px;
  text-align: center;
  border: 1px solid rgba(255, 128, 171, 0.1);
}
.info-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin: 20px 0;
  font-size: 1.1rem;
  color: #666;
}
.info-item i {
  color: #ff80ab;
  font-size: 1.2rem;
}
.page-header {
  padding: 120px 0 60px;
  text-align: center;
  background: linear-gradient(
    135deg,
    rgba(255, 201, 224, 0.3),
    rgba(191, 232, 248, 0.3)
  );
  margin: 20px;
  border-radius: 20px;
}
.page-header h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
}
.page-header p {
  font-size: 1.2rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}
.menu-categories {
  padding: 40px 0;
}
.category-tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.tab-btn {
  padding: 12px 25px;
  background: hsla(0, 0%, 100%, 0.7);
  border: 2px solid rgba(255, 128, 171, 0.3);
  border-radius: 50px;
  font-weight: 600;
  color: #666;
  cursor: pointer;
  transition: all 0.3s ease;
}
.tab-btn.active,
.tab-btn:hover {
  background: linear-gradient(135deg, #ff80ab, #b089f7);
  color: #fff;
  border-color: rgba(0, 0, 0, 0);
  transform: translateY(-2px);
}
.menu-section {
  padding: 60px 0;
}
.menu-category {
  margin-bottom: 80px;
}
.menu-category h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 40px;
  text-align: center;
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}
.menu-item {
  background: hsla(0, 0%, 100%, 0.9);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 128, 171, 0.1);
}
.menu-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(255, 128, 171, 0.2);
}
.menu-image {
  height: 200px;
  overflow: hidden;
}
.menu-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.menu-item:hover .menu-image img {
  transform: scale(1.05);
}
.menu-content {
  padding: 25px;
}
.menu-content h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}
.menu-content p {
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
}
.menu-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.menu-icons {
  display: flex;
  gap: 10px;
}
.menu-icons i {
  color: #b089f7;
  font-size: 1.1rem;
}
.menu-note {
  padding: 60px 0;
  background: hsla(0, 0%, 100%, 0.1);
  backdrop-filter: blur(10px);
  margin: 40px 20px;
  border-radius: 20px;
}
.note-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 40px;
}
.note-content h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #ff80ab;
  margin-bottom: 15px;
}
.note-content p {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.7;
}
.contact-info {
  padding: 60px 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}
.contact-card {
  background: hsla(0, 0%, 100%, 0.9);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 128, 171, 0.1);
}
.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(255, 128, 171, 0.2);
}
.contact-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ff80ab, #b089f7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.contact-icon i {
  font-size: 1.5rem;
  color: #fff;
}
.contact-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}
.contact-card p {
  color: #666;
  margin-bottom: 5px;
}
.contact-card span {
  font-size: 0.9rem;
  color: #999;
}
.map-section {
  padding: 60px 0;
}
.map-section h2 {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 40px;
}
.map-container {
  background: hsla(0, 0%, 100%, 0.9);
  padding: 20px;
  border-radius: 20px;
  margin-bottom: 30px;
  border: 1px solid rgba(255, 128, 171, 0.1);
}
.map-container iframe {
  border-radius: 15px;
  width: 100%;
}
.map-info {
  background: hsla(0, 0%, 100%, 0.9);
  padding: 30px;
  border-radius: 20px;
  border: 1px solid rgba(255, 128, 171, 0.1);
}
.transport-info h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 20px;
  text-align: center;
}
.transport-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}
.transport-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: rgba(255, 128, 171, 0.1);
  border-radius: 10px;
}
.transport-item i {
  color: #ff80ab;
  font-size: 1.2rem;
}
.contact-form-section {
  padding: 80px 0;
  background: hsla(0, 0%, 100%, 0.1);
  backdrop-filter: blur(10px);
  margin: 40px 20px;
  border-radius: 20px;
}
.form-wrapper {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.form-wrapper h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
}
.form-wrapper p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 40px;
  line-height: 1.6;
}
.contact-form {
  background: hsla(0, 0%, 100%, 0.9);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(255, 128, 171, 0.1);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.form-group {
  margin-bottom: 20px;
  text-align: left;
}
.form-group label {
  display: block;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid rgba(255, 128, 171, 0.2);
  border-radius: 10px;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: hsla(0, 0%, 100%, 0.8);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #ff80ab;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(255, 128, 171, 0.1);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.hours-section {
  padding: 60px 0;
}
.hours-section h2 {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 40px;
}
.hours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}
.hours-card {
  background: hsla(0, 0%, 100%, 0.9);
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 128, 171, 0.1);
}
.hours-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(255, 128, 171, 0.2);
}
.hours-card h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}
.hours-card p {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ff80ab;
  margin-bottom: 10px;
}
.hours-card span {
  font-size: 0.9rem;
  color: #666;
}
.testimonial-stats {
  padding: 60px 0;
  background: hsla(0, 0%, 100%, 0.1);
  backdrop-filter: blur(10px);
  margin: 40px 20px;
  border-radius: 20px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}
.stat-card {
  background: hsla(0, 0%, 100%, 0.9);
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 128, 171, 0.1);
}
.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(255, 128, 171, 0.2);
}
.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ff80ab;
  display: block;
  margin-bottom: 10px;
}
.stat-label {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
}
.stars {
  color: gold;
  margin: 10px 0;
}
.stat-source {
  font-size: 0.9rem;
  color: #666;
}
.featured-reviews {
  padding: 80px 0;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 60px;
}
.review-card {
  background: hsla(0, 0%, 100%, 0.9);
  padding: 30px;
  border-radius: 20px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 128, 171, 0.1);
}
.review-card.featured {
  grid-column: span 2;
  background: linear-gradient(
    135deg,
    rgba(255, 201, 224, 0.3),
    rgba(191, 232, 248, 0.3)
  );
}
.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(255, 128, 171, 0.2);
}
.review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}
.reviewer-info {
  display: flex;
  gap: 15px;
  align-items: center;
}
.reviewer-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
}
.reviewer-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.reviewer-details h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
}
.reviewer-details span {
  font-size: 0.9rem;
  color: #666;
}
.review-rating {
  text-align: right;
}
.rating-date {
  font-size: 0.8rem;
  color: #999;
  display: block;
  margin-top: 5px;
}
.review-content p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 15px;
}
.review-images {
  display: flex;
  gap: 10px;
}
.review-images img {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  object-fit: cover;
}
.review-categories {
  padding: 80px 0;
  background: hsla(0, 0%, 100%, 0.1);
  backdrop-filter: blur(10px);
  margin: 40px 20px;
  border-radius: 20px;
}
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 60px;
}
.category-card {
  background: hsla(0, 0%, 100%, 0.9);
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 128, 171, 0.1);
}
.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(255, 128, 171, 0.2);
}
.category-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ff80ab, #b089f7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.category-icon i {
  font-size: 1.5rem;
  color: #fff;
}
.category-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}
.category-rating {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ff80ab;
  margin-bottom: 10px;
}
.category-card p {
  color: #666;
  font-style: italic;
}
.leave-review {
  padding: 80px 0;
}
.review-cta {
  background: hsla(0, 0%, 100%, 0.9);
  padding: 50px;
  border-radius: 20px;
  text-align: center;
  border: 1px solid rgba(255, 128, 171, 0.1);
}
.review-cta h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
}
.review-cta p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 30px;
}
.review-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.review-buttons .btn {
  display: flex;
  align-items: center;
  gap: 10px;
}
.legal-content {
  padding: 60px 0;
}
.legal-text {
  max-width: 800px;
  margin: 0 auto;
  background: hsla(0, 0%, 100%, 0.9);
  padding: 50px;
  border-radius: 20px;
  border: 1px solid rgba(255, 128, 171, 0.1);
}
.legal-section {
  margin-bottom: 40px;
}
.legal-section h2 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(255, 128, 171, 0.2);
}
.legal-section h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #ff80ab;
  margin: 20px 0 10px;
}
.legal-section p {
  color: #666;
  line-height: 1.7;
  margin-bottom: 15px;
}
.legal-section ul {
  color: #666;
  line-height: 1.7;
  margin-left: 20px;
  margin-bottom: 15px;
}
.legal-section li {
  margin-bottom: 8px;
}
.legal-section a {
  color: #ff80ab;
  text-decoration: none;
}
.legal-section a:hover {
  text-decoration: underline;
}
.last-updated {
  font-style: italic;
  color: #999;
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 128, 171, 0.2);
}
footer {
  background: linear-gradient(
    135deg,
    rgba(255, 201, 224, 0.8),
    rgba(191, 232, 248, 0.8)
  );
  backdrop-filter: blur(10px);
  padding: 60px 0 20px;
  margin-top: 60px;
}
.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}
.footer-section h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
}
.footer-section h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
}
.footer-section p {
  color: #666;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-section i {
  color: #ff80ab;
  width: 16px;
}
.footer-section ul {
  list-style: none;
}
.footer-section ul li {
  margin-bottom: 8px;
}
.footer-section ul li a {
  color: #666;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-section ul li a:hover,
.footer-section ul li a.active {
  color: #ff80ab;
}
.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 128, 171, 0.2);
  color: #666;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}
@media (max-width: 768px) {
  .header {
    top: 10px;
    width: calc(100% - 20px);
  }
  .header-content {
    padding: 12px 20px;
  }
  .nav {
    display: none;
  }
  .mobile-toggle {
    display: flex;
  }
  .hero {
    height: 60vh;
    margin: 10px;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-subtitle {
    font-size: 1.2rem;
  }
  .hero-description {
    font-size: 1rem;
  }
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  .section-title {
    font-size: 2rem;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .highlights-grid {
    grid-template-columns: 1fr;
  }
  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-stats {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .review-card.featured {
    grid-column: span 1;
  }
  .review-header {
    flex-direction: column;
    gap: 15px;
  }
  .review-buttons {
    flex-direction: column;
  }
  .legal-text {
    padding: 30px 20px;
  }
  .page-header h1 {
    font-size: 2.2rem;
  }
  .page-header p {
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
  .hero-title {
    font-size: 2rem;
  }
  .section-title {
    font-size: 1.8rem;
  }
  .highlights-grid,
  .menu-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .contact-form {
    padding: 25px 20px;
  }
  .form-wrapper {
    padding: 0 10px;
  }
  .transport-options {
    grid-template-columns: 1fr;
  }
}
.loading {
  opacity: 0.5;
  pointer-events: none;
}
.fade-in {
  animation: fadeInUp 0.6s ease;
}
.hover-lift:hover {
  transform: translateY(-5px);
  transition: transform 0.3s ease;
}
*:focus {
  outline: 2px solid rgba(255, 128, 171, 0.5);
  outline-offset: 2px;
}
@media print {
  .header,
  .mobile-menu,
  footer,
  .btn {
    display: none;
  }
  .main-content {
    margin-top: 0;
  }
  body {
    background: #fff;
    color: #000;
  }
}
