* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #1e40af;
  --secondary-color: #f59e0b;
  --accent-color: #06b6d4;
  --dark-color: #1f2937;
  --light-color: #f3f4f6;
  --white: #ffffff;
  --text-dark: #111827;
  --text-light: #6b7280;
  --gradient-1: linear-gradient(135deg, #1e40af 0%, #06b6d4 100%);
  --gradient-2: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
}

body {
  line-height: 1.6;
  color: var(--text-dark);
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Transparent Header with Scroll Effect */
.gastro-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.4s ease;
  background: transparent;
  padding: 20px 0;
}

.gastro-header.scrolled {
  background: rgba(30, 64, 175, 0.95);
  backdrop-filter: blur(10px);
  padding: 15px 0;
  box-shadow: var(--shadow-md);
}

.gastro-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.gastro-header .logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: bold;
  color: var(--white);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.gastro-header .logo i {
  font-size: 28px;
  color: var(--secondary-color);
}

.nav-menu ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-menu a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary-color);
  transition: width 0.3s ease;
}

.nav-menu a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 24px;
  cursor: pointer;
}

/* Hero Section */
.gastro-hero {
  height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url("image/plovbg.jpg")
    center / cover;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: var(--white);
  text-align: center;
}
a {
  text-decoration: none;
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.5) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 20px;
}

.hero-title {
  font-size: 64px;
  font-weight: bold;
  margin-bottom: 20px;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 1s ease;
}

.hero-subtitle {
  font-size: 24px;
  margin-bottom: 40px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 1s ease 0.2s backwards;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 60px;
  animation: fadeInUp 1s ease 0.4s backwards;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.stat-item i {
  font-size: 48px;
  color: var(--secondary-color);
}

.stat-number {
  font-size: 48px;
  font-weight: bold;
  color: var(--white);
}

.stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

.scroll-indicator i {
  font-size: 32px;
  color: var(--white);
}

/* Section Styles */
section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  padding: 8px 20px;
  background: var(--gradient-1);
  color: var(--white);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-header h2 {
  font-size: 48px;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.section-header p {
  font-size: 18px;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
}

.section-header.light h2,
.section-header.light p {
  color: var(--white);
}

/* Cuisine Intro Section */
.cuisine-intro {
  background: var(--light-color);
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.intro-card {
  background: var(--white);
  padding: 40px;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  text-align: center;
}

.intro-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.intro-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.intro-icon i {
  font-size: 36px;
  color: var(--white);
}

.intro-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.intro-card p {
  color: var(--text-light);
  line-height: 1.8;
}

/* Signature Dishes Section */
.dishes-showcase {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.dish-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.dish-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.main-dish {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.dish-image {
  position: relative;
  overflow: hidden;
}

.dish-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.dish-card:hover .dish-image img {
  transform: scale(1.1);
}

.dish-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--gradient-2);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.dish-content {
  padding: 30px;
}

.dish-content h3 {
  font-size: 32px;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.dish-rating {
  display: flex;
  gap: 5px;
  margin-bottom: 15px;
}

.dish-rating i {
  color: var(--secondary-color);
}

.dish-content p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 20px;
}

.dish-features {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.dish-features span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-light);
  font-size: 14px;
}

.dish-features i {
  color: var(--primary-color);
}

.dishes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.dishes-grid .dish-card .dish-image {
  height: 250px;
}

.dish-price {
  display: inline-block;
  margin-top: 15px;
  padding: 8px 16px;
  background: var(--gradient-1);
  color: var(--white);
  border-radius: 50px;
  font-weight: 600;
}

/* Regional Cuisine Section */
.regional-cuisine {
  background: var(--light-color);
}

.regions-tabs {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.tabs-nav {
  display: flex;
  background: var(--dark-color);
  overflow-x: auto;
}

.tab-btn {
  flex: 1;
  padding: 20px 30px;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 600;
  white-space: nowrap;
}

.tab-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.tab-btn.active {
  background: var(--primary-color);
  color: var(--white);
}

.tab-btn i {
  font-size: 20px;
}

.tabs-content {
  padding: 40px;
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

.region-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.region-image {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.region-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.region-info h3 {
  font-size: 32px;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.region-info > p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 25px;
}

.region-dishes {
  list-style: none;
  margin-bottom: 30px;
}

.region-dishes li {
  padding: 12px 0;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--light-color);
}

.region-dishes i {
  color: var(--primary-color);
}

/* Street Food Section */
.street-food {
  background: var(--dark-color);
  color: var(--white);
}

.street-food .section-header h2,
.street-food .section-header p {
  color: var(--white);
}

.street-carousel {
  position: relative;
  overflow: hidden;
  padding: 20px 0;
}

.carousel-container {
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 30px;
  transition: transform 0.5s ease;
}

.street-card {
  min-width: 300px;
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.street-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.street-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.street-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.street-card:hover .street-image img {
  transform: scale(1.1);
}

.street-overlay {
  position: absolute;
  top: 15px;
  right: 15px;
}

.street-price {
  background: var(--gradient-2);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
}

.street-info {
  padding: 20px;
}

.street-info h4 {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.street-info p {
  color: var(--text-light);
  font-size: 14px;
  margin-bottom: 15px;
}

.street-meta {
  display: flex;
  gap: 15px;
  font-size: 12px;
  color: var(--text-light);
}

.street-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--white);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  z-index: 10;
}

.carousel-btn:hover {
  background: var(--primary-color);
  color: var(--white);
}

.carousel-btn.prev {
  left: 20px;
}

.carousel-btn.next {
  right: 20px;
}

/* Restaurants Section */
.restaurants {
  background: var(--light-color);
}

.restaurants-grid {
  display: grid;
  gap: 30px;
}

.restaurant-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.restaurant-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.restaurant-card.featured {
  grid-column: 1 / -1;
}

.restaurant-card.featured .restaurant-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 40px;
}

.restaurant-image {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.restaurant-card.featured .restaurant-image {
  height: 100%;
  grid-column: 1;
  grid-row: 1;
}

.restaurant-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.restaurant-card:hover .restaurant-image img {
  transform: scale(1.1);
}

.restaurant-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--gradient-2);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.restaurant-content {
  padding: 25px;
}

.restaurant-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.restaurant-header h3 {
  font-size: 24px;
  color: var(--text-dark);
}

.restaurant-rating {
  display: flex;
  align-items: center;
  gap: 5px;
  background: var(--secondary-color);
  color: var(--white);
  padding: 5px 12px;
  border-radius: 50px;
  font-weight: 600;
}

.restaurant-content > p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 20px;
}

.restaurant-features {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--light-color);
}

.restaurant-features span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-light);
  font-size: 14px;
}

