:root {
  font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
  line-height: 1.5;
  font-weight: 400;

  color-scheme: light dark;
  color: rgba(255, 255, 255, 0.87);
  background-color: rgb(243, 246, 246);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #333;
  width: 100%;
  position: relative;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 25px;
  border-radius: 15px;
}

/* Navigation */
.navbar {
  max-width: unset;
  max-width: 100%;
  opacity: 1;
  padding: 25px 25px 0 25px;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.nav-container {
  max-width: 1200px;
  border-width: 1px;
  border-style: solid;
  background-color: rgba(255, 255, 255, 0.5);
  border-color: rgb(255, 255, 255);
  --border-left-width: 1px;
  --border-right-width: 1px;
  --border-top-width: 1px;
  backdrop-filter: blur(5px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 66px;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 600;
  color: #333;
}

.logo-accent {
  color: #ff6b35;
}

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

.nav-link {
  text-decoration: none;
  color: #000;
  font-weight: 300;
  font-size: 14px;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #ff6b35;
}

.login-btn {
  border: 2px solid #ff6b35;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  color: #ff6b35 !important;
  transition: all 0.3s ease;
}

.login-btn:hover {
  background: #ff6b35;
  color: white !important;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  gap: 4px;
  z-index: 1001;
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex !important;
  }
}

.hamburger-line {
  width: 25px;
  height: 3px;
  background-color: #333;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero Section */
.hero {
  padding: 120px 0 80px;
  /* background: linear-gradient(
    180deg,
    #e0e8ff -10%,
    #f0f3ff 29.56350515554617%,
    #f1f4ff 69.31075362471847%,
    #f3f6f6
  ); */
}

.hero-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.hero-title {
  font-size: 3.4rem;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 3rem;
  color: #333;
}

.highlight {
  color: #ff6b35;
}

.highlight-orange {
  color: #ff6b35;
}

/* Tablet Mockup */
.hero-image {
  margin: 2rem 4rem;
  display: flex;
  justify-content: center;
}

.hero-image img {
  width: 100%;
  max-width: 1000px;
}

.restaurant-header {
  padding: 20px;
  background: #f8f9fa;
}

.restaurant-header h3 {
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 5px;
}

.restaurant-subtitle {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.restaurant-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.status.open {
  color: #28a745;
  font-weight: 600;
  font-size: 0.85rem;
}

.address {
  color: #666;
  font-size: 0.85rem;
}

.restaurant-hero-img {
  height: 120px;
  background: linear-gradient(45deg, #ff6b35, #ff8c42);
  position: relative;
  overflow: hidden;
}

.pizza-image {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, #ffd700 30%, #ff6b35 70%);
  border-radius: 50%;
  opacity: 0.8;
}

.menu-categories {
  display: flex;
  padding: 15px 20px;
  gap: 15px;
  border-bottom: 1px solid #eee;
  overflow-x: auto;
}

.category {
  font-size: 0.75rem;
  font-weight: 600;
  color: #666;
  white-space: nowrap;
  cursor: pointer;
  padding: 5px 0;
}

.category.active {
  color: #ff6b35;
  border-bottom: 2px solid #ff6b35;
}

.menu-content {
  display: flex;
  height: 200px;
}

.menu-section {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
}

.menu-section h4 {
  font-size: 0.9rem;
  font-weight: 400;
  margin-bottom: 15px;
  color: #333;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #f0f0f0;
}

.item-info h5 {
  font-size: 0.85rem;
  font-weight: 400;
  margin-bottom: 5px;
}

.item-info p {
  font-size: 0.75rem;
  color: #666;
  margin-bottom: 5px;
}

.price {
  font-weight: 700;
  color: #ff6b35;
  font-size: 0.85rem;
}

.item-image {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  margin-left: 10px;
}

.fish-chips {
  background: linear-gradient(45deg, #ffd700, #ff8c42);
}

.basket-section {
  width: 200px;
  background: #f8f9fa;
  padding: 20px;
  border-left: 1px solid #eee;
}

.basket-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 15px;
  font-size: 0.85rem;
  font-weight: 400;
}

.basket-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  margin-bottom: 10px;
}

.basket-total {
  display: flex;
  justify-content: space-between;
  font-weight: 400;
  font-size: 0.85rem;
  margin: 15px 0;
  padding-top: 10px;
  border-top: 1px solid #ddd;
}

.basket-buttons {
  display: flex;
  gap: 5px;
  margin-bottom: 15px;
}

.collection-btn,
.delivery-btn {
  flex: 1;
  padding: 8px;
  border: 1px solid #ff6b35;
  background: white;
  color: #ff6b35;
  font-size: 0.75rem;
  border-radius: 4px;
  cursor: pointer;
}

.collection-btn {
  background: #ff6b35;
  color: white;
}

.checkout-btn {
  width: 100%;
  padding: 12px;
  background: #ff6b35;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 400;
  cursor: pointer;
}

.watch-video-btn {
  background: #ff6b35;
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.watch-video-btn:hover {
  background: #e55a2b;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

/* Why Choose Section */
.why-choose {
  padding: 40px 0;
  background: #ffffff;
  margin: 0 auto 60px;
  max-width: 1000px;
  border-radius: 20px;
}

.section-title {
  text-align: center;
  font-size: 3rem;
  font-weight: 400;
  margin-bottom: 3rem;
  color: #333;
}
.section-title-small {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 400;
  margin-bottom: 0;
  color: #333;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.feature-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  place-items: center;
}

.feature-image {
  width: 184px;
  height: 184px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
}

.chef-image {
  background-image: url("public/why1.png");
}

.phone-image {
  background-image: url("public/why2.png");
}

.support-image {
  background-image: url("public/why3.png");
}

.delivery-image {
  background-image: url("public/why4.png");
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.feature-bullet {
  width: 8px;
  height: 8px;
  background: #ff6b35;
  border-radius: 50%;
  margin-top: 8px;
  flex-shrink: 0;
}

.feature-item p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #555;
}

/* Business Section */
.business-section {
  padding: 40px 0;
  background: #ffffff;
  text-align: center;
  margin: 0 auto 80px;
  border-radius: 20px;
  max-width: 1000px;
}

.section-description {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
}

.framer-text {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.8;
}

.framer-title {
  font-weight: bold;
  font-size: 1.2rem;
  text-transform: uppercase;
}

.framer-link {
  color: #ff6b35;
  outline: none;
}

.framer {
  padding: 35px 40px;
}

/* Success Stories Section */
.success-stories-section {
  padding: 80px 0;
}

.success-stories-title {
  font-size: 3rem;
  font-weight: 400;
  text-align: center;
  margin-bottom: 4rem;
  color: #333;
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3%;
  max-width: 1000px;
  margin: 0 auto;
}

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

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

.story-video {
  position: relative;
  height: 244px;
  overflow: hidden;
}

.video-thumbnail {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
}

.restaurant-interior {
  background-image: url("./public/Aksular.jpg");
}

.noodle-bar {
  background-image: url("./public/Red-lion.jpg");
}

.chilli-pickle {
  background-image: url("./public/Chilli-Pickle.jpg");
}

.east-ocean {
  background-image: url("./public/East-Ocean.jpg");
}

.video-overlay {
  /* position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  min-height: 100%;
  width: 100%;
  padding: 20px;
  color: white;
}

.watch-video-btn-small {
  font-family: Manrope, "Manrope Placeholder", sans-serif;
  background: rgba(255, 255, 255, 0.9);
  color: #ff6b35;
  border: none;
  padding: 8px 20px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.watch-video-btn-small:hover {
  background: #ff6b35;
  color: rgba(255, 255, 255, 0.9);
  transform: scale(1.05);
}

.speaker-info {
  align-self: flex-end;
  text-align: right;
}

.speaker-name {
  display: block;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.speaker-title {
  display: block;
  font-size: 0.8rem;
  opacity: 0.9;
  margin-bottom: 8px;
  font-weight: 300;
}

.foodit-logo-small {
  background: #ff6b35;
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  display: inline-block;
}

.story-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #333;
  margin: 20px 20px 10px 20px;
  line-height: 1.3;
}

.story-subtitle {
  font-size: 1rem;
  color: #ff6b35;
  margin: 0 20px 20px 20px;
  font-weight: 500;
}

.want-app-title {
  font-size: 3rem;
  font-weight: 400;
  text-align: center;
  margin-bottom: 1rem;
  color: #ff6b35;
}

.want-app-description {
  padding: 0 80px;
}

.want-app-footer {
  padding-top: 30px;
}

/* FAQ Section */
.faq-section {
  padding: 80px 0;
}

.faq-title {
  font-size: 3rem;
  font-weight: 400;
  text-align: center;
  margin-bottom: 1rem;
  color: #333;
}

.faq-description {
  text-align: center;
  color: #666;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 3rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto 3rem auto;
}

.faq-item {
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-header {
  display: flex;
  background-color: #ffffff;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1.5rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.faq-header:hover {
  background-color: #fff0eb;
}

.faq-question {
  font-size: 1.2rem;
  font-weight: 500;
  color: #333;
  margin: 0;
  flex: 1;
  padding-right: 1rem;
  line-height: 1.4;
  text-decoration: none;
}

.faq-toggle {
  background: none;
  border: none;
  font-size: 1.8rem;
  color: #ff6b35;
  cursor: pointer;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.faq-toggle:hover {
  background-color: rgba(255, 107, 53, 0.2);
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  background-color: #ffffff;
}

.faq-link {
  text-decoration: none;
}

.faq-answer p {
  color: #666;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
  padding: 1rem 0;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-signup {
  text-align: center;
}

.faq-signup button {
  width: 250px;
}

.terms-page {
  margin-top: 10rem;
}

/* Placeholder Sections */
.placeholder-section,
.pricing-section {
  padding: 80px 0;
  text-align: center;
}

.placeholder-section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #333;
  font-weight: 400;
}

.placeholder-section p {
  color: #666;
  font-size: 1.1rem;
}

/* Pricing Section */
.pricing-section {
  padding: 60px 0;
}

.pricing-title {
  font-size: 3rem;
  font-weight: 400;
  margin-bottom: 2rem;
  color: #333;
  text-align: center;
}

.pricing-description {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 4rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
  background-color: #ffffff;
  border-radius: 20px;
}

.pricing-devices {
  display: flex;
  justify-content: center;
}

.devices {
  display: flex;
  justify-content: center;
  padding: 0 20px;
}

.devices img {
  width: 100%;
}

.devicesImage {
  max-width: 80%;
}

.desktopView {
  display: block;
}

.mobileView {
  display: none;
}

.tablet-phone-combo {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.restaurant-interface {
  padding: 15px;
  height: 100%;
}

.restaurant-header-small h4 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: #333;
}

.restaurant-header-small p {
  font-size: 0.7rem;
  color: #666;
  margin-bottom: 15px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.menu-item-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px;
  border: 1px solid #eee;
  border-radius: 8px;
  background: #f9f9f9;
}

.food-image {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-bottom: 5px;
}

.food-image.pizza {
  background: linear-gradient(45deg, #ff6b35, #ff8c42);
}

.food-image.burger {
  background: linear-gradient(45deg, #8b4513, #d2691e);
}

.food-image.curry {
  background: linear-gradient(45deg, #ffd700, #ffa500);
}

.menu-item-card span {
  font-size: 0.7rem;
  font-weight: 500;
  color: #333;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: white;
  border-radius: 15px;
  overflow: hidden;
}

.mobile-interface {
  padding: 10px;
  height: 100%;
}

.mobile-header {
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
  text-align: center;
}

.order-items {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.order-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px;
  border: 1px solid #eee;
  border-radius: 5px;
}

.order-item .item-image {
  width: 20px;
  height: 20px;
  background: #ff6b35;
  border-radius: 3px;
}

.item-details {
  display: flex;
  flex-direction: column;
  font-size: 0.6rem;
}

.item-details .price {
  color: #ff6b35;
  font-weight: 600;
}

.pricing-details {
  display: flex;
  justify-content: center;
}

.price-card {
  padding: 2rem;
  border-radius: 15px;
  max-width: 400px;
  width: 100%;
}

.price-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #333;
  text-align: left;
}

.price-amount {
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  margin-bottom: 2rem;
}

.currency {
  font-size: 2rem;
  font-weight: 700;
  color: #333;
}

.amount {
  font-size: 4rem;
  font-weight: 700;
  color: #333;
  line-height: 1;
}

.vat {
  font-size: 1.2rem;
  color: #666;
  margin-left: 0.5rem;
}

.features-list {
  list-style: none;
  margin-bottom: 2rem;
}

.feature-check {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 1rem;
  color: #555;
  text-align: left;
}

.checkmark {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
  flex-shrink: 0;
  margin-top: 3px;
}

.signup-btn {
  width: 100%;
  background: #ff6b35;
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.signup-btn:hover {
  background: #e55a2b;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.contact-form {
  display: flex;
  flex-direction: row;
}

.contact-inputs {
  width: 50%;
}

.contact-help {
  padding: 8px 20px 10px 30px;
  color: #666;
  font-size: 18px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }

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

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

  .feature-images {
    justify-items: center;
  }

  .section-title {
    font-size: 2rem;
    font-weight: 400;
  }

  .desktopView {
    display: none;
  }

  .mobileView {
    display: block;
  }
}

/* Tablet Styles (768px - 1024px) */
@media (max-width: 1024px) and (min-width: 769px) {
  .nav-container {
    padding: 0 30px;
  }

  .hero-image {
    margin: 2rem;
  }

  .hero-title {
    font-size: 2.4rem;
    font-weight: 400;
  }

  .features-grid {
    gap: 3rem;
  }

  .feature-images {
    gap: 0;
  }

  .feature-image {
    width: 180px;
    height: 180px;
  }

  .feature-item p {
    font-size: 1rem;
  }

  .business-section {
    margin: 0 30px;
  }
}

/* Mobile Styles (up to 768px) */
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }
  .navbar {
    padding: 10px;
  }

  /* Success Stories Mobile */
  .success-stories-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  .stories-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .story-video {
    height: 200px;
  }

  .video-overlay {
    padding: 15px;
  }

  .speaker-name {
    font-size: 1rem;
  }

  .speaker-title {
    font-size: 0.7rem;
  }

  .story-title {
    font-size: 1.1rem;
    margin: 15px 15px 8px 15px;
  }

  .story-subtitle {
    font-size: 0.9rem;
    margin: 0 15px 15px 15px;
  }

  /* Navigation */
  .nav-container {
    padding: 0 15px;
    position: relative;

    background-color: white;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .nav-menu {
    display: none !important;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    gap: 1rem;
    border-radius: 0 0 10px 10px;
    z-index: 1000;
  }

  .nav-menu.active {
    display: flex !important;
    animation: slideDown 0.3s ease-out;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 107, 53, 0.1);
    padding: 0;
    margin-top: -6px;
  }

  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .nav-menu li {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(255, 107, 53, 0.1);
    margin: 0;
  }

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

  .nav-link {
    display: block;
    padding: 0;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border-radius: 0;
    margin: 0;
    font-size: 14px;
    font-weight: 300;
    width: 100%;
  }

  .nav-link:hover {
    background: rgba(255, 107, 53, 0.15) !important;
    color: #ff6b35;
    transform: translateX(0);
    height: 56px;
  }

  .login-btn {
    margin: 0 15px 15px 15px;
    display: inline-block;
    padding: 0;
    height: 56px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: #ff6b35;
    color: white !important;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
    width: calc(100% - 30px);
  }

  .login-btn:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 107, 53, 0.4);
  }

  /* Hero Section */
  .hero {
    padding: 100px 0 60px;
  }

  .hero-title {
    font-size: 2rem;
    line-height: 1.1;
    margin-bottom: 2rem;
  }

  .restaurant-header {
    padding: 15px;
  }

  .restaurant-header h3 {
    font-size: 1rem;
    font-weight: 400;
  }

  .restaurant-subtitle {
    font-size: 0.8rem;
  }

  .restaurant-hero-img {
    height: 80px;
  }

  .pizza-image {
    width: 60px;
    height: 60px;
    right: 15px;
    top: 10px;
  }

  .menu-categories {
    padding: 10px 15px;
    gap: 10px;
  }

  .category {
    font-size: 0.7rem;
  }

  .menu-content {
    height: 150px;
    flex-direction: column;
  }

  .menu-section {
    padding: 15px;
    height: 100px;
  }

  .menu-section h4 {
    font-size: 0.8rem;
    margin-bottom: 10px;
    font-weight: 400;
  }

  .menu-item {
    margin-bottom: 10px;
    padding-bottom: 10px;
  }

  .item-info h5 {
    font-size: 0.75rem;
    font-weight: 400;
  }

  .item-info p {
    font-size: 0.7rem;
  }

  .price {
    font-size: 0.75rem;
  }

  .item-image {
    width: 30px;
    height: 30px;
  }

  .basket-section {
    width: 100%;
    padding: 15px;
    height: 50px;
    overflow: hidden;
  }

  .basket-header {
    font-size: 0.75rem;
    margin-bottom: 5px;
    font-weight: 400;
  }

  .basket-item,
  .basket-total {
    font-size: 0.7rem;
    margin-bottom: 5px;
  }

  .basket-buttons {
    gap: 3px;
    margin-bottom: 5px;
  }

  .collection-btn,
  .delivery-btn {
    padding: 4px;
    font-size: 0.65rem;
  }

  .checkout-btn {
    padding: 6px;
    font-size: 0.65rem;
  }

  .watch-video-btn {
    padding: 12px 25px;
    font-size: 1rem;
  }

  /* Why Choose Section */
  .why-choose {
    padding: 30px 20px;
    margin: 0 20px 30px;
  }

  .section-title {
    font-size: 2rem;
    margin-bottom: 3rem;
    font-weight: 400;
  }

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

  .feature-images {
    justify-items: center;
    gap: 15px;
    margin-bottom: 0;
  }

  .feature-image {
    width: 170px;
    height: 170px;
  }

  .feature-image::after {
    font-size: 1.5rem;
  }

  .feature-list {
    gap: 1rem;
  }

  .feature-item p {
    font-size: 0.95rem;
  }

  /* Business Section */
  .business-section {
    padding: 20px 0;
    margin: 0 15px;
  }

  .section-description {
    font-size: 1rem;
    padding: 0 10px;
  }

  /* Placeholder Sections */
  .placeholder-section {
    padding: 60px 0;
  }

  .placeholder-section h2 {
    font-size: 1.8rem;
    font-weight: 400;
  }

  .placeholder-section p {
    font-size: 1rem;
  }

  .want-app-title {
    font-size: 2rem;
    margin-top: 40px;
    line-height: 2.4rem;
  }

  .want-app-description {
    padding: 0 30px;
  }

  /* FAQ Section Mobile */
  .faq-title {
    font-size: 2rem;
    font-weight: 400;
  }

  .faq-description {
    font-size: 1rem;
    padding: 0 10px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .faq-header {
    padding: 1rem;
  }

  .faq-question {
    font-size: 1rem;
  }

  .faq-answer p {
    font-size: 0.9rem;
    padding-bottom: 1rem;
  }

  /* Pricing Section Mobile */
  .pricing-title {
    font-size: 2rem;
    font-weight: 400;
  }

  .pricing-content {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .tablet-phone-combo {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .price-card {
    padding: 1.5rem;
  }

  .amount {
    font-size: 3rem;
  }
}

/* Small Mobile Styles (up to 480px) */
@media (max-width: 480px) {
  .hero-title {
    font-size: 1.8rem;
    line-height: 1.4;
    font-weight: 400;
  }

  .hero-image {
    margin: 2rem 0;
  }

  .section-title {
    font-size: 2rem;
    font-weight: 400;
  }

  .section-title-small {
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 2.4rem;
    padding-bottom: 20px;
  }

  .restaurant-header {
    padding: 10px;
  }

  .restaurant-header h3 {
    font-size: 0.9rem;
    font-weight: 400;
  }

  .menu-categories {
    padding: 8px 10px;
  }

  .menu-section {
    padding: 10px;
  }

  .basket-section {
    padding: 10px;
  }

  .feature-images {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .feature-image {
    width: 130px;
    height: 130px;
  }

  .feature-image::after {
    font-size: 1.2rem;
  }

  .feature-item p {
    font-size: 0.9rem;
  }

  .section-description {
    font-size: 0.95rem;
    line-height: 1.6;
  }
  .pricing-section {
    padding: 0;
  }
  .faq-section {
    padding: 0;
  }
  .want-app-footer {
    padding-bottom: 60px;
  }
  .terms-page {
    margin-top: 6rem;
  }
  .framer {
    padding: 15px 0;
  }
  .contact-form {
    flex-direction: column;
  }
  .contact-inputs {
    width: 100%;
  }
  .contact-help {
    padding: 40px 0;
  }
  .faq-signup button {
    width: 100%;
  }
}

/* Hide mobile menu toggle by default */
/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Footer */
/* --token-2e87f3db-1eba-4d0b-978f-5694f391a4f9: rgb(224, 232, 255);
  --token-6b46fa71-5b51-46d2-af57-7b89b5f65abf: rgb(243, 246, 246); */
.footer {
  /* background: linear-gradient(
    180deg,
    var(--token-6b46fa71-5b51-46d2-af57-7b89b5f65abf, rgb(243, 246, 246)) 0%,
    var(--token-2e87f3db-1eba-4d0b-978f-5694f391a4f9, rgb(224, 232, 255))
      47.227354307432435%,
    var(--token-2e87f3db-1eba-4d0b-978f-5694f391a4f9, rgb(224, 232, 255)) 100%
  ); */
  padding: 60px 0 40px;
}

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

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.footer-logo-img {
  height: 40px;
  width: auto;
}

.footer-nav {
  display: flex;
  gap: 40px;
}

.footer-link {
  color: #333;
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #ff6b35;
}

.footer-right {
  display: flex;
  align-items: center;
}

.social-icons {
  display: flex;
  gap: 30px;
}

.social-icon {
  width: 44px;
  height: 44px;
  border: 2px solid #ff6b35;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff6b35;
  text-decoration: none;
  transition: all 0.3s ease;
  background-color: white;
}

.social-icon:hover {
  background: #ff6b35;
  color: white;
  transform: translateY(-2px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid rgba(51, 51, 51, 0.1);
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom-left {
  flex: 0 0 auto;
}

.copyright {
  color: #333;
  font-size: 14px;
  font-weight: 400;
}

.footer-bottom-center {
  display: flex;
  gap: 30px;
  flex: 0 0 auto;
}

.footer-bottom-link {
  color: #333;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  transition: color 0.3s ease;
}

.footer-bottom-link:hover {
  color: #ff6b35;
}

.footer-bottom-right {
  flex: 1;
  text-align: right;
}

.company-info {
  color: #333;
  font-size: 14px;
  font-weight: 400;
}

/* Footer Mobile Styles */
@media (max-width: 768px) {
  .footer {
    padding: 40px 0 30px;
    margin-top: 60px;
  }

  .footer-content {
    flex-direction: column;
    gap: 30px;
    margin-bottom: 30px;
  }

  .footer-left {
    gap: 20px;
  }

  .footer-nav {
    flex-wrap: wrap;
    gap: 20px;
  }

  .footer-link {
    font-size: 14px;
  }

  .social-icons {
    justify-content: center;
    gap: 12px;
  }

  .social-icon {
    width: 40px;
    height: 40px;
  }

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

  .footer-bottom-center {
    gap: 20px;
  }

  .footer-bottom-right {
    text-align: center;
  }

  .company-info {
    font-size: 12px;
    line-height: 1.4;
  }
}

.success-message {
  display: none;
  text-align: left;
  color: #ff6b35;
  padding: 2rem 0;
}

#formErrorMessage {
  display: none;
  text-align: left;
  color: #d21e1e;
  padding: 2rem 0;
}

.field-wrapper {
  font-family: Inter, sans-serif;
  margin: 10px 0;
}

.field-wrapper input {
  color: #ff6b35;
  font-weight: 400;
  background-clip: padding-box;
  border: 1px solid #cbcdcc;
  border-radius: 0;
  box-shadow: none;
  font-size: 18px;
  display: block;
  padding: 12px 14px;
  width: 100%;
  background-color: #ffffff;
  outline: none;
}

.field-wrapper textarea {
  color: #ff6b35;
  font-weight: 400;
  background-clip: padding-box;
  border: 1px solid #cbcdcc;
  border-radius: 0;
  box-shadow: none;
  font-size: 16px;
  display: block;
  padding: 12px 14px;
  width: 100%;
  background-color: #ffffff;
  outline: none;
  min-height: 120px;
}

.error-message {
  padding: 5px 10px;
  color: #d21e1e;
}
.hide {
  display: none;
}

.email-link {
  color: #ff6b35;
  text-decoration: none;
}

.not-found {
  font-size: 8rem;
  color: #d21e1e;
  text-align: center;
  line-height: 8rem;
}

.not-found-text {
  font-size: 2.4rem;
  text-align: center;
}

.framer-ul {
  padding-left: 15px;
}
