@layer reset, base, theme, components, utilities;

@layer reset {
  *, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
  }
  
  body {
    min-block-size: 100vh;
    text-rendering: optimizeSpeed;
    line-height: 1.6;
    overflow-x: hidden;
  }
  
  img, picture, svg, video {
    display: block;
    max-inline-size: 100%;
    block-size: auto;
    aspect-ratio: attr(width) / attr(height);
  }
  
  input, button, textarea, select {
    font: inherit;
    color: inherit;
    background: transparent;
    border: none;
  }
  
  button {
    cursor: pointer;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }
}

@layer base {
  :root {
    /* Color Palette */
    --color-slate-950: #07090b;
    --color-slate-900: #0b0d0f;
    --color-slate-800: #13171d;
    --color-slate-700: #1e242d;
    --color-slate-600: #2d3644;
    --color-slate-400: #64738a;
    --color-slate-300: #94a3b8;
    --color-slate-100: #f1f5f9;
    
    --color-gold-300: #f3d4a0;
    --color-gold-400: #dfb775;
    --color-gold-500: #cfa86b; /* Accent Primary */
    --color-gold-600: #b58d4f;
    --color-gold-700: #936e37;
    
    /* Semantic Variables */
    --bg-main: var(--color-slate-950);
    --bg-surface: var(--color-slate-900);
    --bg-surface-elevated: var(--color-slate-800);
    --bg-glass: rgba(19, 23, 29, 0.7);
    --border-glass: rgba(207, 168, 107, 0.15);
    --border-subtle: rgba(255, 255, 255, 0.08);
    
    --accent: var(--color-gold-500);
    --accent-glow: rgba(207, 168, 107, 0.3);
    
    --text-primary: var(--color-white);
    --text-secondary: var(--color-slate-300);
    --text-muted: var(--color-slate-400);
    
    --color-white: #ffffff;
    --color-veg: #10b981;
    --color-nonveg: #ef4444;
    
    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    
    /* Shadows */
    --shadow-soft: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 20px rgba(207, 168, 107, 0.15);
    --shadow-glass: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-full: 9999px;
    
    /* Interpolation helper for gradients */
    --in-oklab: ;
  }

  @supports (linear-gradient(in oklab, white, black)) {
    :root {
      --in-oklab: in oklab;
    }
  }

  body {
    background-color: var(--bg-main);
    color: var(--color-white);
    font-family: var(--font-body);
    font-weight: 300;
    overflow-x: hidden;
  }
  
  h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--color-white);
  }
  
  /* Selection styling */
  ::selection {
    background-color: var(--accent);
    color: var(--color-slate-950);
  }
  
  /* Scrollbar Customization */
  html {
    scrollbar-color: var(--accent) var(--bg-main);
    scrollbar-width: thin;
  }
  
  ::-webkit-scrollbar {
    width: 8px;
  }
  ::-webkit-scrollbar-track {
    background: var(--bg-main);
  }
  ::-webkit-scrollbar-thumb {
    background: var(--color-slate-700);
    border-radius: var(--radius-full);
    border: 2px solid var(--bg-main);
  }
  ::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
  }
  
  /* Focus Rings styling */
  :focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 4px;
  }
}

@layer theme {
  .theme-gold {
    --accent: var(--color-gold-500);
    --accent-light: var(--color-gold-300);
  }
}

