/* Reset and Base Styles */
:root {
  --primary-color: #1e2d2f;
  --secondary-color: #2a3f42;
  --third-color: #f59e0b;
  --accent-color: #4a6b6d;
  --text-dark: #1f2937;
  --text-light: #6b7280;
  --white: #ffffff;
  --light-gray: #f9fafb;
  --border-color: #d1d5db;
  --dark-bg: #111827;
  --success-color: #10b981;
  --error-color: #ef4444;
  --error-shadow: rgba(239, 68, 68, 0.2);
  --warning-color: #f59e0b;
  --gradient-primary: linear-gradient(
    135deg,
    #1e2d2f 0%,
    #2a3f42 50%,
    #4a6b6d 100%
  );
  --gradient-hero: linear-gradient(
    135deg,
    #1e2d2f 0%,
    #2a3f42 50%,
    #4a6b6d 100%
  );
  --gradient-cart: linear-gradient(
    135deg,
    #1e2d2f 0%,
    #2a3f42 50%,
    #4a6b6d 100%
  );
  --gradient-button: linear-gradient(135deg, #1e2d2f, #2a3f42);
  --gradient-error: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  --gradient-success: linear-gradient(135deg, #10b981 0%, #059669 100%);
  --gradient-light: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
  --shadow-color: rgba(30, 45, 47, 0.3);
  --focus-shadow: rgba(30, 45, 47, 0.2);
  --width-full: 100%;
  --width-auto: auto;
  --max-width-container: 1400px;
  --max-width-content: 1000px;
  --max-width-form: 500px;
  --width-small: 30px;
  --width-medium: 40px;
  --width-large: 100px;
  --grid-auto-fit: repeat(auto-fit, minmax(250px, 1fr));
  --grid-gap: 2rem;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  overflow-x: hidden;
}
.cart-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

/* Show cart modal when opened */
.cart-modal.show {
  display: flex;
}

/* Cart content styling */
.cart-content {
  background: var(--white);
  border-radius: 16px;
  max-width: var(--max-width-content);
  width: var(--width-full);
  max-height: 95vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
}

/* Cart header with gradient */
.cart-header {
  background: var(--gradient-cart);
  color: var(--white);
  padding: 1.5rem;
  border-radius: 16px 16px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-header h2 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  font-weight: 700;
}

.close-cart {
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--white);
  background: none;
  border: none;
  padding: 0.5rem;
  border-radius: 50%;
  width: var(--width-medium);
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.close-cart:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Cart items container */
.cart-items {
  padding: 1.5rem;
  flex: 1;
  overflow-y: auto;
  min-height: 0;
}

/* Order options styling */
.order-options {
  padding: 0 1.5rem 1.5rem 1.5rem;
}

.order-option {
  transition: all 0.3s ease;
  cursor: pointer;
}

.order-option:hover {
  border-color: var(--primary-color) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px var(--shadow-color);
}

.order-option input[type="radio"]:checked + * {
  color: var(--primary-color) !important;
}

.order-option:has(input[type="radio"]:checked) {
  border-color: var(--primary-color) !important;
  background: var(--primary-color) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px var(--shadow-color);
}

.order-option:has(input[type="radio"]:checked) span,
.order-option:has(input[type="radio"]:checked) i {
  color: var(--white) !important;
}

/* Pickup time options styling */
.pickup-time-option:hover {
  border-color: var(--primary-color) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px var(--shadow-color);
}

.pickup-time-option input[type="radio"]:checked ~ * {
  color: var(--white) !important;
}

.pickup-time-option:has(input[type="radio"]:checked) {
  border-color: var(--primary-color) !important;
  background: var(--accent-color) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px var(--shadow-color);
}

/* Time selection dropdowns styling */
#pickupHour,
#pickupMinute {
  scrollbar-width: thin;
  scrollbar-color: var(--border-color) var(--light-gray);
}

#pickupHour::-webkit-scrollbar,
#pickupMinute::-webkit-scrollbar {
  width: 8px;
}

#pickupHour::-webkit-scrollbar-track,
#pickupMinute::-webkit-scrollbar-track {
  background: var(--light-gray);
  border-radius: 4px;
}

#pickupHour::-webkit-scrollbar-thumb,
#pickupMinute::-webkit-scrollbar-thumb {
  background: var(--border-color);
  border-radius: 4px;
}

#pickupHour::-webkit-scrollbar-thumb:hover,
#pickupMinute::-webkit-scrollbar-thumb:hover {
  background: var(--text-light);
}

#pickupHour option,
#pickupMinute option {
  padding: 0.5rem;
  text-align: center;
  background: var(--white);
  color: var(--text-dark);
}

#pickupHour option:hover,
#pickupMinute option:hover {
  background: var(--light-gray);
}

/* Custom time selector styling */
.time-selector-container {
  transition: all 0.3s ease;
}

.time-selector-container:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.time-display:hover {
  background: var(--gradient-light) !important;
}

.time-options {
  scrollbar-width: thin;
  scrollbar-color: var(--border-color) var(--light-gray);
}

.time-options::-webkit-scrollbar {
  width: 6px;
}

.time-options::-webkit-scrollbar-track {
  background: var(--light-gray);
}

.time-options::-webkit-scrollbar-thumb {
  background: var(--border-color);
  border-radius: 3px;
}