.restaurant-features i {
  color: var(--primary-color);
}

.restaurant-specialties {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.specialty-tag {
  padding: 6px 14px;
  background: var(--light-color);
  color: var(--text-dark);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
}

/* Markets Section */
.markets {
  position: relative;
}

.markets-parallax {
  background: linear-gradient(rgba(30, 64, 175, 0.9), rgba(6, 182, 212, 0.9)),
    url("image/bazaar.jpg") center / cover fixed;
  padding: 100px 0;
}

.markets-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.market-card {
  background: rgba(255, 255, 255, 0.95);
  padding: 40px;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  transition: all 0.3s ease;
  text-align: center;
}

.market-card:hover {
  transform: translateY(-10px);
  background: var(--white);
}

.market-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.market-icon i {
  font-size: 36px;
  color: var(--white);
}

.market-card h3 {
  font-size: 26px;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.market-location {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 15px;
}

.market-card > p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 20px;
}

.market-highlights {
  list-style: none;
  text-align: left;
}

.market-highlights li {
  padding: 10px 0;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--light-color);
}

.market-highlights i {
  color: var(--primary-color);
}

/* Cooking Classes Section */
.cooking-classes {
  background: var(--light-color);
}

.classes-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.class-card {
  background: var(--white);
  padding: 40px;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.class-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--gradient-1);
}

.class-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.class-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 72px;
  font-weight: bold;
  color: rgba(30, 64, 175, 0.1);
}

.class-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient-2);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.class-icon i {
  font-size: 32px;
  color: var(--white);
}

.class-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.class-card p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 20px;
}

.class-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 25px;
  padding: 20px;
  background: var(--light-color);
  border-radius: 10px;
}

.class-details span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-dark);
  font-size: 14px;
}

.class-details i {
  color: var(--primary-color);
}

/* Tea Culture Section */
.tea-culture {
  background: var(--white);
}

.tea-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.tea-text h2 {
  font-size: 42px;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.tea-text > p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 30px;
  font-size: 18px;
}

.tea-types {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}

.tea-type {
  display: flex;
  gap: 20px;
  padding: 20px;
  background: var(--light-color);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.tea-type:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: translateX(10px);
}