@layer components {
  /* Navigation Bar */
  .navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: var(--bg-glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-subtle);
    padding: 1rem 2rem;
    transition: padding 0.3s ease, background 0.3s ease;
    
    &.scrolled {
      padding: 0.75rem 2rem;
      background: rgba(11, 13, 15, 0.95);
      box-shadow: var(--shadow-soft);
    }
    
    .nav-container {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    
    .logo {
      font-family: var(--font-heading);
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--color-white);
      display: flex;
      flex-direction: column;
      line-height: 1;
      
      span {
        font-family: var(--font-body);
        font-size: 0.65rem;
        letter-spacing: 0.4em;
        text-transform: uppercase;
        color: var(--accent);
        margin-top: 2px;
      }
    }
    
    .nav-links {
      display: flex;
      gap: 2rem;
      align-items: center;
      list-style: none;
      
      a {
        font-size: 0.9rem;
        font-weight: 400;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: var(--text-secondary);
        transition: color 0.3s ease;
        position: relative;
        
        &::after {
          content: '';
          position: absolute;
          bottom: -4px;
          left: 0;
          width: 0;
          height: 1px;
          background: var(--accent);
          transition: width 0.3s ease;
        }
        
        &:hover, &.active {
          color: var(--accent);
          &::after {
            width: 100%;
          }
        }
      }
    }
    
    .menu-toggle {
      display: none;
      flex-direction: column;
      gap: 6px;
      width: 30px;
      height: 24px;
      justify-content: center;
      z-index: 101;
      
      span {
        width: 100%;
        height: 2px;
        background: var(--color-white);
        transition: transform 0.3s ease, opacity 0.3s ease;
      }
      
      &.active span {
        &:nth-child(1) { transform: translateY(8px) rotate(45deg); }
        &:nth-child(2) { opacity: 0; }
        &:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
      }
    }
  }

  /* Luxury Hero Section */
  .hero-section {
    position: relative;
    height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: radial-gradient(circle, rgba(19, 23, 29, 0.4) 0%, rgba(7, 9, 11, 0.95) 100%);
    overflow: hidden;
    
    .hero-bg-wrapper {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: -1;
      opacity: 0.35;
      
      img, video {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }
      
      img {
        transform: scale(1.05);
        animation: slowZoom 20s infinite alternate ease-in-out;
      }
    }
    
    .hero-content {
      max-width: 900px;
      padding: 0 1.5rem;
      z-index: 2;
    }
    
    .hero-tag {
      font-size: 0.85rem;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.5em;
      color: var(--accent);
      margin-bottom: 1.5rem;
      animation: fadeInDown 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }
    
    .hero-title {
      font-size: clamp(2.5rem, 1rem + 6vw, 5.5rem);
      font-family: var(--font-heading);
      line-height: 1.1;
      margin-bottom: 1.5rem;
      animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
      opacity: 0;
      
      span {
        display: block;
        font-family: var(--font-body);
        font-weight: 200;
        font-size: 0.35em;
        text-transform: uppercase;
        letter-spacing: 0.3em;
        color: var(--color-white);
        margin-top: 1rem;
      }
    }
    
    .hero-desc {
      font-size: clamp(1rem, 0.9rem + 0.5vw, 1.25rem);
      color: var(--text-secondary);
      max-width: 600px;
      margin: 0 auto 2.5rem;
      animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
      opacity: 0;
    }
    
    .hero-buttons {
      display: flex;
      gap: 1.5rem;
      justify-content: center;
      animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
      opacity: 0;
    }
  }

  /* Golden Primary Button */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.25rem;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    border-radius: var(--radius-sm);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    
    &.btn-primary {
      background: var(--accent);
      color: var(--color-slate-950);
      border: 1px solid var(--accent);
      
      &:hover {
        background: transparent;
        color: var(--accent);
        box-shadow: var(--shadow-glow);
        transform: translateY(-2px);
      }
    }
    
    &.btn-secondary {
      background: transparent;
      color: var(--color-white);
      border: 1px solid var(--border-glass);
      
      &:hover {
        background: var(--accent);
        color: var(--color-slate-950);
        border-color: var(--accent);
        transform: translateY(-2px);
      }
    }
  }

  /* Section Containers */
  .section {
    padding: 4rem 2rem;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    
    .section-header {
      text-align: center;
      margin-bottom: 3rem;
      
      .section-tag {
        font-size: 0.8rem;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 0.4em;
        color: var(--accent);
        margin-bottom: 1rem;
        display: block;
      }
      
      .section-title {
        font-size: clamp(2rem, 1.5rem + 2vw, 3.5rem);
        font-weight: 500;
        line-height: 1.2;
      }
      
      .section-divider {
        width: 60px;
        height: 1px;
        background: var(--accent);
        margin: 1.5rem auto 0;
      }
    }
  }

  /* Story Timeline (Scroll-driven effect) */
  .timeline-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 0;
    
    &::before {
      content: '';
      position: absolute;
      left: 50%;
      top: 0;
      width: 1px;
      height: 100%;
      background: var(--border-glass);
      transform: translateX(-50%);
    }
    
    .timeline-item {
      display: flex;
      justify-content: space-between;
      width: 100%;
      margin-bottom: 6rem;
      position: relative;
      opacity: 0;
      transform: translateY(40px);
      transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
      
      &.visible {
        opacity: 1;
        transform: translateY(0);
      }
      
      .timeline-dot {
        position: absolute;
        left: 50%;
        top: 20px;
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: var(--accent);
        border: 3px solid var(--bg-main);
        transform: translateX(-50%);
        box-shadow: 0 0 10px var(--accent);
      }
      
      .timeline-content {
        width: 44%;
        background: var(--bg-surface);
        padding: 2.5rem;
        border-radius: var(--radius-md);
        border: 1px solid var(--border-subtle);
        box-shadow: var(--shadow-soft);
        position: relative;
        transition: border-color 0.3s ease, transform 0.3s ease;
        
        &:hover {
          border-color: var(--border-glass);
          transform: translateY(-5px);
        }
        
        .year {
          font-family: var(--font-body);
          font-size: 1.5rem;
          font-weight: 700;
          color: var(--accent);
          margin-bottom: 0.5rem;
        }
        
        h3 {
          margin-bottom: 1rem;
          font-size: 1.25rem;
        }
        
        p {
          color: var(--text-secondary);
          font-size: 0.95rem;
        }
      }
      
      &:nth-child(even) {
        flex-direction: row-reverse;
        
        .timeline-content {
          text-align: left;
        }
      }
    }
  }

  /* Interactive Menu Section */
  .menu-controls {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3.5rem;
    align-items: center;
    
    .menu-search-wrapper {
      position: relative;
      width: 100%;
      max-width: 500px;
      
      input {
        width: 100%;
        padding: 1rem 1.5rem 1rem 3rem;
        background: var(--bg-surface-elevated);
        border: 1px solid var(--border-subtle);
        border-radius: var(--radius-full);
        color: var(--color-white);
        font-size: 0.95rem;
        transition: all 0.3s ease;
        
        &:focus {
          border-color: var(--accent);
          box-shadow: var(--shadow-glow);
          outline: none;
        }
      }
      
      .search-icon {
        position: absolute;
        left: 1.2rem;
        top: 50%;
        transform: translateY(-50%);
        color: var(--text-muted);
        pointer-events: none;
      }
    }
    
    .filter-tabs {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;
      justify-content: center;
      
      .filter-btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.8rem;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        background: var(--bg-surface);
        border: 1px solid var(--border-subtle);
        border-radius: var(--radius-full);
        transition: all 0.3s ease;
        
        &:hover, &.active {
          background: var(--accent);
          color: var(--color-slate-950);
          border-color: var(--accent);
        }
      }
    }
    
    .diet-filters {
      display: flex;
      gap: 1.5rem;
      
      .diet-checkbox {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        cursor: pointer;
        font-size: 0.85rem;
        color: var(--text-secondary);
        
        input {
          appearance: none;
          width: 16px;
          height: 16px;
          border: 1px solid var(--border-subtle);
          border-radius: var(--radius-sm);
          position: relative;
          transition: all 0.3s ease;
          
          &:checked {
            background: var(--accent);
            border-color: var(--accent);
            
            &::after {
              content: '✓';
              position: absolute;
              top: 50%;
              left: 50%;
              transform: translate(-50%, -50%);
              font-size: 10px;
              color: var(--color-slate-950);
              font-weight: bold;
            }
          }
        }
      }
    }
  }

  .menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    
    .menu-card {
      background: var(--bg-surface);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-md);
      padding: 1.75rem;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      position: relative;
      overflow: hidden;
      
      &:hover {
        border-color: var(--border-glass);
        transform: translateY(-5px);
        box-shadow: var(--shadow-soft);
      }
      
      .card-header {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 1rem;
        margin-bottom: 0.75rem;
        
        .food-title {
          font-size: 1.15rem;
          font-weight: 500;
          line-height: 1.3;
        }
        
        .diet-badge {
          width: 12px;
          height: 12px;
          border-radius: 2px;
          border: 1px solid transparent;
          flex-shrink: 0;
          margin-top: 4px;
          position: relative;
          display: flex;
          align-items: center;
          justify-content: center;
          
          &::after {
            content: '';
            width: 6px;
            height: 6px;
            border-radius: 50%;
          }
          
          &.veg {
            border-color: var(--color-veg);
            &::after { background: var(--color-veg); }
          }
          
          &.nonveg {
            border-color: var(--color-nonveg);
            &::after { background: var(--color-nonveg); }
          }
        }
      }
      
      .food-desc {
        font-size: 0.85rem;
        color: var(--text-secondary);
        margin-bottom: 1.5rem;
        flex-grow: 1;
        display: -webkit-box;
        line-clamp: 2;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
      }
      
      .card-footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
        
        .price {
          font-family: var(--font-body);
          font-size: 1.1rem;
          font-weight: 500;
          color: var(--accent);
        }
        
        .add-to-cart-btn {
          width: 32px;
          height: 32px;
          border-radius: 50%;
          background: var(--bg-surface-elevated);
          border: 1px solid var(--border-subtle);
          display: flex;
          align-items: center;
          justify-content: center;
          color: var(--color-white);
          transition: all 0.3s ease;
          font-size: 1.1rem;
          
          &:hover {
            background: var(--accent);
            color: var(--color-slate-950);
            border-color: var(--accent);
            transform: scale(1.1);
          }
        }
      }
    }
  }

  /* Floating Cart Panel */
  .cart-panel-trigger {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 90;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--color-slate-950);
    box-shadow: 0 8px 30px rgba(207, 168, 107, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: transform 0.3s ease, background-color 0.3s ease;
    
    &:hover {
      transform: scale(1.08);
      background: var(--color-gold-300);
    }
    
    .cart-count {
      position: absolute;
      top: -5px;
      right: -5px;
      background: var(--color-nonveg);
      color: var(--color-white);
      font-size: 0.75rem;
      font-weight: 700;
      width: 22px;
      height: 22px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: var(--shadow-soft);
    }
  }

  .cart-drawer {
    position: fixed;
    top: 0;
    right: -420px;
    width: 100%;
    max-width: 420px;
    height: 100vh;
    z-index: 150;
    background: var(--bg-surface);
    border-left: 1px solid var(--border-glass);
    box-shadow: var(--shadow-glass);
    display: flex;
    flex-direction: column;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    
    &.open {
      right: 0;
    }
    
    .cart-header {
      padding: 1.5rem;
      border-bottom: 1px solid var(--border-subtle);
      display: flex;
      justify-content: space-between;
      align-items: center;
      
      h3 {
        font-family: var(--font-body);
        font-size: 1.25rem;
        font-weight: 500;
      }
      
      .close-cart {
        font-size: 1.5rem;
        color: var(--text-muted);
        &:hover { color: var(--color-white); }
      }
    }
    
    .cart-items {
      flex-grow: 1;
      overflow-y: auto;
      padding: 1.5rem;
      display: flex;
      flex-direction: column;
      gap: 1.25rem;
      
      .empty-cart-msg {
        text-align: center;
        color: var(--text-muted);
        margin: auto;
        font-size: 0.95rem;
      }
      
      .cart-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.04);
        padding-bottom: 1rem;
        
        .item-info {
          flex-grow: 1;
          margin-right: 1rem;
          
          h4 {
            font-family: var(--font-body);
            font-size: 0.95rem;
            font-weight: 400;
            margin-bottom: 0.25rem;
          }
          .item-price {
            font-size: 0.85rem;
            color: var(--accent);
          }
        }
        
        .quantity-controls {
          display: flex;
          align-items: center;
          gap: 0.75rem;
          background: var(--bg-surface-elevated);
          border: 1px solid var(--border-subtle);
          padding: 0.25rem 0.5rem;
          border-radius: var(--radius-sm);
          
          button {
            width: 20px;
            height: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.85rem;
            color: var(--text-secondary);
            &:hover { color: var(--accent); }
          }
          
          span {
            font-size: 0.85rem;
            width: 20px;
            text-align: center;
          }
        }
      }
    }
    
    .cart-footer {
      padding: 1.5rem;
      border-top: 1px solid var(--border-subtle);
      background: var(--bg-surface-elevated);
      
      .summary-row {
        display: flex;
        justify-content: space-between;
        margin-bottom: 1rem;
        font-size: 0.95rem;
        
        &.total {
          font-size: 1.15rem;
          font-weight: 500;
          color: var(--accent);
          border-top: 1px solid var(--border-subtle);
          padding-top: 1rem;
          margin-bottom: 1.5rem;
        }
      }
      
      .whatsapp-checkout-btn {
        width: 100%;
        background: #25d366; /* WhatsApp Green */
        color: white;
        padding: 1rem;
        border-radius: var(--radius-sm);
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        font-size: 0.85rem;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        transition: all 0.3s ease;
        
        &:hover {
          background: #128c7e;
          transform: translateY(-2px);
          box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
        }
        
        svg {
          width: 18px;
          height: 18px;
          fill: currentColor;
        }
      }
    }
  }
  
  .cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 140;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    
    &.open {
      opacity: 1;
      pointer-events: auto;
    }
  }

  /* Booking Widget */
  .booking-widget {
    background: var(--bg-surface);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-glass);
    padding: 3rem;
    max-width: 900px;
    margin: 0 auto;
  }
  
  .booking-widget .booking-grid {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 580px;
    margin: 0 auto;
    gap: 2rem;
  }
    
    .booking-form {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
      
      .form-group {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        
        label {
          font-size: 0.8rem;
          text-transform: uppercase;
          letter-spacing: 0.1em;
          color: var(--text-secondary);
        }
        
        input, select, textarea {
          padding: 0.85rem 1rem;
          background: var(--bg-surface-elevated);
          border: 1px solid var(--border-subtle);
          border-radius: var(--radius-sm);
          color: var(--color-white);
          font-size: 0.95rem;
          width: 100%;
          transition: all 0.3s ease;
          
          &:focus {
            border-color: var(--accent);
            outline: none;
          }
        }
      }
      
      .zone-selector {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
        margin-bottom: 0.5rem;
        
        .zone-option {
          border: 1px solid var(--border-subtle);
          border-radius: var(--radius-sm);
          padding: 1rem;
          text-align: center;
          cursor: pointer;
          transition: all 0.3s ease;
          
          h4 {
            font-family: var(--font-body);
            font-size: 0.9rem;
            margin-bottom: 0.25rem;
          }
          p {
            font-size: 0.75rem;
            color: var(--text-muted);
          }
          
          &:hover, &.active {
            border-color: var(--accent);
            background: rgba(207, 168, 107, 0.05);
            h4 { color: var(--accent); }
          }
        }
      }
    }
    
    .booking-visual {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      border-left: 1px solid var(--border-subtle);
      padding-left: 3rem;
      
      @media (max-width: 768px) {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid var(--border-subtle);
        padding-top: 2rem;
      }
      
      h4 {
        margin-bottom: 1rem;
        font-family: var(--font-body);
        font-size: 1rem;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: var(--accent);
      }
      
      .map-legend {
        display: flex;
        gap: 1.5rem;
        margin-bottom: 1.5rem;
        font-size: 0.8rem;
        
        .legend-item {
          display: flex;
          align-items: center;
          gap: 0.5rem;
          
          span {
            width: 12px;
            height: 12px;
            border-radius: 2px;
            display: inline-block;
          }
          &.available span { background: #3b82f6; }
          &.selected span { background: var(--accent); }
          &.reserved span { background: #374151; }
        }
      }
      
      .table-picker-svg {
        width: 100%;
        max-width: 320px;
        height: auto;
        
        .floor-outline {
          fill: none;
          stroke: var(--border-glass);
          stroke-width: 2;
        }
        
        .dine-table {
          cursor: pointer;
          transition: all 0.3s ease;
          
          rect, circle {
            fill: #1e293b;
            stroke: #3b82f6;
            stroke-width: 1.5;
            transition: all 0.3s ease;
          }
          
          text {
            fill: var(--color-white);
            font-size: 10px;
            font-weight: bold;
            text-anchor: middle;
            dominant-baseline: middle;
            pointer-events: none;
          }
          
          &:hover rect, &:hover circle {
            fill: rgba(59, 130, 246, 0.3);
          }
          
          &.selected rect, &.selected circle {
            fill: rgba(207, 168, 107, 0.4);
            stroke: var(--accent);
            filter: drop-shadow(0 0 4px var(--accent));
          }
          
          &.reserved {
            cursor: not-allowed;
            rect, circle {
              fill: #0f172a;
              stroke: #374151;
            }
            text {
              fill: #475569;
            }
            &:hover rect, &:hover circle {
              fill: #0f172a;
            }
          }
        }
      }
    }

  /* Booking Success Toast */
  .toast {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--bg-surface-elevated);
    border: 1px solid var(--accent);
    color: var(--color-white);
    padding: 1rem 2rem;
    border-radius: var(--radius-sm);
    z-index: 200;
    box-shadow: var(--shadow-glow);
    font-size: 0.9rem;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
    opacity: 0;
    pointer-events: none;
    
    &.show {
      transform: translateX(-50%) translateY(0);
      opacity: 1;
    }
  }

  /* Feature Grid Layout */
  .feature-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: center;
    margin-bottom: 0;
    
    @media (max-width: 768px) {
      grid-template-columns: 1fr;
      gap: 3rem;
    }
    
    &.reverse {
      grid-template-columns: 1.2fr 1fr;
      @media (max-width: 768px) {
        grid-template-columns: 1fr;
      }
    }
    
    .feature-img-container {
      position: relative;
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-soft);
      border: 1px solid var(--border-subtle);
      aspect-ratio: 4 / 3;
      
      img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s ease;
      }
      
      &:hover img {
        transform: scale(1.05);
      }
    }
    
    .feature-text {
      h3 {
        font-size: 2.25rem;
        line-height: 1.3;
        margin-bottom: 1.5rem;
      }
      p {
        color: var(--text-secondary);
        font-size: 1rem;
        margin-bottom: 2rem;
      }
    }
  }

  /* Footer Layout */
  .footer {
    background: var(--color-slate-950);
    border-top: 1px solid var(--border-subtle);
    padding: 5rem 2rem 2rem;
    
    .footer-grid {
      max-width: 1200px;
      margin: 0 auto 4rem;
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1fr;
      gap: 4rem;
      
      @media (max-width: 992px) {
        grid-template-columns: 1.5fr 1fr;
      }
      @media (max-width: 576px) {
        grid-template-columns: 1fr;
        gap: 3rem;
      }
    }
    
    .footer-brand {
      h3 {
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 1rem;
      }
      p {
        color: var(--text-muted);
        font-size: 0.9rem;
        max-width: 280px;
        margin-bottom: 1.5rem;
      }
    }
    
    .footer-links {
      h4 {
        font-family: var(--font-body);
        font-size: 0.95rem;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        margin-bottom: 1.5rem;
        color: var(--accent);
      }
      
      ul {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        
        a {
          font-size: 0.9rem;
          color: var(--text-secondary);
          transition: color 0.3s ease;
          
          &:hover {
            color: var(--accent);
          }
        }
      }
    }
    
    .footer-bottom {
      max-width: 1200px;
      margin: 0 auto;
      border-top: 1px solid var(--border-subtle);
      padding-top: 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 0.8rem;
      color: var(--text-muted);
      
      @media (max-width: 576px) {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
      }
    }
  }
}

