* {
  margin: 0;
  padding: 0;
  font-family: 'Noto Sans', sans-serif;
}

/* Global background update */
body {
  background-color: #070e16;
  color: #fff;
}

/* Header Styles */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: transparent;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
}

header.scrolled {
  background-color: rgba(7, 14, 22, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo img {
  height: 60px;
  margin-left: 50px;
  transition: all 0.3s ease;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}

nav ul li {
  display: inline-block;
  margin-right: 30px;
}

nav ul li:last-child {
  margin-right: 50px;
}

nav ul li a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.3s ease;
  position: relative;
  padding: 5px 0;
}

nav ul li a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #ff6b6b;
  transition: width 0.3s ease;
}

nav ul li a:hover {
  color: #ff6b6b;
}

nav ul li a:hover::after {
  width: 100%;
}

/* Hero Section Adjustments */
.hero {
  position: relative;
  height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('imgs/hero-background.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  padding: 0 5%;
  margin-top: 0;
}

.hero-content {
  max-width: 800px;
  color: #ffffff;
  animation: fadeIn 1s ease-out;
}

.hero-content h1 {
  font-size: 4.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
  letter-spacing: -0.5px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  font-weight: 400;
  opacity: 0.9;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.hero .btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  background-color: #ff6b6b;
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid #ff6b6b;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero .btn:hover {
  background-color: transparent;
  border-color: #ffffff;
  transform: translateY(-2px);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

/* Responsive adjustments */
@media (max-width: 768px) {
  header {
    padding: 15px;
  }

  .logo img {
    height: 50px;
    margin-left: 20px;
  }

  nav ul li {
    margin-right: 20px;
  }

  nav ul li:last-child {
    margin-right: 20px;
  }

  nav ul li a {
    font-size: 14px;
  }

  .hero-content h1 {
    font-size: 3rem;
  }

  .hero-content p {
    font-size: 1.4rem;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-content p {
    font-size: 1.2rem;
  }

  .hero .btn {
    padding: 0.8rem 2rem;
    font-size: 1rem;
  }
}

/*about*/

.about {
  display: flex;
  align-items: center;
  padding: 80px 0;
  background-color: #070e16;
}

.about-content {
  flex: 1;
  max-width: 600px;
  padding-right: 50px;
  color: #fff;
  margin-left: 5%;
}

.about h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.about p {
  font-size: 18px;
  margin-bottom: 20px;
}

.about-image {
  max-width: 50%;
  margin-right: 5%;
}

.about-image img {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
}

.dark-theme {
  background-color: #070e16;
}


/* menu*/
.menu {
  padding: 80px 0;
  text-align: center;
  background-color: #fff;
  position: relative;
  overflow: hidden;
}

.menu h2 {
  font-size: 36px;
  margin-bottom: 40px;
  color: #333;
  position: relative;
  display: inline-block;
}

.menu h2:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: #ff6b6b;
}

.menu-items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  padding: 40px;
}

.menu-item {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.menu-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.menu-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.menu-item-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.menu-item h3 {
  margin: 0 0 10px;
  color: #333;
  font-size: 20px;
}

.menu-item p {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 15px;
  flex-grow: 1;
}

.menu-item-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.price {
  display: inline-block;
  padding: 8px 15px;
  background: #ff6b6b;
  color: white;
  border-radius: 25px;
  font-weight: bold;
}

.add-to-cart-btn {
  display: inline-flex;
  align-items: center;
  padding: 8px 20px;
  background: #1e252e;
  color: white;
  border: none;
  border-radius: 25px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  gap: 8px;
}

.add-to-cart-btn i {
  font-size: 16px;
}

.add-to-cart-btn:hover {
  background: #ff6b6b;
  transform: translateY(-2px);
}

.menu-item-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Testimonials Section */
.testimonials {
  padding: 100px 0;
  background-color: #070e16;
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.testimonials h2 {
  font-size: 42px;
  margin-bottom: 60px;
  color: #fff;
  text-align: center;
  position: relative;
}

.testimonials h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: #ff6b6b;
}

.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: center;
}

.testimonial-slider {
  width: 100%;
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 40px;
  width: 400px;
  position: relative;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.testimonial-header {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.testimonial-image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #ff6b6b;
  position: relative;
}

.testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-info {
  margin-left: 20px;
}

.testimonial-name {
  font-size: 24px;
  color: #fff;
  margin-bottom: 5px;
}

.testimonial-rating {
  color: #ff6b6b;
  font-size: 18px;
  margin-bottom: 5px;
}

.testimonial-text {
  color: #ccc;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  position: relative;
}

.testimonial-text::before {
  content: '"';
  font-size: 60px;
  color: #ff6b6b;
  position: absolute;
  top: -20px;
  left: -10px;
  opacity: 0.2;
}

.testimonial-date {
  color: #666;
  font-size: 14px;
  position: absolute;
  bottom: 20px;
  right: 30px;
}

@media (max-width: 768px) {
  .testimonial-card {
    width: 100%;
    max-width: 350px;
    margin-bottom: 30px;
  }

  .testimonials h2 {
    font-size: 32px;
    margin-bottom: 40px;
  }
}

/* Gallery Section*/

.gallery {
  padding: 80px 0;
  text-align: center;
  background-color: #070e16;
}

.gallery h2 {
  font-size: 36px;
  margin-bottom: 40px;
  color: #fff;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 20px;
  margin-left: 5%;
  margin-right: 5%;
}

.image-item img {
  width: 100%;
  height: auto;
  border-radius: 5px;
}


/* Contact Section */
.contact {
  background-color: #070e16;
  padding: 80px 0;
  color: #fff;
  overflow: hidden;
}

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

.contact-header {
  text-align: center;
  margin-bottom: 50px;
}

.contact-header h2 {
  font-size: 36px;
  margin-bottom: 15px;
  animation: fadeInUp 1s ease-out;
}

.contact-header p {
  color: #ccc;
  max-width: 600px;
  margin: 0 auto;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
}

.contact-info {
  display: grid;
  gap: 20px;
}

.contact-info .info-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  transition: all 0.3s ease;
}

.contact-info .info-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.contact-info .info-card i {
  font-size: 2rem;
  color: #ff6b6b;
  margin-bottom: 15px;
}

.contact-info .info-card h3 {
  margin-bottom: 10px;
  color: #fff;
}

.contact-info .info-card p {
  color: #ccc;
  margin: 5px 0;
}

.contact-form {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
}

.contact-form h3 {
  margin-bottom: 20px;
  color: #fff;
  font-size: 24px;
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  color: #fff;
  transition: all 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #ff6b6b;
  background: rgba(255, 255, 255, 0.15);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form .btn {
  background: #ff6b6b;
  color: #fff;
  padding: 12px 30px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-form .btn:hover {
  background: #ff5252;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 82, 82, 0.3);
}

@media (max-width: 768px) {
  .contact-content {
    grid-template-columns: 1fr;
  }

  .contact-form .form-row {
    grid-template-columns: 1fr;
  }

  .contact-info .info-card {
    padding: 20px;
  }
}

/* Footer Styles */
.footer {
  background-color: #070e16;
  color: #fff;
  padding: 0;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer-section {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-logo img {
  height: 60px;
  margin-bottom: 15px;
}

.footer-logo p {
  color: #999;
  font-size: 14px;
  line-height: 1.6;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-link {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  transition: all 0.3s ease;
}

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

.footer-section h3 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-section h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  background: #ff6b6b;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #999;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: #ff6b6b;
  transform: translateX(5px);
}

.opening-hours {
  list-style: none;
  padding: 0;
}

.opening-hours li {
  color: #999;
  margin-bottom: 12px;
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}

.opening-hours span {
  color: #fff;
}

.contact-info {
  list-style: none;
  padding: 0;
}

.contact-info li {
  color: #999;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  font-size: 14px;
}

.contact-info li i {
  color: #ff6b6b;
  margin-right: 10px;
  font-size: 16px;
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.3);
  padding: 20px 0;
  font-size: 14px;
}

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

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  color: #999;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: #ff6b6b;
}

.credits {
  color: #999;
}

.credits a {
  color: #ff6b6b;
  text-decoration: none;
}

@media (max-width: 992px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .footer-bottom-links {
    justify-content: center;
  }
}

/* Order Section Styles */
.order {
  padding: 80px 0;
  background-color: #070e16;
  overflow: hidden;
}

.order h2 {
  text-align: center;
  margin-bottom: 40px;
  color: #fff;
  animation: fadeInUp 1s ease-out;
}

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

.order-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
}

.order-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.order-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.card-header {
  padding: 20px;
  background: #ff6b6b;
  color: white;
}

.card-header h3 {
  margin: 0;
  font-size: 24px;
}

.card-header p {
  margin: 5px 0 0;
  opacity: 0.9;
}

/* Menu Card Styles */
.menu-card {
  grid-row: span 2;
}

.menu-items {
  padding: 20px;
}

.menu-item-card {
  display: flex;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: background-color 0.3s ease;
}

.menu-item-card:last-child {
  border-bottom: none;
}

.menu-item-card:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

.item-image {
  width: 100px;
  height: 100px;
  margin-right: 20px;
  border-radius: 10px;
  overflow: hidden;
}

.item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.item-details {
  flex: 1;
}

.item-details h4 {
  margin: 0 0 5px;
  color: #fff;
}

.item-details p {
  margin: 0 0 10px;
  color: #ccc;
  font-size: 14px;
}

.item-price {
  color: #ff6b6b;
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 10px;
}

.item-quantity {
  display: flex;
  align-items: center;
  gap: 10px;
}

.quantity-btn {
  width: 30px;
  height: 30px;
  border: none;
  background: #ff6b6b;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.quantity-btn:hover {
  background: #ff5252;
}

.item-quantity input {
  width: 50px;
  text-align: center;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 5px;
}

/* Delivery Card Styles */
.delivery-card {
  margin-bottom: 30px;
  background: #1e252e;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.delivery-card .card-header {
  background: #ff7b7b;
  padding: 16px 20px;
  color: white;
}

.delivery-card .card-header h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 500;
}

.delivery-card .card-header p {
  margin: 4px 0 0;
  font-size: 15px;
  opacity: 0.95;
}

.delivery-form {
  padding: 24px 20px;
}

.delivery-form .form-group {
  margin-bottom: 24px;
}

.delivery-form .form-group:last-child {
  margin-bottom: 0;
}

.delivery-form label {
  display: block;
  margin-bottom: 8px;
  color: #8b95a5;
  font-size: 14px;
  font-weight: 400;
}

.delivery-form input,
.delivery-form textarea {
  width: 100%;
  padding: 12px 16px;
  background: white;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  color: #333;
  line-height: 1.4;
}

.delivery-form textarea {
  resize: vertical;
  min-height: 100px;
  font-family: inherit;
}

.delivery-form input:focus,
.delivery-form textarea:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(255, 123, 123, 0.3);
}