.tea-type:hover .tea-type-icon {
  background: var(--white);
}

.tea-type:hover .tea-type-icon i {
  color: var(--primary-color);
}

.tea-type:hover h4,
.tea-type:hover p {
  color: var(--white);
}

.tea-type-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tea-type-icon i {
  font-size: 28px;
  color: var(--white);
}

.tea-type-info h4 {
  font-size: 20px;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.tea-type-info p {
  color: var(--text-light);
  font-size: 14px;
}

.tea-tradition {
  padding: 25px;
  background: var(--light-color);
  border-radius: 15px;
  border-left: 4px solid var(--primary-color);
}

.tea-tradition h4 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.tea-tradition h4 i {
  color: var(--primary-color);
}

.tea-tradition ul {
  list-style: none;
}

.tea-tradition li {
  padding: 8px 0;
  color: var(--text-dark);
  padding-left: 25px;
  position: relative;
}

.tea-tradition li::before {
  content: "•";
  position: absolute;
  left: 10px;
  color: var(--primary-color);
  font-size: 20px;
}

.tea-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.tea-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tea-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: 40px;
}

.tea-fact {
  color: var(--white);
}

.tea-fact i {
  font-size: 24px;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.tea-fact p {
  font-size: 20px;
  font-style: italic;
  margin-bottom: 10px;
  line-height: 1.6;
}

.tea-fact span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

/* Desserts Section */
.desserts {
  background: var(--light-color);
}

.desserts-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.dessert-item {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  text-align: center;
}

.dessert-item:hover {
  transform: translateY(-10px) rotate(2deg);
  box-shadow: var(--shadow-lg);
}

.dessert-image {
  height: 220px;
  overflow: hidden;
  background: var(--light-color);
}

.dessert-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.dessert-item:hover .dessert-image img {
  transform: scale(1.2);
}

.dessert-item h4 {
  font-size: 20px;
  padding: 15px 20px 10px;
  color: var(--text-dark);
}

.dessert-item p {
  padding: 0 20px 20px;
  color: var(--text-light);
  font-size: 14px;
}

/* Tour Packages Section */
.tour-packages {
  background: var(--white);
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.package-card {
  background: var(--white);
  border: 2px solid var(--light-color);
  border-radius: 20px;
  padding: 40px;
  transition: all 0.3s ease;
  position: relative;
}

.package-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.package-card.featured {
  background: var(--gradient-1);
  color: var(--white);
  border: none;
  transform: scale(1.05);
}

.package-card.featured:hover {
  transform: scale(1.08) translateY(-10px);
}

.package-badge {
  position: absolute;
  top: -15px;
  right: 30px;
  background: var(--gradient-2);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
}

.package-header {
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 2px solid var(--light-color);
}

.package-card.featured .package-header {
  border-bottom-color: rgba(255, 255, 255, 0.3);
}

.package-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.package-card.featured .package-icon {
  background: var(--white);
}

.package-icon i {
  font-size: 36px;
  color: var(--white);
}

.package-card.featured .package-icon i {
  color: var(--primary-color);
}

.package-header h3 {
  font-size: 28px;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.package-card.featured h3 {
  color: var(--white);
}

.package-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 5px;
}

.price-amount {
  font-size: 48px;
  font-weight: bold;
  color: var(--primary-color);
}

.package-card.featured .price-amount {
  color: var(--white);
}

.price-period {
  font-size: 16px;
  color: var(--text-light);
}

.package-card.featured .price-period {
  color: rgba(255, 255, 255, 0.8);
}

.package-features {
  list-style: none;
  margin-bottom: 30px;
}

.package-features li {
  padding: 12px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-dark);
  border-bottom: 1px solid var(--light-color);
}

.package-card.featured .package-features li {
  color: var(--white);
  border-bottom-color: rgba(255, 255, 255, 0.2);
}

.package-features i {
  font-size: 18px;
}

.package-features .fa-check {
  color: #10b981;
}

.package-card.featured .package-features .fa-check {
  color: #34d399;
}

.package-features .fa-times {
  color: #ef4444;
}

.package-card.featured .package-features .fa-times {
  color: rgba(255, 255, 255, 0.5);
}

/* Buttons */
.btn-primary,
.btn-outline {
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-size: 16px;
  width: 100%;
}

.btn-primary {
  background: var(--gradient-1);
  color: var(--white);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-outline:hover {
  background: var(--primary-color);
  color: var(--white);
}

.package-card.featured .btn-primary {
  background: var(--white);
  color: var(--primary-color);
}

/* Enhanced Footer */
.gastro-footer {
  background: var(--dark-color);
  color: var(--white);
}

.footer-main {
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  gap: 40px;
}

.footer-about {
  padding-right: 20px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 20px;
}

.footer-logo i {
  font-size: 32px;
  color: var(--secondary-color);
}

.footer-about p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 25px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--primary-color);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-size: 20px;
  margin-bottom: 25px;
  color: var(--white);
  position: relative;
  padding-bottom: 12px;
}