@layer utilities {
  .text-gradient {
    background: linear-gradient(135deg var(--in-oklab), var(--accent) 0%, var(--color-gold-300) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  .hide {
    display: none !important;
  }
}

/* Animations */
@keyframes slowZoom {
  0% { transform: scale(1.02) translate(0px, 0px); }
  100% { transform: scale(1.1) translate(-5px, -5px); }
}

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

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

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .hero-bg-wrapper img {
    animation: none !important;
  }
}

/* Mobile Nav Drawer overlay */
@media (max-width: 768px) {
  .navbar {
    .nav-links {
      position: fixed;
      top: 0;
      right: -100%;
      width: 80%;
      max-width: 320px;
      height: 100vh;
      background: var(--bg-surface-elevated);
      flex-direction: column;
      justify-content: center;
      gap: 2.5rem;
      z-index: 99;
      transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      box-shadow: var(--shadow-glass);
      border-left: 1px solid var(--border-glass);
      
      &.open {
        right: 0;
      }
    }
    
    .menu-toggle {
      display: flex;
    }
  }
  
  .timeline-container {
    &::before {
      left: 2rem;
    }
    
    .timeline-item {
      justify-content: flex-start;
      margin-bottom: 4rem;
      
      .timeline-dot {
        left: 2rem;
      }
      
      .timeline-content {
        width: calc(100% - 4rem);
        margin-left: 4rem;
      }
      
      &:nth-child(even) {
        flex-direction: row;
        .timeline-content {
          margin-left: 4rem;
        }
      }
    }
  }
}

/* Auto-Scrolling Card Showcase */
.auto-scroll-container {
  overflow: hidden;
  width: 100%;
  padding: 1.5rem 0;
  position: relative;
  mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
}

.auto-scroll-track {
  display: flex;
  gap: 2rem;
  width: max-content;
  animation: scrollTrack 35s linear infinite;
  perspective: 1000px;
  
  &:hover {
    animation-play-state: paused;
  }
}

@keyframes scrollTrack {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50% - 1rem));
  }
}