.delivery-form input::placeholder,
.delivery-form textarea::placeholder {
  color: #aab;
}

/* Adjust the height of specific textareas */
#address {
  min-height: 80px;
}

#notes {
  min-height: 80px;
}

/* Summary Card Styles */
.summary-card {
  background: #1e252e;
  border-radius: 12px;
  overflow: hidden;
}

.summary-card .card-header {
  background: #ff7b7b;
  padding: 16px 20px;
  color: white;
}

.summary-card .card-header h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 500;
}

.summary-card .card-header p {
  margin: 4px 0 0;
  font-size: 15px;
  opacity: 0.95;
}

.order-summary {
  padding: 20px;
}

.summary-items {
  max-height: 400px;
  overflow-y: auto;
  margin-bottom: 20px;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
}

.cart-item:last-child {
  border-bottom: none;
}

.cart-item-details {
  flex: 1;
}

.cart-item-details h4 {
  margin: 0 0 5px;
  font-size: 16px;
  font-weight: 500;
}

.cart-item-price {
  color: #ff7b7b;
  font-weight: 500;
}

.cart-item-quantity {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cart-item-quantity span {
  min-width: 20px;
  text-align: center;
}

.remove-btn {
  background: none;
  border: none;
  color: #ff7b7b;
  cursor: pointer;
  padding: 5px;
  margin-left: 10px;
  transition: color 0.3s ease;
}

.remove-btn:hover {
  color: #ff5252;
}

.summary-totals {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.total-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  color: #fff;
  font-size: 15px;
}

.total-item.grand-total {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 18px;
  font-weight: 600;
}

.checkout-btn {
  width: 100%;
  background: #ff7b7b;
  color: white;
  border: none;
  border-radius: 6px;
  padding: 14px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  margin-top: 20px;
  transition: all 0.3s ease;
}

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

.checkout-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
  transform: none;
}