.footer-col h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--secondary-color);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 5px;
}

.footer-links i {
  font-size: 12px;
  color: var(--secondary-color);
}

.footer-contacts {
  list-style: none;
}

.footer-contacts li {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-contacts i {
  color: var(--secondary-color);
  font-size: 18px;
  width: 20px;
}

.footer-subscribe {
  display: flex;
  margin-bottom: 25px;
}

.footer-subscribe input {
  flex: 1;
  padding: 12px 20px;
  border: none;
  border-radius: 50px 0 0 50px;
  outline: none;
}

.footer-subscribe button {
  padding: 12px 20px;
  background: var(--gradient-1);
  border: none;
  border-radius: 0 50px 50px 0;
  color: var(--white);
  cursor: pointer;
  transition: all 0.3s ease;
}

.footer-subscribe button:hover {
  background: var(--gradient-2);
}

.footer-certificates {
  display: flex;
  gap: 15px;
}

.footer-certificates img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.1);
  padding: 10px;
  border-radius: 10px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px 0;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom-content p {
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom-links {
  display: flex;
  gap: 15px;
  align-items: center;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: var(--white);
}

.footer-bottom-links span {
  color: rgba(255, 255, 255, 0.3);
}

.footer-payment {
  display: flex;
  gap: 15px;
  font-size: 28px;
}

.footer-payment i {
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.footer-payment i:hover {
  color: var(--white);
  transform: translateY(-3px);
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--gradient-1);
  border: none;
  border-radius: 50%;
  color: var(--white);
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
  box-shadow: var(--shadow-md);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* AOS Animations */
[data-aos] {
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
  opacity: 1;
}

[data-aos="fade-up"] {
  transform: translateY(50px);
}

[data-aos="fade-up"].aos-animate {
  transform: translateY(0);
}

[data-aos="fade-down"] {
  transform: translateY(-50px);
}

[data-aos="fade-down"].aos-animate {
  transform: translateY(0);
}

[data-aos="fade-left"] {
  transform: translateX(50px);
}

[data-aos="fade-left"].aos-animate {
  transform: translateX(0);
}

[data-aos="fade-right"] {
  transform: translateX(-50px);
}

[data-aos="fade-right"].aos-animate {
  transform: translateX(0);
}

[data-aos="zoom-in"] {
  transform: scale(0.8);
}

[data-aos="zoom-in"].aos-animate {
  transform: scale(1);
}

[data-aos="flip-left"] {
  transform: perspective(1000px) rotateY(-45deg);
}

[data-aos="flip-left"].aos-animate {
  transform: perspective(1000px) rotateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-about {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    background: rgba(30, 64, 175, 0.98);
    backdrop-filter: blur(10px);
    transition: left 0.3s ease;
    padding: 20px;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu ul {
    flex-direction: column;
    gap: 0;
  }

  .nav-menu li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-menu a {
    display: block;
    padding: 15px 0;
  }

  .menu-toggle {
    display: block;
  }

  .hero-title {
    font-size: 42px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .hero-stats {
    flex-direction: column;
    gap: 30px;
  }

  .section-header h2 {
    font-size: 36px;
  }

  .main-dish {
    grid-template-columns: 1fr;
  }

  .region-content {
    grid-template-columns: 1fr;
  }

  .tea-content {
    grid-template-columns: 1fr;
  }

  .restaurant-card.featured .restaurant-content {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
  }

  .carousel-btn.prev {
    left: 10px;
  }

  .carousel-btn.next {
    right: 10px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 32px;
  }

  .section-header h2 {
    font-size: 28px;
  }

  .tabs-nav {
    flex-direction: column;
  }

  .packages-grid {
    grid-template-columns: 1fr;
  }
  .hero-stats {
    display: none;
  }
}
.logo-image {
    width: 150px;
    height: 50px;
}
section {
  overflow: hidden;
}