.time-options::-webkit-scrollbar-thumb:hover {
  background: var(--text-light);
}

.time-option:last-child {
  border-bottom: none !important;
}

/* Delivery time and preference options styling */
.delivery-time-option:hover {
  border-color: var(--primary-color) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px var(--shadow-color);
}

.delivery-time-option input[type="radio"]:checked ~ * {
  color: var(--white) !important;
}

.delivery-time-option:has(input[type="radio"]:checked) {
  border-color: var(--primary-color) !important;
  background: var(--accent-color) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px var(--shadow-color);
}

.delivery-preference-option:hover {
  border-color: var(--primary-color) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px var(--shadow-color);
}

.delivery-preference-option input[type="radio"]:checked ~ * {
  color: var(--white) !important;
}

.delivery-preference-option:has(input[type="radio"]:checked) {
  border-color: var(--primary-color) !important;
  background: var(--accent-color) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px var(--shadow-color);
}

/* Form validation styling */
input,
select,
textarea {
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--primary-color) !important;
  box-shadow: 0 0 0 2px var(--focus-shadow);
}

/* Error state styling */
.error-border {
  border-color: var(--error-color) !important;
  box-shadow: 0 0 0 2px rgba(220, 53, 69, 0.2) !important;
}

/* Custom Alert Modal */
.custom-alert-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: var(--width-full);
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10001;
  backdrop-filter: blur(4px);
}

.custom-alert {
  background: var(--white);
  border-radius: 16px;
  padding: 0;
  max-width: var(--max-width-form);
  width: 90%;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transform: scale(0.9);
  animation: alertShow 0.3s ease forwards;
  overflow: hidden;
}

@keyframes alertShow {
  to {
    transform: scale(1);
  }
}

.custom-alert-header {
  background: var(--gradient-error);
  color: var(--white);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.custom-alert-icon {
  width: var(--width-medium);
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.custom-alert-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0;
  font-family: "Playfair Display", serif;
}

.custom-alert-body {
  padding: 2rem 1.5rem;
  color: var(--text-dark);
  line-height: 1.6;
}

.custom-alert-message {
  font-size: 1rem;
  margin: 0 0 1.5rem 0;
  white-space: pre-line;
}

.custom-alert-errors {
  background: var(--light-gray);
  border-radius: 8px;
  padding: 1rem;
  margin: 1rem 0;
}

.custom-alert-errors ul {
  margin: 0;
  padding-left: 1.5rem;
  color: var(--error-color);
}

.custom-alert-errors li {
  margin: 0.5rem 0;
  font-weight: 500;
}

.custom-alert-footer {
  padding: 1rem 1.5rem 1.5rem 1.5rem;
  display: flex;
  justify-content: center;
}

.custom-alert-button {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  color: var(--white);
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.custom-alert-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px var(--shadow-color);
}

.custom-alert-button:active {
  transform: translateY(0);
}

/* Success Alert Styling */
.custom-alert.success .custom-alert-header {
  background: var(--gradient-success);
}

.custom-alert.success .custom-alert-icon {
  background: rgba(255, 255, 255, 0.2);
}

/* Order summary styling */
.order-summary {
  margin: 0 1.5rem 1.5rem 1.5rem;
  padding: 1.5rem;
  background: var(--light-gray);
  border-radius: 12px;
}

/* Action buttons styling */
.cart-actions {
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  background: var(--white);
  border-top: 1px solid var(--border-color);
  border-radius: 0 0 16px 16px;
  flex-shrink: 0;
}

.cart-actions button {
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  padding: 1rem;
}

.cart-actions button:first-child {
  flex: 1;
  border: 2px solid var(--border-color);
  background: var(--white);
  color: var(--text-dark);
}

.cart-actions button:first-child:hover {
  background: var(--light-gray);
  border-color: var(--border-color);
}

.cart-actions button:last-child {
  flex: 2;
  background: var(--text-dark);
  color: var(--white);
  border: 2px solid var(--text-dark);
}

.cart-actions button:last-child:hover {
  background: var(--text-light);
  border-color: var(--text-dark);
}

/* Responsive design */
@media (max-width: 900px) {
  .cart-content {
    max-width: 95vw;
  }
}

@media (max-width: 768px) {
  .cart-modal {
    padding: 1rem;
  }

  .cart-content {
    max-height: 95vh;
    max-width: 100vw;
  }

  .options-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
.container {
  max-width: var(--max-width-container);
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: var(--width-full);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

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

.nav-logo h2 {
  background: var(--gradient-button);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  font-size: 1.8rem;
}

.nav-menu {
  display: flex;
  list-style: none;
  align-items: center;
  gap: var(--grid-gap);
}

.nav-menu a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.nav-menu a:hover {
  color: var(--primary-color);
}

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-button);
  transition: width 0.3s ease;
}

.nav-menu a:hover::after {
  width: var(--width-full);
}

.cart-icon {
  position: relative;
}

.cart-icon a {
  font-size: 1.2rem;
  color: var(--primary-color);
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--gradient-button);
  color: var(--white);
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
}

/* Book Table Button in Navbar */
.book-table-nav {
  margin: 0 1rem;
}

.btn-book-table {
  background: var(--gradient-button);
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 2px 10px var(--shadow-color);
}