.auto-scroll-track .showcase-card {
  width: 320px;
  flex-shrink: 0;
}

.showcase-card {
  background: linear-gradient(135deg, rgba(25, 30, 40, 0.8) 0%, rgba(15, 18, 24, 0.95) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transform-style: preserve-3d;
  transform: translateZ(0);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.5s ease, box-shadow 0.5s ease;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  
  &:hover {
    transform: translateY(-12px) rotateX(6deg) rotateY(-4deg) translateZ(10px) scale(1.02);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 
      -10px 20px 40px rgba(0, 0, 0, 0.8), 
      0 5px 15px rgba(212, 175, 55, 0.2);
    
    .card-img-container img {
      transform: scale(1.1);
    }
  }
  
  .card-img-container {
    width: 100%;
    height: 180px;
    overflow: hidden;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transform: translateZ(15px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    
    img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    }
  }
  
  .card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    
    .diet-badge {
      font-size: 0.7rem;
      padding: 0.2rem 0.6rem;
      border-radius: var(--radius-sm);
      text-transform: uppercase;
      font-weight: 600;
      letter-spacing: 0.05em;
      
      &.veg {
        background: rgba(81, 194, 147, 0.12);
        color: #51c293;
        border: 1px solid rgba(81, 194, 147, 0.25);
      }
      &.nonveg {
        background: rgba(242, 107, 107, 0.12);
        color: #f26b6b;
        border: 1px solid rgba(242, 107, 107, 0.25);
      }
    }
    
    .price {
      color: var(--accent);
      font-weight: 600;
      font-size: 1.1rem;
    }
  }
  
  .title {
    font-size: 1.2rem;
    font-weight: 500;
    color: #ffffff;
    margin: 0;
  }
  
  .desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
  }
}