/* Scrollbar Styles for Cart */
.summary-items::-webkit-scrollbar {
  width: 6px;
}

.summary-items::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
}

.summary-items::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
}

.summary-items::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
  .order-grid {
    grid-template-columns: 1fr;
  }

  .menu-card {
    grid-row: auto;
  }

  .menu-item-card {
    flex-direction: column;
    text-align: center;
  }

  .item-image {
    margin: 0 0 15px;
  }

  .item-quantity {
    justify-content: center;
  }

  .menu-items {
    padding: 0 20px;
  }

  .menu-item {
    flex: 0 1 100%;
    max-width: 350px;
    margin: 0 auto 30px;
  }
}

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

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

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

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

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

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

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

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

/* Order Section Animations */
.order-form {
  animation: slideInLeft 1s ease-out;
  transition: transform 0.3s ease;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #ff6b6b;
  box-shadow: 0 0 5px rgba(255, 107, 107, 0.3);
}

.order-info {
  animation: slideInRight 1s ease-out;
}

.info-card {
  transition: all 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.info-card i {
  transition: transform 0.3s ease;
}

.info-card:hover i {
  animation: pulse 1s infinite;
}

/* Contact Section Animations */
.contact {
  overflow: hidden;
}

.contact h2 {
  animation: fadeInUp 0.8s ease-out;
}

.contact-info {
  animation: slideInLeft 0.8s ease-out 0.2s backwards;
}

.info-item {
  transition: transform 0.3s ease;
}

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

.info-item i {
  transition: color 0.3s ease;
}

.info-item:hover i {
  color: #ff6b6b;
}

.contact-form {
  animation: slideInRight 0.8s ease-out 0.4s backwards;
}

.contact-form input,
.contact-form textarea {
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 107, 107, 0.2);
}

.contact-form .btn {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.contact-form .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

.contact-form .btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.contact-form .btn:active::after {
  width: 200px;
  height: 200px;
  opacity: 0;
}

/* Enhance info card animations */
.contact-info .info-card {
  transform-origin: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-info .info-card:hover {
  transform: translateY(-5px) scale(1.02);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Form input animations */
.contact-form .form-group {
  position: relative;
  overflow: hidden;
}

.contact-form input:focus::placeholder,
.contact-form textarea:focus::placeholder {
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}