/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Lato", sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar {
  padding: 1rem 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Logo */
.logo h2 {
  font-family: "Pacifico", cursive;
  background: linear-gradient(135deg, #90caf9, #ce93d8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.8rem;
  font-weight: 700;
  padding-right: 0.2rem;
  padding-bottom: 0.2rem;
  overflow: visible;
  white-space: nowrap;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.feature span {
  font-size: 14px;
  font-weight: 500;
}

/* For small screens - force single row */
@media (max-width: 768px) {
  .features {
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 15px;
    padding-bottom: 10px;
  }

  .feature {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    min-width: 200px;
  }

  .feature-icon {
    width: 30px;
    height: 30px;
  }

  .feature span {
    font-size: 12px;
    white-space: nowrap;
  }
}

/* Navigation hover effects */
.nav-menu a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-menu a:hover {
  color: #90caf9;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: #90caf9;
  transition: width 0.3s ease;
}

.nav-menu a:hover::after {
  width: 100%;
}

/* Language button */
.language-switcher {
  display: flex;
  align-items: center;
}

.lang-btn {
  background: none;
  border: 2px solid #90caf9;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  font-weight: 600;
  color: #999;
}

.lang-btn:hover {
  background: #90caf9;
  color: white;
}

.lang-text {
  font-size: 0.9rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #333;
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url("img/main.jpg?height=800&width=1200");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
  margin-bottom: 0;
  z-index: 1;
  margin-top: 0;
  padding-top: 0;
}

.hero-content {
  max-width: 800px;
  padding: 0 20px;
  animation: fadeInUp 1s ease;
  position: relative;
  z-index: 10;
}

.hero-title {
  font-family: "Playfair Display", serif;
  font-size: 3.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

/* CTA Button */
.cta-btn {
  text-decoration: none;
  background: #90caf9;
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-btn:hover {
  background: #b39ddb;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(144, 202, 249, 0.3);
}

/* Section Styles */
section {
  padding: 5rem 0;
}

.main-section {
  padding-top: 50px !important;
  padding-bottom: 5rem;
}

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

.section-header h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

/* About Section */
.about {
  background: #f8f8f8;
  margin-top: 0 !important;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: #555;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
  min-width: 200px;
  padding: 1rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.feature:hover {
  transform: translateY(-5px);
}

/* Feature icons */
.feature i {
  color: #90caf9;
}

/* Services Section */
.services {
  background: white;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.service-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
  position: relative;
  overflow: hidden;
}

/* Service card hover effect */
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(135deg, #90caf9, #b39ddb);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Service icons */
.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #90caf9, #b39ddb);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1);
}

.service-icon i {
  font-size: 2rem;
  color: white;
}

.service-content h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 1rem;
}

.service-content p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.service-features {
  list-style: none;
  padding: 0;
}

/* Service features checkmarks */
.service-features li {
  padding: 0.5rem 0;
  position: relative;
  padding-left: 1.5rem;
  color: #555;
}

.service-features li::before {
  content: "💎";
  position: absolute;
  left: 0;
  color: #90caf9;
  font-weight: bold;
}

/* Service Packages */
.service-packages {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 2px solid #f0f0f0;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.package-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.package-card.featured {
  border: 3px solid #90caf9;
  transform: scale(1.05);
}

.package-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.package-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Package headers */
.package-badge {
  position: absolute;
  top: 20px;
  right: -30px;
  background: #90caf9;
  color: white;
  padding: 0.5rem 2rem;
  font-weight: 600;
  font-size: 0.9rem;
  transform: rotate(45deg);
  z-index: 10;
}

/* Package headers */
.package-header {
  background: linear-gradient(135deg, #90caf9, #b39ddb);
  color: white;
  padding: 2rem;
  text-align: center;
}

.package-header h4 {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.package-price {
  font-size: 2.5rem;
  font-weight: 700;
}

.package-content {
  padding: 2rem;
}

.package-content ul {
  list-style: none;
  padding: 0;
}

.package-content li {
  padding: 0.75rem 0;
  border-bottom: 1px solid #eee;
  position: relative;
  padding-left: 2rem;
}

.package-content li:last-child {
  border-bottom: none;
}

/* Package content checkmarks */
.package-content li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #90caf9;
  font-weight: bold;
  font-size: 1.2rem;
}

/* Menu Section */
.menu {
  background: white;
  padding: 5rem 0;
}

.menu-container {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

/* Pricing Table */
.pricing-section {
  margin-bottom: 3rem;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pricing-table th,
.pricing-table td {
  padding: 1rem;
  text-align: center;
  border-bottom: 1px solid #eee;
  font-size: 1.1rem;
}

.pricing-table tr:hover {
  background: #f0f7ff;
}

.pricing-table tr:last-child td {
  border-bottom: none;
}

.pricing-table td:first-child {
  font-weight: 600;
  text-align: center;
}

.pricing-note {
  margin-top: 1.5rem;
  padding: 1rem;
  background: #e3f2fd;
  border-left: 4px solid #90caf9;
  border-radius: 0 5px 5px 0;
}

.pricing-note p {
  color: #555;
  font-style: italic;
}

/* Menu Categories */
.menu-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.menu-category {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
   display: flex;
    flex-direction: column;
    height: 100%;
}

.menu-category:hover {
  transform: translateY(-5px);
}

.menu-category-header {
  background: linear-gradient(135deg, #90caf9, #b39ddb);
  color: white;
  padding: 1.5rem;
  text-align: center;
}

.menu-category-header h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  margin: 0;
}

.menu-items {
  padding: 1.5rem;
}

.menu-items ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-items li {
  padding: 0.75rem 0;
  border-bottom: 1px solid #eee;
  position: relative;
  padding-left: 1.5rem;
}

.menu-items li:last-child {
  border-bottom: none;
}

.menu-items li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #90caf9;
  font-weight: bold;
}

.menu-note {
  font-style: italic;
  color: #666;
  margin-top: 0.5rem;
  font-size: 0.9rem;
}

.menu-selection {
  background: #e3f2fd;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  margin-top: 1rem;
  font-size: 0.9rem;
}

/* Gallery Section */
.gallery {
  background: #f8f8f8;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
  height: 250px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateY(0);
}

.gallery-item.shuffling {
  opacity: 0;
  transform: translateY(20px);
}

.gallery-item.fade-in-up {
  animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Add a subtle scale effect on hover during transitions */
.gallery-item:hover {
  transform: translateY(-5px) scale(1.02);
}

/* Smooth transition for image changes */
.gallery-item img {
  transition: opacity 0.3s ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

/* Gallery overlay */
.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(144, 202, 249, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay i {
  font-size: 2rem;
  color: white;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
  position: relative;
  margin: auto;
  padding: 20px;
  width: 90%;
  max-width: 800px;
  top: 50%;
  transform: translateY(-50%);
}

.modal-content img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

/* Close button hover */
.close:hover {
  color: #90caf9;
}

/* Modal navigation buttons */
.modal-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
}

/* Modal navigation buttons */
.prev,
.next {
  background: rgba(144, 202, 249, 0.8);
  color: white;
  border: none;
  padding: 0;
  cursor: pointer;
  border-radius: 50%;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.prev:hover,
.next:hover {
  background: rgba(144, 202, 249, 1);
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Location Section */
.location {
  background: white;
}

.location-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}

.location-info {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: #f8f8f8;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.info-item:hover {
  transform: translateY(-5px);
}

/* Location info icons */
.info-item i {
  color: #90caf9;
  margin-top: 0.5rem;
}

.info-item h4 {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #333;
}

.info-item p {
  color: #666;
}

.map-container {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  max-width: 1400px;
  width: 100%;
}

@media (min-width: 769px) {
  .map-container {
    width: 725px;
  }
}

@media (max-width: 768px) {
  .map-container {
    width: 100%;
    max-width: 500px;
  }
}

@media (max-width: 480px) {
  .map-container {
    width: 100%;
    max-width: 350px;
  }
}

/* Contact Section */
.contact {
  background: #f8f8f8;
}

.contact-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}

.contact-info {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .contact-info {
    flex-direction: column;
    align-items: center;
  }

  .contact-item,
  .social-media {
    width: 100%;
    max-width: 400px;
  }
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  flex: 1;
  min-width: 300px;
  max-width: 350px;
}


/* Contact item icons */
.contact-item i {
  color: #90caf9;
}

.contact-item h4 {
  font-family: "Playfair Display", serif;
  margin-bottom: 0.5rem;
}

.social-media {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  flex: 1;
  min-width: 280px;
  max-width: 350px;
}

.social-media:hover,
.contact-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.social-media h4 {
  font-family: "Playfair Display", serif;
  margin-bottom: 1rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

/* Social links */
.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: #90caf9;
  color: white;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: #b39ddb;
  transform: translateY(-3px);
}

.contact-form {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid #eee;
  border-radius: 5px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

/* Form focus states */
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #90caf9;
}

/* Submit button */
.submit-btn {
  background: #90caf9;
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 5px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.submit-btn:hover {
  background: #b39ddb;
  transform: translateY(-2px);
}

/* Footer */
.footer {
  background: #333;
  color: white;
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

/* Footer section headings */
.footer-section h3,
.footer-section h4 {
  font-family: "Playfair Display", serif;
  margin-bottom: 1rem;
  color: #90caf9;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

/* Footer links hover */
.footer-section ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #90caf9;
}

.footer-section p {
  color: #ccc;
  line-height: 1.6;
}

/* Footer section headings */
.footer-section p i {
  color: #90caf9;
  margin-right: 0.5rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #555;
  color: #ccc;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeInUp 0.6s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: white;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 2rem 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .location-content,
  .contact-content {
    grid-template-columns: 1fr;
  }

  .menu-content {
    grid-template-columns: 1fr;
  }

  .pricing-table {
    font-size: 0.9rem;
  }

  .pricing-table th,
  .pricing-table td {
    padding: 0.75rem 0.5rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .modal-content {
    width: 95%;
    padding: 10px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .cta-btn {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }

  .pricing-table {
    font-size: 0.8rem;
  }

  .pricing-table th,
  .pricing-table td {
    padding: 0.5rem 0.3rem;
  }

  .features {
    grid-template-columns: 1fr;
  }

  .social-links {
    justify-content: center;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Loading animation for images */
img {
  transition: opacity 0.3s ease;
}

img:not([src]) {
  opacity: 0;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Custom scrollbar */
::-webkit-scrollbar-thumb {
  background: #90caf9;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #b39ddb;
}

.floating-diamonds {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 2;
}

.diamond {
  position: absolute;
  width: 30px;
  height: 30px;
  opacity: 0;
  pointer-events: none;
  z-index: 3;
  --drift: 0px;
  background-image: url("img/icon/diamond_purple.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.diamond.sparkle {
  animation: elegantFloat 8s ease-in-out forwards;
}

.sparkle-point {
  position: absolute;
  width: 15px;
  height: 15px;
  background-image: url("img/icon/sparkle.png");
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 5;
  animation: sparkleFlash 1.5s ease-in-out infinite;
}

@keyframes sparkleFlash {

  0%,
  70%,
  100% {
    opacity: 0;
    transform: scale(0.5);
  }

  15%,
  55% {
    opacity: 1;
    transform: scale(1.2);
  }
}

.diamond.small {
  width: 20px;
  height: 20px;
}

.diamond.large {
  width: 40px;
  height: 40px;
}

@keyframes elegantFloat {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }

  10% {
    opacity: 0.9;
    transform: scale(1);
  }

  80% {
    opacity: 0.9;
    transform: scale(1);
  }

  100% {
    transform: scale(0.8);
  }
}

@keyframes sparkle {

  0%,
  100% {
    filter: brightness(1) saturate(1);
  }

  25% {
    filter: brightness(1.3) saturate(1.2);
  }

  50% {
    filter: brightness(1.6) saturate(1.4);
  }

  75% {
    filter: brightness(1.3) saturate(1.2);
  }
}

.diamond.small::before {
  width: 16px;
  height: 6px;
}

.diamond.small::after {
  top: 4px;
  border-left-width: 8px;
  border-right-width: 8px;
  border-top-width: 12px;
}

.diamond.large::before {
  width: 32px;
  height: 11px;
}

.diamond.large::after {
  top: 9px;
  border-left-width: 16px;
  border-right-width: 16px;
  border-top-width: 24px;
}

.diamond::before,
.diamond::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  background-image: url("img/icon/sparkle.png");
  /* Your sparkle icon */
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0;
  z-index: 4;
}

.diamond::before {
  top: 20%;
  left: 15%;
  animation: sparkleFlash 2s ease-in-out infinite;
}

.diamond::after {
  top: 60%;
  right: 20%;
  animation: sparkleFlash 2s ease-in-out infinite 0.5s;
  /* Offset timing */
}

@keyframes fadeOutDiamond {
  0% {
    opacity: 0.9;
    transform: scale(1);
  }

  100% {
    opacity: 0;
    /* transform: scale(0.9); */
  }
}

.diamond.fade-out {
  animation: fadeOutDiamond 1.2s ease-in-out forwards;
}

/* Menu Download Button Styles */
.menu-download-section {
  text-align: center;
  margin: 2rem 0;
  padding: 1.5rem;
  background: linear-gradient(135deg, #e3f2fd, #f8f9fa);
  border-radius: 15px;
  border: 1px solid #e0e0e0;
}

.menu-download-btn {
  background: linear-gradient(135deg, #90caf9, #64b5f6);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 25px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 4px 15px rgba(144, 202, 249, 0.3);
  text-decoration: none;
}

.menu-download-btn:hover {
  background: linear-gradient(135deg, #64b5f6, #42a5f5);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(144, 202, 249, 0.4);
}

.menu-download-btn:active {
  transform: translateY(-1px);
}

.menu-download-btn i {
  font-size: 1.2rem;
}

.download-note {
  margin-top: 0.75rem;
  color: #666;
  font-size: 0.95rem;
  font-style: italic;
}

@media (max-width: 768px) {
  .menu-download-btn {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }
}

.service-icon img {
  width: 3.5rem;
  height: 2.8rem;
  filter: brightness(0) invert(1);
  /* Makes the image white */
  transition: transform 0.3s ease;
  object-fit: contain;
}

.feature-icon {
  width: 2rem;
  height: 2rem;
  /* filter: brightness(0) saturate(100%) invert(64%) sepia(42%) saturate(1234%) hue-rotate(180deg) brightness(95%) contrast(96%); Makes it blue like #90caf9 */
  transition: transform 0.3s ease;
  object-fit: contain;
}

.feature:hover .feature-icon {
  transform: scale(1.1);
}

.lang-active {
  color: #90caf9;
  font-size: 16px;
  font-weight: 700;
}

.lang-inactive {
  color: #999;
  font-size: 12px;
  font-weight: 400;
}

.lang-btn:hover .lang-active {
  color: white;
}

.lang-btn:hover .lang-inactive {
  color: rgba(255, 255, 255, 0.7);
}

.mobile-lang-item {
  display: none;
}

.mobile-lang-btn {
  background: none;
  border: 2px solid #90caf9;
  color: #999;
  padding: 8px 16px;
  border-radius: 25px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  margin-top: 20px;
}

.mobile-lang-btn:hover {
  background-color: #90caf9;
  color: white;
}

@media (max-width: 768px) {
  .language-switcher {
    display: none;
  }

  .mobile-lang-item {
    display: block;
    text-align: center;
  }
}

.menu-item.disabled {
  opacity: 0.5;
  pointer-events: none;
  background-color: #f5f5f5;
}

.menu-item.disabled label {
  color: #999;
  cursor: not-allowed;
}

.counter.complete {
  background-color: #4CAF50;
  color: white;
  font-weight: bold;
}

.counter.exceeded {
  background-color: #f44336;
  color: white;
  font-weight: bold;
}

/* Replace the previous social media CSS with this updated version */

/* Social Media Section - Side by Side Design */
.social-media-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

/* Animated background pattern */
.social-media-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 2px, transparent 2px),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.06) 1.5px, transparent 1.5px);
  background-size: 100px 100px, 150px 150px, 200px 200px;
  animation: backgroundMove 20s ease-in-out infinite;
  opacity: 0.7;
}

@keyframes backgroundMove {

  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }

  33% {
    transform: translate(30px, -30px) rotate(1deg);
  }

  66% {
    transform: translate(-20px, 20px) rotate(-1deg);
  }
}

.social-media-section .container {
  position: relative;
  z-index: 2;
}

/* Section Header */
.social-media-section .section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.social-media-section .section-header h2 {
  font-size: 3.5rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
  color: white;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  position: relative;
  display: inline-block;
}

.social-media-section .section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, #ff6b6b, #feca57, #48dbfb, #ff9ff3);
  border-radius: 2px;
  animation: colorShift 3s ease-in-out infinite;
}

@keyframes colorShift {

  0%,
  100% {
    background: linear-gradient(90deg, #ff6b6b, #feca57, #48dbfb, #ff9ff3);
  }

  50% {
    background: linear-gradient(90deg, #ff9ff3, #48dbfb, #feca57, #ff6b6b);
  }
}

.social-media-section .section-header p {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 300;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Social Platforms Grid */
.social-platforms-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Individual Platform Styling */
.social-platform {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 30px;
  padding: 1rem;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow:
    0 25px 50px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.social-platform::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: 30px 30px 0 0;
  transition: all 0.3s ease;
}

.social-platform:hover {
  transform: translateY(-10px);
  box-shadow:
    0 35px 70px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* Instagram Platform Specific */
.instagram-platform::before {
  background: linear-gradient(90deg, #f093fb, #f5576c, #4facfe, #00f2fe);
  background-size: 300% 100%;
  animation: gradientMove 3s ease infinite;
}

/* Facebook Platform Specific */
.facebook-platform::before {
  background: linear-gradient(90deg, #4267B2, #365899, #1877F2, #42A5F5);
  background-size: 300% 100%;
  animation: gradientMove 3s ease infinite;
}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* Platform Headers */
.platform-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.platform-header i {
  font-size: 2.5rem;
  padding: 1rem;
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

.instagram-platform .platform-header i {
  background: linear-gradient(45deg, #f093fb, #f5576c, #4facfe, #00f2fe);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: white;
}

.facebook-platform .platform-header i {
  background: linear-gradient(45deg, #4267B2, #365899, #1877F2, #42A5F5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: white;
}

.platform-header h3 {
  font-size: 2rem;
  font-weight: 600;
  color: white;
  margin: 0;
}


/* Social Embed Grid */
.social-embed-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

/* Instagram Media Styling */
.instagram-media {
  background: rgba(255, 255, 255, 0.95) !important;
  border-radius: 20px !important;
  overflow: hidden !important;
  box-shadow:
    0 15px 30px rgba(0, 0, 0, 0.2),
    0 0 0 1px rgba(255, 255, 255, 0.1) !important;
  transition: all 0.4s ease !important;
  border: none !important;
  margin: 0 !important;
  backdrop-filter: blur(10px) !important;
}

.instagram-media:hover {
  transform: translateY(-8px) scale(1.02) !important;
  box-shadow:
    0 25px 50px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.2) !important;
}

/* Facebook Widgets */
.facebook-page-widget {
  text-align: center;
  margin-bottom: 2rem;
}

.facebook-posts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.fb-page,
.fb-post {
  border-radius: 20px !important;
  overflow: hidden !important;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2) !important;
  transition: all 0.4s ease !important;
  backdrop-filter: blur(10px) !important;
}

.fb-page:hover,
.fb-post:hover {
  transform: translateY(-8px) scale(1.02) !important;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3) !important;
}

/* Profile Widget Styling */
.social-profile-widget {
  text-align: center;
  position: relative;
}

.social-profile-widget iframe {
  border-radius: 20px !important;
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.3),
    0 0 0 2px rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
  border: none !important;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
}

.social-profile-widget iframe:hover {
  transform: scale(1.02);
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.4),
    0 0 0 2px rgba(255, 255, 255, 0.2);
}

/* Social CTA Buttons */
.social-cta {
  text-align: center;
  margin-top: 2rem;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin: 1rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: white;
  padding: 1.5rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow:
    0 10px 25px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.social-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.social-btn:hover::before {
  left: 100%;
}

.social-btn:hover {
  transform: translateY(-5px) scale(1.05);
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

/* Instagram Button Specific */
.instagram-btn i {
  font-size: 1.5rem;
  background: linear-gradient(45deg, #f093fb, #f5576c, #4facfe, #00f2fe);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: iconPulse 2s ease-in-out infinite;
}

/* Facebook Button Specific */
.facebook-btn i {
  font-size: 1.5rem;
  background: linear-gradient(45deg, #4267B2, #365899, #1877F2, #42A5F5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }
}

/* Fallback Content Styling */
.social-embed-fallback {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  color: white;
  box-shadow:
    0 15px 30px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.social-embed-fallback h3,
.social-embed-fallback h4 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: white;
  font-weight: 500;
}

.social-embed-fallback p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
  font-size: 1rem;
  line-height: 1.6;
}

.fallback-btn {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  padding: 1rem 2rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.fallback-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Platform-specific fallback button colors */
.instagram-btn-style:hover {
  background: linear-gradient(45deg, rgba(240, 147, 251, 0.3), rgba(245, 87, 108, 0.3));
}

.facebook-btn-style:hover {
  background: linear-gradient(45deg, rgba(66, 103, 178, 0.3), rgba(24, 119, 242, 0.3));
}

/* Floating Elements */
.social-media-section::after {
  position: absolute;
  top: 8%;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 1.8rem;
  opacity: 0.3;
  letter-spacing: 2rem;
  animation: floatingIcons 8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes floatingIcons {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.3;
  }

  25% {
    transform: translateY(-15px) rotate(2deg);
    opacity: 0.5;
  }

  50% {
    transform: translateY(-8px) rotate(-1deg);
    opacity: 0.4;
  }

  75% {
    transform: translateY(-20px) rotate(1deg);
    opacity: 0.6;
  }
}

/* Responsive Design */
@media (max-width: 1200px) {
  .social-platforms-grid {
    gap: 3rem;
  }

  .social-platform {
    padding: 2.5rem;
  }
}

@media (max-width: 768px) {
  .social-media-section {
    min-height: auto;
    padding: 4rem 0;
  }

  .social-media-section .section-header h2 {
    font-size: 2.5rem;
  }

  .social-media-section .section-header p {
    font-size: 1.1rem;
  }

  .social-platforms-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .social-platform {
    padding: 2rem;
  }

  .platform-header {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .platform-header h3 {
    font-size: 1.8rem;
  }

  .social-profile-widget iframe {
    width: 100% !important;
    max-width: 400px;
    height: 400px !important;
  }

  .social-btn {
    padding: 1.2rem 2rem;
    font-size: 1rem;
    gap: 0.8rem;
  }

  .social-media-section::after {
    font-size: 1.5rem;
    letter-spacing: 1.5rem;
  }
}

@media (max-width: 480px) {
  .social-media-section .section-header h2 {
    font-size: 2rem;
  }

  .social-platform {
    padding: 1.5rem;
  }

  .platform-header i {
    font-size: 2rem;
    padding: 0.8rem;
  }

  .platform-header h3 {
    font-size: 1.5rem;
  }

  .social-btn {
    padding: 1rem 1.5rem;
    font-size: 0.9rem;
    border-radius: 30px;
    letter-spacing: 0.5px;
  }

  .social-btn i {
    font-size: 1.3rem;
  }

  .social-profile-widget iframe {
    height: 350px !important;
  }

  .social-media-section::after {
    display: none;
  }
}

/* Google Reviews Section */
.google-reviews-section {
  background: linear-gradient(135deg, #1a73e8 0%, #4285f4 50%, #34a853 100%);
  color: white;
  position: relative;
  overflow: hidden;
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: 5rem 0;
}

/* Animated background pattern for Google Reviews */
.google-reviews-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.1) 2px, transparent 2px),
    radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.06) 1.5px, transparent 1.5px);
  background-size: 120px 120px, 180px 180px, 240px 240px;
  animation: backgroundMove 25s ease-in-out infinite;
  opacity: 0.6;
}

.google-reviews-section .container {
  position: relative;
  z-index: 2;
}

/* Google Reviews Header */
.google-reviews-section .section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.google-reviews-section .section-header h2 {
  font-size: 3.5rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
  color: white;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  position: relative;
  display: inline-block;
}

.google-reviews-section .section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 3px;
  background: linear-gradient(90deg, #ea4335, #fbbc05, #34a853, #4285f4);
  border-radius: 2px;
  animation: googleColorShift 4s ease-in-out infinite;
}

@keyframes googleColorShift {

  0%,
  100% {
    background: linear-gradient(90deg, #ea4335, #fbbc05, #34a853, #4285f4);
  }

  25% {
    background: linear-gradient(90deg, #fbbc05, #34a853, #4285f4, #ea4335);
  }

  50% {
    background: linear-gradient(90deg, #34a853, #4285f4, #ea4335, #fbbc05);
  }

  75% {
    background: linear-gradient(90deg, #4285f4, #ea4335, #fbbc05, #34a853);
  }
}

.google-reviews-section .section-header p {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 300;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Google Reviews Container */
.google-reviews-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Google Reviews Widget */
.google-reviews-widget {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  padding: 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 25px 50px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.google-reviews-widget::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ea4335, #fbbc05, #34a853, #4285f4);
  background-size: 300% 100%;
  animation: gradientMove 4s ease infinite;
  border-radius: 30px 30px 0 0;
}

.google-reviews-widget:hover {
  transform: translateY(-10px);
  box-shadow:
    0 35px 70px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* Google Reviews Header */
.google-reviews-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.google-reviews-header i {
  font-size: 3rem;
  background: linear-gradient(45deg, #ea4335, #fbbc05, #34a853, #4285f4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: iconPulse 2s ease-in-out infinite;
}

.google-reviews-header h3 {
  font-size: 2.2rem;
  font-weight: 600;
  color: white;
  margin: 0;
}

/* Google Business Profile Embed */
.google-business-embed {
  margin-bottom: 3rem;
  position: relative;
}

.google-business-embed iframe {
  border-radius: 20px !important;
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.3),
    0 0 0 2px rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
  border: none !important;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  width: 100%;
  height: 400px;
}

.google-business-embed iframe:hover {
  transform: scale(1.02);
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.4),
    0 0 0 2px rgba(255, 255, 255, 0.2);
}

/* Google Reviews CTA */
.google-reviews-cta {
  text-align: center;
  margin-top: 2rem;
}

.google-review-btn {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: white;
  padding: 1.5rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow:
    0 10px 25px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.google-review-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.google-review-btn:hover::before {
  left: 100%;
}

.google-review-btn:hover {
  transform: translateY(-5px) scale(1.05);
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.google-review-btn i {
  font-size: 1.5rem;
  background: linear-gradient(45deg, #ea4335, #fbbc05, #34a853, #4285f4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: iconPulse 2s ease-in-out infinite;
}

/* Fallback Content for Google Reviews */
.google-reviews-fallback {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  color: white;
  box-shadow:
    0 15px 30px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.google-reviews-fallback h4 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: white;
  font-weight: 500;
}

.google-reviews-fallback p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
  font-size: 1rem;
  line-height: 1.6;
}

/* Star Rating Display */
.star-rating {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin: 1.5rem 0;
}

.star-rating .stars {
  color: #fbbc05;
  font-size: 1.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.star-rating .rating-text {
  color: white;
  font-weight: 600;
  font-size: 1.1rem;
  margin-left: 0.5rem;
}

/* Floating Google Icons */
.google-reviews-section::after {
  content: '⭐ 📍 ⭐ 📍 ⭐';
  position: absolute;
  top: 10%;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 1.8rem;
  opacity: 0.3;
  letter-spacing: 3rem;
  animation: floatingGoogleIcons 10s ease-in-out infinite;
  pointer-events: none;
}

@keyframes floatingGoogleIcons {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.3;
  }

  25% {
    transform: translateY(-20px) rotate(1deg);
    opacity: 0.5;
  }

  50% {
    transform: translateY(-10px) rotate(-0.5deg);
    opacity: 0.4;
  }

  75% {
    transform: translateY(-25px) rotate(0.5deg);
    opacity: 0.6;
  }
}

/* Responsive Design for Google Reviews */
@media (max-width: 1200px) {
  .google-reviews-container {
    padding: 0 30px;
  }

  .google-reviews-widget {
    padding: 2.5rem;
  }
}

@media (max-width: 768px) {
  .google-reviews-section {
    min-height: auto;
    padding: 4rem 0;
  }

  .google-reviews-section .section-header h2 {
    font-size: 2.5rem;
  }

  .google-reviews-section .section-header p {
    font-size: 1.1rem;
  }

  .google-reviews-container {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
    padding: 0 1rem !important;
    justify-items: center;
  }

  .google-review {
    width: 100% !important;
    max-width: 400px !important;
    border-radius: 20px !important;
    font-size: 1rem !important;
    margin: 0 auto 2rem auto !important;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2) !important;
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px) !important;
    padding: 1.5rem !important;
  }
}

@media (max-width: 480px) {
  .google-reviews-section {
    padding: 2rem 0;
  }

  .google-reviews-section .section-header h2 {
    font-size: 1.3rem;
  }

  .google-reviews-section .section-header p {
    font-size: 0.95rem;
  }

  .google-review {
    font-size: 0.9rem !important;
    padding: 1rem !important;
    border-radius: 15px !important;
  }
}

.responsive-map {
  width: 100% !important;
  max-width: 600px;
  height: 450px;
  border-radius: 20px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  display: block;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .responsive-map {
    max-width: 100%;
    height: 250px;
    border-radius: 15px;
  }
}

@media (max-width: 480px) {
  .responsive-map {
    height: 160px;
    border-radius: 10px;
  }
}

.booking-steps {
  background: linear-gradient(135deg, #e3f2fd 60%, #f8f9fa 100%);
  border: 2px solid #90caf9;
  box-shadow: 0 8px 24px rgba(144, 202, 249, 0.15);
  border-radius: 15px;
  padding: 1.5rem;
  margin-top: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  flex: 1;
  min-width: 300px;
  max-width: 705px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.booking-steps i {
  color: #42a5f5;
  font-size: 2.2rem;
  margin-right: 1rem;
  margin-top: 0.2rem;
}

.booking-steps h4 {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  margin-bottom: 0.7rem;
  color: #1976d2;
}

.booking-steps ol {
  margin: 0;
  padding-left: 1.2rem;
  color: #333;
  font-size: 1rem;
}

.booking-steps ol li {
  margin-bottom: 0.7rem;
  line-height: 1.5;
  position: relative;
}

.booking-steps:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 16px 32px rgba(144, 202, 249, 0.22);
  border-color: #42a5f5;
  background: linear-gradient(135deg, #bbdefb 80%, #e3f2fd 100%);
}

@media (max-width: 768px) {
  .booking-steps {
    max-width: 100%;
    font-size: 0.95rem;
    flex-direction: column;
    align-items: center;
    text-align: left;
  }

  .booking-steps i {
    margin-bottom: 0.5rem;
    margin-right: 0;
  }
}

.menu-category-header.fancy-header.rotating-menu-header {
    margin-top: auto;
}
.menu-category-header.fancy-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.menu-image-wrapper {
  position: relative;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin-bottom: 10px;
}


.menu-image-wrapper:hover {
  transform: scale(1.05);
}

.menu-image {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 1;
  position: relative;
}

.plate-border {
  position: absolute;
  top: -10px;
  left: -10px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, #f0e6dc, #ddd);
  z-index: 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border: 3px solid white;
}

@keyframes popIn {
  0% {
    transform: scale(0.4);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.rotating-menu-header {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.menu-title-group {
  display: flex;
  flex-direction: column;
}

.menu-item-name {
  font-size: 1rem;
  font-style: italic;
  font-weight: 400;
  margin-top: 5px;
  opacity: 1;  
  transition: opacity 0.4s ease, transform 0.4s ease;
}

@keyframes fadeInText {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade {
  animation: fadeInImage 0.4s ease;
}

@keyframes fadeInImage {
  from {
    opacity: 0.3;
    transform: scale(0.98);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}