/* Creative Contact Page Redesign */
.contact-page-wrapper {
  background: radial-gradient(circle at 10% 20%, rgba(20, 24, 33, 0.95) 0%, rgba(7, 9, 12, 1) 90%);
  color: var(--color-white);
  padding: 8rem 2rem 4rem;
  min-height: 100vh;
}

.contact-header-centered {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 5rem;
  position: relative;
  
  .contact-subtitle {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5em;
    color: var(--accent);
    margin-bottom: 1.5rem;
    display: inline-block;
    position: relative;
  }
  
  .contact-title {
    font-size: clamp(2.5rem, 3rem + 2vw, 5rem);
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 30%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  .contact-desc {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
  }
}

.contact-layout-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 5rem;
  max-width: 1200px;
  margin: 0 auto 6rem;
  align-items: start;
  
  @media (max-width: 992px) {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}

/* Left side creative cards */
.contact-info-hub {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.creative-info-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  
  &::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 100% 0%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
  }
  
  &:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    
    &::before {
      opacity: 1;
    }
    
    .card-icon-wrapper {
      background: rgba(212, 175, 55, 0.15);
      color: var(--accent);
      transform: scale(1.05) rotate(5deg);
    }
  }
  
  .card-top {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
  }
  
  .card-icon-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--color-white);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }
  
  .card-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent);
    display: block;
    margin-bottom: 0.25rem;
  }
  
  .card-heading {
    font-size: 1.4rem;
    font-family: var(--font-display);
    font-weight: 500;
    color: var(--color-white);
    margin: 0;
  }
  
  .card-details {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
    
    a {
      color: var(--text-secondary);
      text-decoration: none;
      transition: color 0.3s ease;
      
      &:hover {
        color: var(--accent);
      }
    }
  }
}

