/* ==========================================================================
   FAST FOOD CART - AESTHETIC LIGHT THEME (#BFA28C) - NO BLUE
   ========================================================================== */

   @import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Quicksand:wght@500;600;700&display=swap');

   /* --- 1. CSS VARIABLES & RESET --- */
   * {
       margin: 0;
       padding: 0;
       box-sizing: border-box;
   }
   
   :root {
       /* Simple Light Palette */
       --bg-white: #ffffff;
       --bg-light-gray: #FCFAF8;    /* Very soft warm off-white for backgrounds */
       --bg-card: #ffffff;
       
       /* Custom Gradient & Accents */
       --accent-base: #BFA28C;      /* Warm Sand - Core Brand Color */
       --accent-dark: #8C6239;      /* Rich Mocha for contrast */
       --accent-light: #EBE2D9;     /* Very soft sand for subtle highlights */
       
       --gradient-primary: linear-gradient(135deg, #BFA28C 0%, #8C6239 100%);
       --gradient-hover: linear-gradient(135deg, #A88D79 0%, #75512E 100%);
       --gradient-subtle: linear-gradient(135deg, #FCFAF8 0%, #F7F3F0 100%);
       
       /* Text Colors for Light Theme */
       --text-dark: #2A2421;        /* Deep Espresso */
       --text-body: #5C554D;        /* Warm Stone Gray */
       --text-muted: #9E948A;       
       --text-white: #ffffff;
       
       /* UI Structure & Shadows (Modern & Soft) */
       --border-color: #EBE2D9;
       --shadow-sm: 0 4px 6px -1px rgba(140, 98, 57, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
       --shadow-md: 0 10px 15px -3px rgba(140, 98, 57, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
       --shadow-lg: 0 20px 25px -5px rgba(140, 98, 57, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
       --shadow-hover: 0 25px 30px -5px rgba(191, 162, 140, 0.25); 
       
       /* Dimensions & Transitions */
       --transition-fast: 0.2s ease;
       --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
       --header-height: 85px;
       --border-radius-sm: 12px;
       --border-radius-md: 20px;
       --border-radius-lg: 32px;
   }
   
   html, body {
       font-family: 'Outfit', sans-serif;
       background-color: var(--bg-white);
       color: var(--text-body);
       line-height: 1.6;
       overflow-x: hidden;
       -webkit-font-smoothing: antialiased;
   }
   
   /* --- 2. TYPOGRAPHY --- */
   h1, h2, h3, h4, h5 {
       font-family: 'Quicksand', sans-serif; /* Clean, friendly, aesthetic heading font */
       color: var(--text-dark);
       font-weight: 700;
       line-height: 1.2;
       letter-spacing: -0.5px;
   }
   
   p { margin-bottom: 1rem; }
   
   .text-gradient {
       background-image: var(--gradient-primary);
       -webkit-background-clip: text;
       -webkit-text-fill-color: transparent;
       display: inline-block;
   }
   
   a {
       text-decoration: none;
       color: inherit;
       transition: var(--transition-fast);
   }
   
   img {
       max-width: 100%;
       height: auto;
       display: block;
       object-fit: cover;
   }
   
   /* --- 3. LAYOUT UTILITIES --- */
   .container {
       width: 100%;
       max-width: 1280px;
       margin: 0 auto;
       padding: 0 24px;
   }
   
   .py-mega { padding: 120px 0; }
   .py-large { padding: 80px 0; }
   .text-center { text-align: center; }
   
   /* Backgrounds */
   .bg-gray { background-color: var(--bg-light-gray); }
   
   /* Grid Systems */
   .grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 60px; align-items: center; }
   .grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; align-items: stretch; }
   .grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; align-items: stretch; }
   
   /* Standard Section Headers */
   .section-header { margin-bottom: 60px; max-width: 700px; }
   .section-header.text-center { margin-left: auto; margin-right: auto; }
   .section-header h2 { font-size: 3rem; margin-bottom: 15px; }
   .section-header p { font-size: 1.15rem; color: var(--text-body); }
   
   /* Small decorative badge */
   .badge {
       display: inline-block;
       background: var(--bg-light-gray);
       color: var(--accent-dark);
       padding: 8px 24px;
       border-radius: 50px;
       font-weight: 700;
       font-size: 0.85rem;
       text-transform: uppercase;
       letter-spacing: 1.5px;
       margin-bottom: 20px;
       border: 1px solid var(--border-color);
   }
   
   /* --- 4. BUTTONS --- */
   .btn {
       display: inline-flex;
       align-items: center;
       justify-content: center;
       gap: 8px;
       padding: 16px 36px;
       border-radius: 50px;
       font-weight: 700;
       font-size: 1rem;
       font-family: 'Quicksand', sans-serif;
       transition: var(--transition-smooth);
       cursor: pointer;
       border: none;
       text-align: center;
       text-transform: uppercase;
       letter-spacing: 1px;
   }
   
   .btn-primary {
       background-image: var(--gradient-primary);
       color: var(--text-white) !important;
       box-shadow: 0 10px 20px -5px rgba(140, 98, 57, 0.4);
   }
   
   .btn-primary:hover {
       background-image: var(--gradient-hover);
       transform: translateY(-3px);
       box-shadow: 0 15px 25px -5px rgba(140, 98, 57, 0.5);
   }
   
   .btn-outline {
       background-color: var(--bg-white);
       color: var(--text-dark) !important;
       border: 2px solid var(--border-color);
       box-shadow: var(--shadow-sm);
   }
   
   .btn-outline:hover {
       border-color: var(--accent-base);
       color: var(--accent-dark) !important;
       transform: translateY(-3px);
       box-shadow: var(--shadow-md);
   }
   
   /* --- 5. HEADER & NAVIGATION --- */
   .top-bar {
       background-color: var(--bg-light-gray);
       border-bottom: 1px solid var(--border-color);
       padding: 10px 0;
       font-size: 0.85rem;
       font-weight: 600;
       color: var(--text-body);
   }
   
   .top-bar .container {
       display: flex;
       justify-content: space-between;
       align-items: center;
   }
   
   .top-bar a { transition: color 0.2s; }
   .top-bar a:hover { color: var(--accent-dark); }
   
   header {
       position: sticky;
       top: 0;
       width: 100%;
       height: var(--header-height);
       background: rgba(255, 255, 255, 0.95);
       backdrop-filter: blur(10px);
       border-bottom: 1px solid var(--border-color);
       z-index: 1000;
       display: flex;
       align-items: center;
       transition: var(--transition-smooth);
   }
   
   header.scrolled {
       height: 75px;
       box-shadow: var(--shadow-sm);
   }
   
   .nav-container {
       display: flex;
       justify-content: space-between;
       align-items: center;
       height: 100%;
       width: 100%;
   }
   
   .logo h1 {
       font-size: 1.8rem;
       font-weight: 800;
       margin: 0;
       display: flex;
       align-items: center;
       gap: 8px;
       color: var(--text-dark);
   }
   
   /* Simple gradient dot for logo */
   .logo-icon {
       width: 32px;
       height: 32px;
       border-radius: 8px;
       background-image: var(--gradient-primary);
       display: inline-flex;
       align-items: center;
       justify-content: center;
       color: var(--bg-white);
       font-size: 1.1rem;
   }
   
   .nav-links {
       display: flex;
       gap: 40px;
       list-style: none;
       margin: 0;
       padding: 0;
   }
   
   .nav-links a {
       font-weight: 600;
       font-size: 0.95rem;
       color: var(--text-body);
       transition: var(--transition-fast);
       text-transform: uppercase;
       letter-spacing: 0.5px;
   }
   
   .nav-links a:hover, .nav-links a.active {
       color: var(--accent-dark);
   }
   
   /* Hamburger Menu (Mobile) */
   .hamburger {
       display: none;
       flex-direction: column;
       gap: 5px;
       cursor: pointer;
       border: none;
       background: none;
       padding: 5px;
   }
   
   .hamburger span {
       width: 25px;
       height: 3px;
       background: var(--text-dark);
       border-radius: 5px;
       transition: var(--transition-smooth);
   }
   
   .hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); background: var(--accent-base); }
   .hamburger.active span:nth-child(2) { opacity: 0; }
   .hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); background: var(--accent-base); }
   
   /* --- 6. HERO SECTION --- */
   .hero {
       padding: 60px 0 100px;
       background-color: var(--bg-white);
       overflow: hidden;
   }
   
   .hero-grid {
       display: grid;
       grid-template-columns: 1fr 1fr;
       gap: 40px;
       align-items: center;
   }
   
   .hero-content h1 {
       font-size: 4rem;
       line-height: 1.1;
       margin-bottom: 25px;
   }
   
   .hero-content p {
       font-size: 1.2rem;
       color: var(--text-body);
       margin-bottom: 40px;
       max-width: 500px;
   }
   
   .hero-btn-group {
       display: flex;
       gap: 15px;
       flex-wrap: wrap;
   }
   
   .hero-image {
       position: relative;
       border-radius: var(--border-radius-lg);
       height: 600px;
       overflow: hidden;
       box-shadow: var(--shadow-lg);
   }
   
   .hero-image img {
       width: 100%;
       height: 100%;
       object-fit: cover;
   }
   
   /* Floating aesthetic element on hero image */
   .hero-floating-card {
       position: absolute;
       bottom: -30px;
       left: -30px;
       background: var(--bg-white);
       padding: 20px 30px;
       border-radius: var(--border-radius-md);
       box-shadow: var(--shadow-lg);
       display: flex;
       align-items: center;
       gap: 15px;
       border: 1px solid var(--border-color);
       z-index: 2;
   }
   
   /* --- 7. CARDS (SERVICES/FEATURES) --- */
   .modern-card {
       background: var(--bg-white);
       padding: 40px;
       border-radius: var(--border-radius-md);
       border: 1px solid var(--border-color);
       transition: var(--transition-smooth);
       box-shadow: var(--shadow-sm);
       display: flex;
       flex-direction: column;
       height: 100%;
   }
   
   .modern-card:hover {
       transform: translateY(-8px);
       box-shadow: var(--shadow-hover);
       border-color: transparent;
   }
   
   .card-icon {
       width: 60px;
       height: 60px;
       border-radius: 16px;
       background-image: var(--gradient-primary);
       display: flex;
       align-items: center;
       justify-content: center;
       margin-bottom: 25px;
       font-size: 1.8rem;
       color: var(--text-white);
   }
   
   .modern-card h3 {
       font-size: 1.5rem;
       margin-bottom: 15px;
   }
   
   .modern-card p {
       color: var(--text-body);
       margin-bottom: 25px;
       flex-grow: 1;
   }
   
   .card-link {
       font-weight: 700;
       color: var(--accent-dark);
       display: inline-flex;
       align-items: center;
       gap: 5px;
       text-transform: uppercase;
       font-size: 0.85rem;
       letter-spacing: 1px;
   }
   
   .card-link:hover { gap: 10px; color: var(--accent-base); }
   
   /* --- 8. STATS COUNTER --- */
   .stats-section {
       background-image: var(--gradient-primary);
       border-radius: var(--border-radius-lg);
       padding: 60px 40px;
       color: var(--text-white);
       box-shadow: var(--shadow-lg);
       position: relative;
       overflow: hidden;
   }
   
   .stats-section::before {
       content: '';
       position: absolute;
       top: 0; right: 0; bottom: 0; left: 0;
       background-image: radial-gradient(circle at 80% 150%, rgba(255,255,255,0.15) 10%, transparent 60%);
       pointer-events: none;
   }
   
   .stats-grid {
       display: flex;
       justify-content: space-around;
       flex-wrap: wrap;
       gap: 40px;
       position: relative;
       z-index: 1;
   }
   
   .stat-box { text-align: center; }
   .stat-box h3 { font-size: 3.5rem; color: var(--text-white); margin-bottom: 5px; line-height: 1; }
   .stat-box p { font-size: 1rem; font-weight: 700; opacity: 0.9; text-transform: uppercase; letter-spacing: 1.5px; }
   
   /* --- 9. TESTIMONIAL SLIDER --- */
   .slider-container {
       position: relative;
       overflow: hidden;
       padding-bottom: 40px;
       max-width: 900px;
       margin: 0 auto;
   }
   
   .slider-wrapper {
       display: flex;
       transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
   }
   
   .slide {
       min-width: 100%;
       padding: 50px;
       background: var(--bg-white);
       border-radius: var(--border-radius-md);
       border: 1px solid var(--border-color);
       box-shadow: var(--shadow-sm);
       text-align: center;
   }
   
   .quote-mark {
       font-size: 4rem;
       line-height: 0;
       color: var(--accent-base);
       opacity: 0.4;
       font-family: Georgia, serif;
       margin-bottom: 20px;
       display: block;
   }
   
   .slide p {
       font-size: 1.3rem;
       color: var(--text-dark);
       font-style: italic;
       margin-bottom: 30px;
   }
   
   .slide h4 { font-size: 1.2rem; margin-bottom: 5px; }
   .slide span { color: var(--accent-dark); font-size: 0.9rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;}
   
   .slider-dots {
       display: flex;
       justify-content: center;
       gap: 10px;
       margin-top: 30px;
   }
   
   .dot {
       width: 12px;
       height: 12px;
       border-radius: 50%;
       background: var(--border-color);
       cursor: pointer;
       transition: var(--transition-fast);
   }
   
   .dot.active {
       background: var(--accent-dark);
       transform: scale(1.3);
   }
   
   /* --- 10. CTA BANNER --- */
   .cta-banner {
       background-color: var(--bg-light-gray);
       border-radius: var(--border-radius-lg);
       padding: 80px 5%;
       text-align: center;
       border: 1px solid var(--border-color);
       box-shadow: var(--shadow-sm);
   }
   
   .cta-banner h2 { font-size: 3rem; margin-bottom: 20px; }
   .cta-banner p { font-size: 1.15rem; color: var(--text-body); margin-bottom: 40px; max-width: 600px; margin-left: auto; margin-right: auto; }
   
   /* --- 11. SLIM FOOTER --- */
   footer {
       background-color: var(--bg-white);
       padding: 60px 0 20px;
       border-top: 1px solid var(--border-color);
   }
   
   .footer-grid {
       display: grid;
       grid-template-columns: 2fr 1fr 1.5fr;
       gap: 50px;
       margin-bottom: 40px;
   }
   
   .footer-brand h2 { font-size: 1.5rem; margin-bottom: 15px; display: flex; align-items: center; gap: 8px;}
   .footer-brand p { color: var(--text-body); font-size: 0.95rem; max-width: 350px; }
   
   .footer-links { display: flex; flex-direction: column; gap: 12px; }
   .footer-links h4 { font-size: 1.1rem; margin-bottom: 10px; }
   .footer-links a { color: var(--text-body); font-weight: 600; font-size: 0.95rem; }
   .footer-links a:hover { color: var(--accent-dark); padding-left: 5px; }
   
   .footer-contact { display: flex; flex-direction: column; gap: 15px; }
   .footer-contact h4 { font-size: 1.1rem; margin-bottom: 5px; }
   .contact-item { display: flex; align-items: flex-start; gap: 12px; font-size: 0.95rem; color: var(--text-body); }
   .contact-item span { font-size: 1.2rem; color: var(--accent-dark); line-height: 1;}
   .contact-item a { color: var(--text-dark); font-weight: 600; }
   .contact-item a:hover { color: var(--accent-dark); }
   
   .footer-bottom {
       text-align: center;
       padding-top: 25px;
       border-top: 1px solid var(--border-color);
       font-size: 0.85rem;
       color: var(--text-muted);
   }
   
   /* --- 12. ANIMATIONS (SCROLL REVEAL) --- */
   .reveal {
       opacity: 0;
       visibility: hidden;
       transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.8s;
   }
   
   .reveal.active { opacity: 1; visibility: visible; }
   
   .slide-up:not(.active) { transform: translateY(40px); }
   .slide-left:not(.active) { transform: translateX(-40px); }
   .slide-right:not(.active) { transform: translateX(40px); }
   .zoom-in:not(.active) { transform: scale(0.95); }
   
   /* Animation Delays */
   .delay-1 { transition-delay: 0.1s; }
   .delay-2 { transition-delay: 0.2s; }
   .delay-3 { transition-delay: 0.3s; }
   
   /* --- 13. RESPONSIVE MEDIA QUERIES --- */
   @media (max-width: 1024px) {
       .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
       .hero-content h1 { font-size: 3.5rem; }
       .footer-grid { grid-template-columns: 1fr 1fr; }
   }
   
   @media (max-width: 768px) {
       .top-bar { display: none; } /* Hide top bar on mobile for cleanliness */
       .nav-links { display: none; }
       .hamburger { display: flex; }
       
       /* Mobile Menu Overlay */
       .nav-container.menu-open .nav-links {
           display: flex;
           flex-direction: column;
           position: absolute;
           top: var(--header-height);
           left: 0;
           width: 100%;
           background: var(--bg-white);
           padding: 20px 24px;
           border-top: 1px solid var(--border-color);
           box-shadow: var(--shadow-md);
           z-index: 1000;
           gap: 0;
       }
       
       .nav-container.menu-open .nav-links a {
           padding: 15px 0;
           width: 100%;
           border-bottom: 1px solid var(--border-color);
           font-size: 1.1rem;
       }
       
       .nav-container.menu-open .nav-links a:last-child { border-bottom: none; }
       
       /* Grid Resets for Mobile */
       .hero-grid, .grid-2, .grid-3, .grid-4, .footer-grid { grid-template-columns: 1fr; }
       
       .hero { padding-top: 40px; text-align: center; }
       .hero-content p { margin: 0 auto 30px; }
       .hero-btn-group { justify-content: center; }
       .hero-image { height: 400px; margin-top: 30px; }
       .hero-floating-card { display: none; } /* Hide floating element on mobile */
       
       .section-header h2 { font-size: 2.5rem; }
       .stats-grid { flex-direction: column; gap: 40px; }
   }