.btn-book-table:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px var(--shadow-color);
}

.btn-book-table i {
  font-size: 0.8rem;
}

/* Booking Modal Styles */
.booking-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 10000;
  backdrop-filter: blur(5px);
}

.booking-modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
}

.booking-modal-content {
  background: white;
  border-radius: 20px;
  max-width: 600px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: slideInUp 0.3s ease;
}

.booking-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 2rem 1rem 2rem;
  border-bottom: 1px solid var(--border-color);
}

.booking-modal-header h2 {
  margin: 0;
  color: var(--text-dark);
  font-size: 1.8rem;
  font-weight: 600;
}

.close-booking-modal {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-light);
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 50%;
  transition: all 0.3s ease;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.close-booking-modal:hover {
  background: var(--light-gray);
  color: var(--text-dark);
}

.booking-modal-body {
  padding: 2rem;
}

.booking-modal-body .form-group {
  margin-bottom: 1rem;
}

.booking-modal-body .form-group input {
  margin-bottom: 0;
}

.booking-modal-body label {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--text-dark);
  font-weight: 500;
}

.booking-modal-body .form-group label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.booking-modal-body input,
.booking-modal-body textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  box-sizing: border-box;
  margin-bottom: 1rem;
}

.booking-modal-body input:focus,
.booking-modal-body textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px var(--focus-shadow);
}

/* Error border styling for all input types in modal */
.booking-modal-body input.error,
.booking-modal-body textarea.error {
  border: 2px solid var(--error-color) !important;
  box-shadow: 0 0 0 3px var(--error-shadow) !important;
}

.booking-modal-body .btn-primary {
  width: 100%;
  margin-top: 1rem;
}

/* Ensure textarea has consistent margin */
.booking-modal-body textarea {
  margin-bottom: 1rem;
}

/* Booking Modal Form Elements */
.booking-modal-body .date-input-container {
  position: relative;
  width: 100%;
  margin-bottom: 0;
}

.booking-modal-body .time-selector-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  width: 100%;
  margin-bottom: 0;
}

.booking-modal-body .time-selector {
  position: relative;
  width: 100%;
}

.booking-modal-body .time-display {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  cursor: pointer;
  background: white;
  transition: all 0.3s ease;
  min-height: 48px;
  box-sizing: border-box;
}

.booking-modal-body .time-display:hover {
  border-color: var(--primary-color);
}

.booking-modal-body .time-display span {
  color: var(--text-dark);
  font-size: 1rem;
}

.booking-modal-body .time-display i {
  color: var(--text-light);
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.booking-modal-body .time-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  max-height: 200px;
  overflow-y: auto;
  display: none;
}

.booking-modal-body .time-dropdown.show {
  display: block;
}

.booking-modal-body .time-option {
  padding: 0.75rem 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
  border-bottom: 1px solid var(--border-color);
}

.booking-modal-body .time-option:last-child {
  border-bottom: none;
}

.booking-modal-body .time-option:hover {
  background-color: var(--light-gray);
}

.booking-modal-body .time-option.selected {
  background-color: var(--primary-color);
  color: white;
}

.booking-modal-body .time-display.error {
  border: 2px solid var(--error-color) !important;
  box-shadow: 0 0 0 3px var(--error-shadow) !important;
}

/* Number input styling in modal */
.booking-modal-body input[type="number"] {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  box-sizing: border-box;
  margin-bottom: 0;
}

.booking-modal-body input[type="number"]:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px var(--focus-shadow);
}

.booking-modal-body input[type="number"]:hover {
  border-color: var(--primary-color);
}

/* Error message styling in modal */
.booking-modal-body .error-message {
  color: var(--error-color);
  font-size: 0.8rem;
  margin-top: 0.25rem;
  display: none;
}

.booking-modal-body .error-message.show {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.mobile-cart {
  display: none;
}

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

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--text-dark);
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: var(--gradient-primary);
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: var(--width-full);
  height: 100%;
  z-index: 1;
}

.geometric-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: var(--width-full);
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.shape {
  position: absolute;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

.shape-1 {
  width: 100px;
  height: 100px;
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.shape-2 {
  width: 60px;
  height: 60px;
  top: 20%;
  right: 10%;
  animation-delay: 2s;
}

.shape-3 {
  width: 80px;
  height: 80px;
  top: 60%;
  left: 8%;
  animation-delay: 4s;
}

.shape-4 {
  width: 120px;
  height: 120px;
  top: 70%;
  right: 5%;
  animation-delay: 1s;
}

.shape-5 {
  width: 40px;
  height: 40px;
  top: 40%;
  left: 50%;
  animation-delay: 3s;
}

.floating-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: var(--width-full);
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  animation: particleFloat 12s linear infinite;
}

.particle:nth-child(1) {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.particle:nth-child(2) {
  top: 30%;
  left: 20%;
  animation-delay: 2s;
}

.particle:nth-child(3) {
  top: 50%;
  left: 15%;
  animation-delay: 4s;
}

.particle:nth-child(4) {
  top: 70%;
  left: 25%;
  animation-delay: 6s;
}

.particle:nth-child(5) {
  top: 40%;
  left: 80%;
  animation-delay: 8s;
}

.particle:nth-child(6) {
  top: 60%;
  left: 85%;
  animation-delay: 10s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-30px) rotate(180deg);
  }
}