/* Right side creative form */
.creative-form-console {
  background: rgba(18, 22, 28, 0.7);
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: var(--radius-lg);
  padding: 3.5rem 3rem;
  position: relative;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  
  &::after {
    content: '';
    position: absolute;
    top: -1px;
    left: 20%;
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
  }
  
  .console-header {
    margin-bottom: 2.5rem;
    
    .console-title {
      font-size: 1.8rem;
      font-family: var(--font-display);
      color: var(--color-white);
      margin: 0 0 0.5rem;
    }
    
    .console-desc {
      color: var(--text-secondary);
      font-size: 0.9rem;
      margin: 0;
    }
  }
}

/* Luxury minimal inputs */
.luxury-input-group {
  position: relative;
  margin-bottom: 2.25rem;
  display: flex;
  flex-direction: column;
  
  input, select, textarea {
    width: 100%;
    padding: 0.9rem 0;
    background: transparent !important;
    border: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 0 !important;
    color: var(--color-white) !important;
    font-size: 0.95rem !important;
    font-family: inherit !important;
    transition: all 0.3s ease !important;
    outline: none !important;
    box-shadow: none !important;
    
    &:focus {
      border-bottom-color: var(--accent) !important;
    }
    
    /* Autofill fix */
    &:-webkit-autofill {
      -webkit-text-fill-color: var(--color-white) !important;
      transition: background-color 5000s ease-in-out 0s !important;
    }
  }
  
  textarea {
    resize: none;
    min-height: 80px;
  }
  
  label {
    position: absolute;
    top: 0.9rem;
    left: 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    text-transform: none;
    letter-spacing: normal;
  }
  
  /* Floating label logic */
  input:focus ~ label,
  input:not(:placeholder-shown) ~ label,
  select:focus ~ label,
  select:valid ~ label,
  textarea:focus ~ label,
  textarea:not(:placeholder-shown) ~ label {
    top: -1rem;
    font-size: 0.75rem;
    color: var(--accent);
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }
}

.luxury-submit-btn {
  background: linear-gradient(135deg, var(--accent) 0%, #b89047 100%);
  color: var(--color-slate-950);
  border: none;
  border-radius: var(--radius-sm);
  padding: 1.1rem 2rem;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  cursor: pointer;
  width: 100%;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
  
  &:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, #e5c158 0%, var(--accent) 100%);
  }
  
  &:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
  }
}

/* Dark themed Map section */
.creative-map-section {
  max-width: 1200px;
  margin: 0 auto 4rem;
  padding: 0 2rem;
  
  .map-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 480px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
    
    iframe {
      width: 100%;
      height: 100%;
      border: 0;
      filter: invert(90%) hue-rotate(180deg) grayscale(40%) contrast(110%);
    }
  }
}