@keyframes particleFloat {
  0% {
    transform: translateY(0px) translateX(0px);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100px) translateX(50px);
    opacity: 0;
  }
}

.hero-container {
  position: relative;
  z-index: 3;
  max-width: var(--max-width-container);
  margin: 0 auto;
  padding: 0 20px;
  width: var(--width-full);
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  min-height: 80vh;
}

.hero-text-section {
  animation: fadeInLeft 1s ease;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(15px);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 2rem;
}

.badge-icon {
  font-size: 1.2rem;
}

.badge-text {
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

.hero-title {
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.title-line-1 {
  display: block;
  font-size: 3.5rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.5rem;
}

.title-line-2 {
  display: block;
  font-size: 4.5rem;
  font-weight: 800;
  color: var(--white);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  margin-bottom: 0.5rem;
}

.title-accent {
  display: block;
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(45deg, var(--third-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
}

.hero-description {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 520px;
}

.hero-stats {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.hero-stats .stat-item {
  text-align: center;
}

.hero-stats .stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.hero-stats .stat-label {
  font-size: 0.8rem;

  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.hero-right {
  animation: fadeInRight 1s ease;
}

.hero-image-showcase {
  position: relative;
  height: 450px;
}

.main-showcase {
  position: absolute;
  top: 0;
  right: 0;
  width: 70%;
  height: 70%;
  z-index: 2;
}

.secondary-showcase {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60%;
  height: 50%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  z-index: 1;
}

.showcase-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.showcase-card:hover {
  transform: translateY(-10px);
}

.showcase-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.showcase-card:hover .card-overlay {
  opacity: 1;
}

.overlay-content {
  text-align: center;
  color: var(--white);
}

.overlay-content i {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.overlay-content span {
  font-size: 1.1rem;
  font-weight: 600;
}

.card-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--gradient-primary);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
}

.hero-features .feature-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.3s ease;
}

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

.hero-features .feature-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
  color: var(--white);
  font-size: 1.2rem;
}

.hero-features .feature-content h4 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.hero-features .feature-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.8rem;
  line-height: 1.4;
}

.hero-divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color)
  );
  margin: 2rem 0;
  border-radius: 2px;
}

.hero-subtitle {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  max-width: var(--max-width-form);
  font-weight: 300;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(10px);
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon i {
  color: var(--white);
  font-size: 1.2rem;
}

.feature-text h4 {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.feature-text p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin: 0;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  animation: fadeInRight 1s ease 0.3s both;
}

.hero-image-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1rem;
  height: 500px;
}

.image-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.image-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.main-image {
  grid-row: 1 / 3;
  position: relative;
}

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

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}

.main-image:hover .image-overlay {
  opacity: 1;
}

.image-overlay i {
  color: var(--white);
  font-size: 3rem;
  background: rgba(233, 30, 99, 0.8);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.image-overlay i:hover {
  background: var(--primary-color);
  transform: scale(1.1);
}

.side-image-1,
.side-image-2 {
  position: relative;
}

.side-image-1 img,
.side-image-2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-badge {
  position: absolute;
  bottom: -20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 1.5rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  animation: float 3s ease-in-out infinite;
}

.hero-badge i {
  color: var(--warning-color);
  font-size: 1.2rem;
}

.hero-badge span {
  color: var(--text-dark);
  font-weight: 600;
  font-size: 1rem;
}

.btn-primary,
.btn-secondary {
  padding: 1rem 2rem;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gradient-button);
  color: var(--white);
  box-shadow: 0 10px 30px var(--shadow-color);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px var(--shadow-color);
}

.btn-primary i {
  font-size: 1.1rem;
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--primary-color);
  transform: translateY(-3px);
}

.btn-secondary i {
  font-size: 1.1rem;
}

.hero-image-container {
  position: relative;
  animation: fadeInRight 1s ease 0.6s both;
}

.hero-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
  transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
  transition: transform 0.3s ease;
}

.hero-image:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.02);
}

.hero-image img {
  width: var(--width-full);
  height: 600px;
  object-fit: cover;
  display: block;
}

.hero-image-decoration {
  position: absolute;
  top: -20px;
  right: -20px;
  width: var(--width-large);
  height: 100px;
  background: linear-gradient(45deg, var(--warning-color), var(--third-color));
  border-radius: 50%;
  opacity: 0.8;
  z-index: -1;
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: var(--width-full);
  height: 100%;
  pointer-events: none;
}

.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  animation: float 3s ease-in-out infinite;
}

.floating-card i {
  color: var(--primary-color);
  font-size: 1.2rem;
}

.card-1 {
  top: 20%;
  right: -10%;
  animation-delay: 0s;
}

.card-2 {
  bottom: 30%;
  left: -15%;
  animation-delay: 1.5s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* About Section */
.about {
  padding: 100px 0;
  background: var(--light-gray);
  position: relative;
  overflow: hidden;
}

.about-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  opacity: 0.05;
  z-index: 1;
}

.about-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
      circle at 20% 80%,
      rgba(234, 88, 12, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(234, 88, 12, 0.1) 0%,
      transparent 50%
    );
  z-index: 2;
}

.about-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 3;
}

.about-subtitle {
  display: inline-block;
  background: var(--gradient-primary);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.about-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-divider {
  width: 80px;
  height: 4px;
  background: var(--gradient-primary);
  margin: 0 auto;
  border-radius: 2px;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
  position: relative;
  z-index: 3;
}

.about-main {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.story-card {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2rem;
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(234, 88, 12, 0.1);
}

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

.story-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.story-content h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.story-content p {
  color: var(--text-light);
  line-height: 1.6;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.stat-item {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(234, 88, 12, 0.1);
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;

  background-clip: text;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--text-light);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.about-visual {
  position: relative;
}

.image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1rem;
  height: 500px;
}

.image-main {
  grid-column: 1 / 3;
  grid-row: 1 / 2;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.image-secondary {
  grid-column: 1 / 2;
  grid-row: 2 / 3;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.image-tertiary {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

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

.image-grid img:hover {
  transform: scale(1.05);
}

.about-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 3;
}

.feature-card {
  text-align: center;
  padding: 2.5rem 2rem;
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(234, 88, 12, 0.1);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 2rem;
}

.feature-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.feature-card p {
  color: var(--text-light);
  line-height: 1.6;
}

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

.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-text p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  line-height: 1.8;
}

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

.feature {
  text-align: center;
  padding: 2rem;
  background: var(--white);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

.feature i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.feature h3 {
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.feature p {
  color: var(--text-light);
  font-size: 0.9rem;
}

.about-image img {
  width: var(--width-full);
  height: 400px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

/* Menu Section */
.menu {
  padding: 100px 0;
  background: var(--white);
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Menu Search */
.menu-search-container {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.search-box {
  position: relative;
  width: var(--width-full);
  max-width: var(--max-width-form);
  display: flex;
  align-items: center;
  background: var(--white);
  border-radius: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
}

.search-box:focus-within {
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
  transform: translateY(-2px);
}

.search-box i {
  position: absolute;
  left: 20px;
  color: var(--primary-color);
  font-size: 1.1rem;
  z-index: 2;
}

.search-box input {
  width: var(--width-full);
  padding: 15px 20px 15px 50px;
  border: none;
  outline: none;
  font-size: 1rem;
  font-family: inherit;
  background: transparent;
  color: var(--text-dark);
}

.search-box input::placeholder {
  color: var(--text-light);
  transition: color 0.3s ease;
}

.search-box input:focus::placeholder {
  color: var(--border-color);
}

.clear-search {
  position: absolute;
  right: 15px;
  background: var(--error-color);
  color: var(--white);
  border: none;
  width: var(--width-small);
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 2;
}

.clear-search:hover {
  background: var(--error-color);
  transform: scale(1.1);
}

.search-results-info {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--text-light);
  font-style: italic;
}

.no-results {
  text-align: center;
  padding: 3rem;
  color: var(--text-light);
}

.no-results i {
  font-size: 3rem;
  color: var(--border-color);
  margin-bottom: 1rem;
}

.no-results h3 {
  margin-bottom: 0.5rem;
  color: var(--text-light);
}

.no-results p {
  color: var(--text-light);
}

/* Menu Filters */
.menu-filters {
  display: flex;
  justify-content: center;
  gap: var(--grid-gap);
  margin-bottom: 3rem;
  flex-wrap: wrap;
  padding: 0 20px;
}

.filter-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.filter-group h4 {
  font-size: 0.9rem;
  color: var(--text-light);
  margin: 0;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.filter-buttons {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.filter-btn {
  padding: 8px 16px;
  border: 2px solid var(--border-color);
  background: var(--white);
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
}

.filter-btn.active {
  background: var(--gradient-hero);
  color: var(--white);
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.filter-btn.active::after {
  content: "✓";
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.8rem;
  font-weight: bold;
}

.filter-btn:hover:not(.active) {
  border-color: var(--primary-color);
  color: var(--primary-color);
  transform: translateY(-1px);
}

.dietary-icon {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}

.dietary-icon.veg {
  background-color: var(--success-color);
}

.dietary-icon.non-veg {
  background-color: var(--error-color);
}

.menu-grid {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.menu-section {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.menu-section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 1rem;
}

.menu-section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

.menu-section-items {
  display: grid;
  grid-template-columns: var(--grid-auto-fit);
  gap: var(--grid-gap);
}

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

.menu-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.menu-item-image {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.menu-item-image img {
  width: var(--width-full);
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.menu-item-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.5rem;
}

.menu-item h3 {
  font-size: 1.3rem;
  margin: 0;
  color: var(--text-dark);
  flex: 1;
}

.dietary-indicator {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 0, 0, 0.05);
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 500;
}

.dietary-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}

.dietary-dot.veg {
  background-color: var(--success-color);
}

.dietary-dot.non-veg {
  background-color: var(--error-color);
}

.dietary-text {
  color: var(--text-light);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.menu-category {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  text-transform: capitalize;
  font-weight: 500;
}

.menu-description {
  color: var(--text-light);
  margin-bottom: 1rem;
  line-height: 1.6;
  flex: 1;
}

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

.price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

.add-to-cart {
  background: var(--gradient-button);
  color: var(--white);
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.add-to-cart:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

/* Cart Modal */
.cart-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: var(--width-full);
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
}

.cart-content {
  background: var(--white);
  margin: 5% auto;
  padding: 0;
  border-radius: 20px;

  max-width: var(--max-width-content);
  max-height: 80vh;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: slideInDown 0.3s ease;
}

.cart-header {
  background: var(--gradient-button);
  color: var(--white);
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-header h3 {
  margin: 0;
  font-size: 1.5rem;
}

.close-cart {
  font-size: 2rem;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.close-cart:hover {
  transform: rotate(90deg);
}

.cart-items {
  overflow-y: auto;
  padding: 1rem;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-color);
}

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

.cart-item-info h4 {
  margin: 0 0 0.5rem 0;
  color: var(--text-dark);
}

.cart-item-info p {
  margin: 0;
  color: var(--text-light);
  font-size: 0.9rem;
}

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.quantity-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.quantity-btn {
  background: var(--light-gray);
  border: none;
  width: var(--width-small);
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.quantity-btn:hover {
  background: var(--error-color);
  color: var(--white);
}

.remove-item {
  background: var(--error-color);
  color: var(--white);
  border: none;
  padding: 5px 10px;
  border-radius: 15px;
  cursor: pointer;
  font-size: 0.8rem;
  transition: all 0.3s ease;
}

.remove-item:hover {
  background: var(--error-color);
  transform: scale(1.05);
}

.cart-footer {
  padding: 1.5rem;
  background: var(--light-gray);
  border-top: 1px solid var(--border-color);
}

.cart-total {
  text-align: center;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

#checkoutBtn {
  width: var(--width-full);
  padding: 15px;
  font-size: 1.1rem;
}

/* Contact Section */
.contact {
  padding: 100px 0;
  background: var(--gradient-hero);
  color: var(--white);
}

.contact .section-title {
  color: var(--white);
  -webkit-text-fill-color: white;
  background: none;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-item i {
  font-size: 1.5rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.contact-item h3 {
  margin-bottom: 0.5rem;
  color: var(--white);
}

.contact-item p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

.contact-form {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-form input,
.contact-form textarea {
  width: var(--width-full);
  padding: 15px;
  margin-bottom: 1rem;
  border: none;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.9);
  font-family: inherit;
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  background: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-form button {
  width: var(--width-full);
  padding: 15px;
  background: var(--gradient-button);
  color: var(--white);
  border: none;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
}

/* Booking Form Styles */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.form-group label {
  font-weight: 600;
  color: var(--white);
  font-size: 0.9rem;
}

.date-input-container {
  position: relative;
}

.time-selector-container {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.time-selector {
  flex: 1;
  min-width: 0;
  position: relative;
}

.time-display {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
  min-height: 48px;
}

.time-display:hover {
  border-color: var(--primary-color);
  background: var(--white);
}

.time-display span {
  font-size: 0.9rem;
  color: var(--text-dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.time-display i {
  font-size: 0.8rem;
  color: #666;
  transition: transform 0.3s ease;
}

.time-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  max-height: 200px;
  overflow-y: auto;
  display: none;
}

.time-dropdown.show {
  display: block;
}

.time-option {
  padding: 0.75rem 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.time-option:hover {
  background-color: var(--light-gray);
}

.time-option.selected {
  background-color: var(--primary-color);
  color: white;
}

.time-display.error {
  border: 2px solid var(--error-color) !important;
  box-shadow: 0 0 0 3px var(--error-shadow) !important;
}

/* Number input styling */
.contact-form input[type="number"] {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.9);
  color: var(--text-dark);
  transition: all 0.3s ease;
}

.contact-form input[type="number"]:focus {
  outline: none;
  border-color: var(--primary-color);
  background: var(--white);
  box-shadow: 0 0 0 2px var(--focus-shadow);
}

.contact-form input[type="number"]:hover {
  border-color: var(--primary-color);
  background: var(--white);
}

.contact-form input[type="number"].error {
  border-color: var(--error-color) !important;
  box-shadow: 0 0 0 2px var(--error-shadow) !important;
}

/* Error message styling */
.error-message {
  color: var(--error-color);
  font-size: 0.8rem;
  margin-top: 0.25rem;
  display: none;
}

.error-message.show {
  display: block;
}

/* Error border styling for all input types */
.contact-form input.error,
.contact-form select.error,
.contact-form textarea.error {
  border: 2px solid var(--error-color) !important;
  box-shadow: 0 0 0 3px var(--error-shadow) !important;
}

/* Alert animations */
@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideOutRight {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(100%);
    opacity: 0;
  }
}

/* Footer */
.footer {
  background: var(--dark-bg);
  color: var(--white);
  padding: 50px 0 20px;
}

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

.footer-section h3,
.footer-section h4 {
  margin-bottom: 1rem;
  color: var(--warning-color);
}

.footer-section p {
  color: var(--border-color);
  line-height: 1.6;
  margin-bottom: 1rem;
}

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

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

.footer-section ul li a {
  color: var(--border-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: var(--warning-color);
}

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

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--width-medium);
  height: 40px;
  background: var(--gradient-button);
  color: var(--white);
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-links a:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--text-dark);
  color: var(--text-light);
}

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

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

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

  .mobile-cart {
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    z-index: 1002;
  }

  .mobile-cart .nav-link {
    color: var(--primary-color);
    font-size: 1.2rem;
    padding: 8px;
  }

  .mobile-cart .cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--gradient-button);
    color: var(--white);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    border: 2px solid var(--white);
  }
}

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

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: white;
    width: var(--width-full);
    height: calc(100vh - 70px);
    text-align: center;
    transition: 0.3s ease;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 2rem 0;
    z-index: 999;
    overflow-y: auto;
  }

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

  .nav-menu li {
    margin: 1rem 0;
  }

  .nav-menu a {
    font-size: 1.2rem;
    padding: 1rem 2rem;
    display: block;
    width: var(--width-full);
  }

  /* Mobile Book Table Button */
  .book-table-nav {
    margin: 1rem 0;
  }

  .btn-book-table {
    width: 100%;
    justify-content: center;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    margin: 0 2rem;
  }

  /* Mobile Booking Modal */
  .booking-modal-content {
    width: 95%;
    max-height: 95vh;
    margin: 1rem;
  }

  .booking-modal-header {
    padding: 1.5rem 1.5rem 1rem 1.5rem;
  }

  .booking-modal-header h2 {
    font-size: 1.5rem;
  }

  .booking-modal-body {
    padding: 1.5rem;
  }

  /* Mobile About Section */
  .about-title {
    font-size: 2.5rem;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .image-grid {
    height: 400px;
  }

  .about-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .story-card {
    padding: 1.5rem;
  }

  .story-icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  /* Mobile Hero Section */
  .hero-main {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .hero-stats {
    justify-content: center;
    gap: 1.5rem;
  }

  .hero-stats .stat-number {
    font-size: 1.5rem;
  }

  .hero-actions {
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
  }

  .hero-image-showcase {
    height: 400px;
  }

  .main-showcase {
    width: 80%;
    height: 60%;
  }

  .secondary-showcase {
    width: 70%;
    height: 40%;
  }

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

  .title-word-1,
  .title-word-2 {
    font-size: 3.5rem;
  }

  .floating-icon {
    font-size: 1.5rem;
  }

  /* Mobile Booking Modal Form Elements */
  .booking-modal-body .time-selector-container {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .booking-modal-body .time-display {
    padding: 0.75rem;
    min-height: 44px;
  }

  .booking-modal-body .time-display span {
    font-size: 0.9rem;
  }

  .booking-modal-body .time-option {
    padding: 0.6rem 0.75rem;
    font-size: 0.9rem;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: var(--grid-gap);
    text-align: center;
    padding: 100px 20px 50px;
  }

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

  .hero-stats {
    justify-content: center;
    gap: 1rem;
  }

  .hero-buttons {
    justify-content: center;
  }

  .floating-card {
    display: none;
  }

  .about-content,
  .contact-content {
    grid-template-columns: 1fr;
    gap: var(--grid-gap);
  }

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

  .menu-filters {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }

  .filter-group {
    width: var(--width-full);
    max-width: 400px;
  }

  .filter-buttons {
    justify-content: center;
  }

  .filter-btn {
    padding: 10px 16px;
    font-size: 0.9rem;
  }

  .menu-item-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .dietary-indicator {
    align-self: flex-start;
  }

  .cart-content {
    width: 95%;
    margin: 10% auto;
  }

  .search-box {
    max-width: 100%;
    margin: 0 20px;
  }

  .search-box input {
    font-size: 0.9rem;
  }
}

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

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

  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .stat-number {
    font-size: 1.5rem;
  }

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

  .about-text h2 {
    font-size: 2rem;
  }

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

  .contact-form {
    padding: 1.5rem;
  }

  /* Hero responsive styles */
  .hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
    padding: 100px 20px 50px;
  }

  .title-line-1,
  .title-line-2 {
    font-size: 3rem;
  }

  .hero-features {
    align-items: center;
  }

  .feature-item {
    max-width: 400px;
    margin: 0 auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-image-grid {
    height: 400px;
    grid-template-columns: 1fr;
    grid-template-rows: 2fr 1fr 1fr;
  }

  .main-image {
    grid-row: 1;
  }

  .hero-badge {
    position: static;
    margin-top: 2rem;
    display: inline-flex;
  }
}

/* Customization Modal Styles */
.customization-modal {
  background: var(--white);
  border-radius: 16px;
  max-width: 500px;
  width: 100%;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.customization-header {
  padding: 1.5rem 1.5rem 0 1.5rem;
  flex-shrink: 0;
}

.customization-title {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.customization-title-text h3 {
  margin: 0;
  color: var(--text-dark);
  font-size: 1.3rem;
  font-weight: 700;
}

.customization-title-text p {
  margin: 0.3rem 0 0 0;
  color: var(--text-light);
  font-size: 0.9rem;
}

.customization-close-btn {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-light);
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.customization-close-btn:hover {
  background: var(--light-gray);
  color: var(--text-dark);
}

.customization-item-card {
  display: flex;
  align-items: center;
  padding: 1rem;
  background: var(--light-gray);
  border-radius: 12px;
  margin-bottom: 1.5rem;
}

.customization-item-image {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
  margin-right: 1rem;
}

.customization-item-details h4 {
  margin: 0 0 0.25rem 0;
  color: var(--text-dark);
  font-size: 1.1rem;
  font-weight: 600;
}

.customization-item-details p {
  margin: 0;
  color: var(--text-light);
  font-size: 0.9rem;
}

.customization-content {
  padding: 0 1.5rem 1.5rem 1.5rem;
  flex: 1;
  overflow-y: auto;
}

.customization-section {
  margin-bottom: 2rem;
}

.customization-section-title {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.customization-section-title h4 {
  margin: 0;
  color: var(--text-dark);
  font-size: 1.1rem;
  font-weight: 600;
}

.customization-section-info {
  margin-left: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.customization-required-badge {
  background: var(--warning-color);
  color: var(--text-dark);
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 600;
}

.customization-required-text {
  color: var(--error-color);
  font-size: 0.8rem;
  font-weight: 600;
}

.customization-options {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.customization-option {
  display: flex;
  align-items: center;
  padding: 1rem;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: var(--white);
}

.customization-option:hover {
  border-color: var(--primary-color);
  background: var(--light-gray);
}

.customization-option.selected {
  border-color: var(--primary-color);
  background: rgba(26, 26, 46, 0.05);
}

.customization-option input[type="radio"],
.customization-option input[type="checkbox"] {
  margin-right: 1rem;
  accent-color: var(--primary-color);
  width: 18px;
  height: 18px;
}

.customization-option-text {
  flex: 1;
  font-weight: 500;
  color: var(--text-dark);
  font-size: 0.95rem;
}

.customization-option-price {
  color: var(--error-color);
  font-weight: 600;
  font-size: 0.85rem;
}

.customization-footer {
  padding: 1.5rem;
  border-top: 1px solid var(--border-color);
  flex-shrink: 0;
}

.customization-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.customization-total-label {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
}

.customization-total-price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-color);
}

.customization-actions {
  display: flex;
  gap: 1rem;
}

.customization-cancel-btn {
  flex: 1;
  padding: 1rem;
  background: var(--light-gray);
  color: var(--text-dark);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.customization-cancel-btn:hover {
  background: var(--border-color);
}

.customization-add-btn {
  flex: 2;
  padding: 1rem;
  background: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
}

.customization-add-btn:hover {
  background: var(--secondary-color);
  transform: translateY(-1px);
}

.customization-add-btn-text {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.customization-add-btn-price {
  font-size: 0.9rem;
  font-weight: 700;
}

/* Edit Cart Item Button */
.edit-cart-item-btn {
  background: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: 6px;
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.edit-cart-item-btn:hover {
  background: var(--secondary-color);
  transform: translateY(-1px);
}

.edit-cart-item-btn i {
  font-size: 0.7rem;
}

/* Modal Overlay Styles */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 1rem;
}

.modal-overlay.dark {
  background: rgba(0, 0, 0, 0.8);
}

/* New Hero Visual Section Styles */
.hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.stat-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 1rem;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
}

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

.stat-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-button);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
}

.stat-info {
  flex: 1;
}

.stat-number {
  font-size: 1.5rem;
  font-weight: 700;

  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.8rem;

  font-weight: 500;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.hero-stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.hero-stat-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--white);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  position: relative;
  overflow: hidden;
}

.btn-large {
  padding: 1.5rem 3rem;
  font-size: 1.1rem;
}

.btn-primary {
  background: var(--gradient-button);
  color: var(--white);
  box-shadow: 0 8px 25px var(--shadow-color);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px var(--shadow-color);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(15px);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-text {
  z-index: 2;
}

.btn-icon {
  z-index: 2;
  transition: transform 0.3s ease;
}

.btn:hover .btn-icon {
  transform: translateX(5px);
}

.hero-visual-section {
  position: relative;
  animation: fadeInRight 1s ease;
}

.hero-image-stack {
  position: relative;
  height: 500px;
}

.image-card {
  position: absolute;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.image-card:hover {
  transform: scale(1.05);
  z-index: 10;
}

.main-image {
  width: 300px;
  height: 400px;
  top: 50px;
  left: 50px;
  z-index: 5;
}

.floating-image-1 {
  width: 180px;
  height: 240px;
  top: 0;
  right: 0;
  z-index: 4;
  animation: float 6s ease-in-out infinite;
}

.floating-image-2 {
  width: 160px;
  height: 200px;
  bottom: 0;
  left: 0;
  z-index: 3;
  animation: float 8s ease-in-out infinite;
  animation-delay: 2s;
}

.floating-image-3 {
  width: 140px;
  height: 180px;
  top: 200px;
  right: 50px;
  z-index: 2;
  animation: float 7s ease-in-out infinite;
  animation-delay: 4s;
}

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

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}

.main-image:hover .image-overlay {
  opacity: 1;
}

.overlay-badge {
  background: rgba(255, 255, 255, 0.9);
  padding: 1rem 1.5rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-dark);
  font-weight: 600;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.main-image:hover .overlay-badge {
  transform: translateY(0);
}

.image-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--gradient-button);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: 0 4px 15px var(--shadow-color);
}

.hero-features-floating {
  position: absolute;
  bottom: -50px;
  left: 0;
  right: 0;
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.feature-floating-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  padding: 1rem 1.5rem;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

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

.feature-floating-card .feature-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient-button);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
}

.feature-text {
  display: flex;
  flex-direction: column;
}

.feature-title {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.feature-subtitle {
  font-size: 0.8rem;
  color: var(--text-light);
}
