		:root {
            /* Core Colors */
            --charcoal: #3a3a3a;
            --brown: #735240;
            --tan: #b8a48C;
            --primary-red: #E00614;
            --accent-red: #ff3131;
            
            /* Extended Palette */
            --light-red: #FF6B6B;
            --pale-red: #FFE5E5;
            --blush: #FFF0F0;
            --forest-green: #2E7D32;
            --fresh-green: #4CAF50;
            --light-green: #81C784;
            --pale-green: #E8F5E9;
            --mint: #A5D6A7;
            
            /* Neutrals */
            --cream: #FAF7F2;
            --warm-white: #FFFDF9;
            --light-tan: #E8E0D5;
            --dark: #2a2a2a;
            --gray: #6B6B6B;
            --light-gray: #f5f5f5;
            --white: #ffffff;
            
            /* Transitions */
            --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            --transition-fast: all 0.2s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Poppins', sans-serif;;
            font-weight: 300;
            color: var(--charcoal);
            overflow-x: hidden;
            background: var(--warm-white);
            letter-spacing: 0.3px;
            line-height: 1.7;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Playfair Display', serif;
            font-weight: 300;
            letter-spacing: 1px;
        }

        /* Preloader */
        .preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--charcoal) 0%, var(--brown) 100%);
            z-index: 10000;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: opacity 0.6s ease, visibility 0.6s ease;
        }

        .preloader.hidden {
            opacity: 0;
            visibility: hidden;
        }

        .preloader-content {
            text-align: center;
        }

        .preloader-soup {
            width: 80px;
            height: 80px;
            position: relative;
        }

        .preloader-bowl {
            width: 80px;
            height: 40px;
            background: var(--tan);
            border-radius: 0 0 40px 40px;
            position: absolute;
            bottom: 0;
            overflow: hidden;
        }

        .preloader-steam {
            position: absolute;
            top: -20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 8px;
        }

        .preloader-steam span {
            width: 4px;
            height: 20px;
            background: var(--light-green);
            border-radius: 2px;
            animation: steam 1.5s infinite ease-in-out;
        }

        .preloader-steam span:nth-child(2) {
            animation-delay: 0.2s;
            height: 25px;
        }

        .preloader-steam span:nth-child(3) {
            animation-delay: 0.4s;
        }

        @keyframes steam {
            0%, 100% { 
                opacity: 0.3; 
                transform: translateY(0) scaleY(1);
            }
            50% { 
                opacity: 1; 
                transform: translateY(-10px) scaleY(1.2);
            }
        }

        .preloader-text {
            color: var(--cream);
            font-family: 'Poppins', sans-serif;
            font-size: 1.2rem;
            font-weight: 300;
            margin-top: 30px;
            letter-spacing: 4px;
            text-transform: uppercase;
        }

        /* Custom Cursor */
        .cursor {
            width: 24px;
            height: 24px;
            border: 1.5px solid var(--primary-red);
            border-radius: 50%;
            position: fixed;
            pointer-events: none;
            z-index: 9999;
            transition: transform 0.15s ease, opacity 0.15s ease, border-color 0.3s ease;
            display: none;
        }

        .cursor-follower {
            width: 6px;
            height: 6px;
            background: var(--accent-red);
            border-radius: 50%;
            position: fixed;
            pointer-events: none;
            z-index: 9998;
            transition: transform 0.25s ease;
            display: none;
        }

        @media (min-width: 1024px) {
            .cursor, .cursor-follower {
                display: block;
            }
        }

        /* Selection */
        ::selection {
            background: var(--pale-red);
            color: var(--charcoal);
        }

        /* Header */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            padding: 25px 5%;
            transition: var(--transition);
        }

        header.scrolled {
            background: rgba(255, 253, 249, 0.97);
            backdrop-filter: blur(20px);
            box-shadow: 0 2px 40px rgba(58, 58, 58, 0.08);
            padding: 18px 5%;
        }

        .header-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 14px;
            text-decoration: none;
            z-index: 1001;
        }

        .logo-icon {
            width: 68px;
            height: 48px;
            background: linear-gradient(135deg, var(--primary-red) 0%, var(--accent-red) 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .logo-icon::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: 0.5s;
        }

        .logo:hover .logo-icon::before {
            left: 100%;
        }

        .logo-icon i {
            color: var(--white);
            font-size: 22px;
        }

        .logo-text {
            font-family: 'Poppins', sans-serif;
            font-size: 1.4rem;
            font-weight: 400;
            color: var(--charcoal);
            line-height: 1.2;
            letter-spacing: 1px;
        }

        .logo-text span {
            display: block;
            font-size: 0.65rem;
            font-family: 'Raleway', sans-serif;
            font-weight: 400;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--brown);
            margin-top: 2px;
        }

        header:not(.scrolled) .logo-text {
            color: var(--white);
        }

        header:not(.scrolled) .logo-text span {
            color: #ffffff;
        }

        header:not(.scrolled) .logo-icon {
            background: var(--white);
        }

        header:not(.scrolled) .logo-icon i {
            color: var(--primary-red);
        }

        /* Navigation */
        nav {
            display: flex;
            align-items: center;
            gap: 50px;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 40px;
        }

        .nav-links > li {
            position: relative;
        }

        .nav-links > li > a {
            text-decoration: none;
            font-weight: 400;
            font-size: 0.85rem;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            transition: var(--transition);
            padding: 10px 0;
            display: flex;
            align-items: center;
            gap: 6px;
            position: relative;
        }

        .nav-links > li > a::after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--primary-red);
            transition: var(--transition);
        }

        .nav-links > li:hover > a::after {
            width: 100%;
        }

        header:not(.scrolled) .nav-links > li > a {
            color: var(--white);
        }

        header:not(.scrolled) .nav-links > li > a::after {
            background: var(--white);
        }

        header.scrolled .nav-links > li > a {
            color: var(--charcoal);
        }

        .nav-links > li > a:hover {
            color: var(--primary-red);
        }

        .nav-links > li > a i {
            font-size: 0.6rem;
            transition: var(--transition);
            opacity: 0.7;
        }

        .nav-links > li:hover > a i {
            transform: rotate(180deg);
            opacity: 1;
        }

        /* Dropdown */
        .dropdown {
            position: absolute;
            top: 100%;
            left: -25px;
            min-width: 260px;
            background: var(--white);
            border-radius: 12px;
            box-shadow: 0 25px 60px rgba(58, 58, 58, 0.12);
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
            transition: var(--transition);
            padding: 12px 0;
            z-index: 100;
            border: 1px solid var(--light-tan);
        }

        .nav-links > li:hover .dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(8px);
        }

        .dropdown li {
            list-style: none;
        }

        .dropdown a {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 14px 25px;
            color: var(--charcoal);
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 300;
            transition: var(--transition);
            letter-spacing: 0.5px;
        }

        .dropdown a::before {
            display: none;
        }

        .dropdown a:hover {
            color: var(--primary-red);
            background: var(--pale-red);
            padding-left: 30px;
        }

        .dropdown a i {
            width: 20px;
            color: var(--brown);
            transition: var(--transition);
        }

        .dropdown a:hover i {
            color: var(--primary-red);
        }

        /* Order Button */
        .order-btn {
            background: linear-gradient(135deg, var(--primary-red) 0%, var(--accent-red) 100%);
            color: var(--white);
            padding: 14px 32px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 500;
            font-size: 0.8rem;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(224, 6, 20, 0.25);
        }

        .order-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
            transition: 0.5s;
        }

        .order-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(224, 6, 20, 0.35);
        }

        .order-btn:hover::before {
            left: 100%;
        }

        /* Hamburger Menu */
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 6px;
            cursor: pointer;
            z-index: 1001;
            padding: 10px;
        }

        .hamburger span {
            width: 28px;
            height: 2px;
            background: var(--white);
            border-radius: 2px;
            transition: var(--transition);
        }

        header.scrolled .hamburger span {
            background: var(--charcoal);
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 6px);
            background: var(--white);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
            transform: translateX(-10px);
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -7px);
            background: var(--white);
        }

        /* Mobile Menu */
        .mobile-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 100%;
            height: 100vh;
            background: linear-gradient(180deg, var(--charcoal) 0%, var(--brown) 100%);
            z-index: 999;
            transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 100px 8%;
            overflow-y: auto;
        }

        .mobile-menu.active {
            right: 0;
        }

        .mobile-nav-links {
            list-style: none;
        }

        .mobile-nav-links > li {
            margin-bottom: 8px;
            opacity: 0;
            transform: translateX(50px);
            transition: all 0.4s ease;
        }

        .mobile-menu.active .mobile-nav-links > li {
            opacity: 1;
            transform: translateX(0);
        }

        .mobile-menu.active .mobile-nav-links > li:nth-child(1) { transition-delay: 0.1s; }
        .mobile-menu.active .mobile-nav-links > li:nth-child(2) { transition-delay: 0.15s; }
        .mobile-menu.active .mobile-nav-links > li:nth-child(3) { transition-delay: 0.2s; }
        .mobile-menu.active .mobile-nav-links > li:nth-child(4) { transition-delay: 0.25s; }
        .mobile-menu.active .mobile-nav-links > li:nth-child(5) { transition-delay: 0.3s; }
        .mobile-menu.active .mobile-nav-links > li:nth-child(6) { transition-delay: 0.35s; }

        .mobile-nav-links > li > a {
            color: var(--white);
            text-decoration: none;
            font-size: 1.8rem;
            font-family: 'Poppins', sans-serif;
            font-weight: 300;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            transition: var(--transition);
            letter-spacing: 2px;
        }

        .mobile-nav-links > li > a:hover {
            padding-left: 15px;
            color: var(--light-red);
        }

        .mobile-nav-links > li > a i {
            font-size: 0.9rem;
            opacity: 0.5;
        }

        .mobile-dropdown {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
            background: rgba(0, 0, 0, 0.15);
            border-radius: 8px;
            margin-top: 8px;
        }

        .mobile-dropdown.active {
            max-height: 400px;
        }

        .mobile-dropdown a {
            display: block;
            color: var(--tan);
            text-decoration: none;
            padding: 14px 22px;
            font-size: 0.95rem;
            font-weight: 300;
            transition: var(--transition);
            letter-spacing: 0.5px;
        }

        .mobile-dropdown a:hover {
            background: rgba(255, 255, 255, 0.08);
            color: var(--white);
            padding-left: 30px;
        }

        .mobile-menu-footer {
            margin-top: 50px;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.4s ease 0.4s;
        }

        .mobile-menu.active .mobile-menu-footer {
            opacity: 1;
            transform: translateY(0);
        }

        .mobile-menu-footer .order-btn {
            background: var(--white);
            color: var(--primary-red);
            display: inline-block;
            margin-bottom: 35px;
            box-shadow: none;
        }

        .mobile-menu-footer .order-btn:hover {
            background: var(--cream);
        }

        .mobile-social {
            display: flex;
            gap: 15px;
        }

        .mobile-social a {
            width: 48px;
            height: 48px;
            border: 1px solid rgba(255, 255, 255, 0.25);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1rem;
            transition: var(--transition);
        }

        .mobile-social a:hover {
            background: var(--primary-red);
            border-color: var(--primary-red);
            transform: translateY(-3px);
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            min-height: 750px;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .hero-slider {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
        }

        .hero-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1.5s ease;
        }

        .hero-slide.active {
            opacity: 1;
        }

        .hero-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            animation: kenBurns 25s ease infinite alternate;
        }

        @keyframes kenBurns {
            0% {
                transform: scale(1) translate(0, 0);
            }
            100% {
                transform: scale(1.15) translate(-1.5%, -1.5%);
            }
        }

        .hero-slide:nth-child(2) img {
            animation: kenBurns2 25s ease infinite alternate;
        }

        @keyframes kenBurns2 {
            0% {
                transform: scale(1.08) translate(-1%, 1%);
            }
            100% {
                transform: scale(1) translate(1%, -1%);
            }
        }

        .hero-slide:nth-child(3) img {
            animation: kenBurns3 25s ease infinite alternate;
        }

        @keyframes kenBurns3 {
            0% {
                transform: scale(1.03) translate(1%, 0);
            }
            100% {
                transform: scale(1.12) translate(-1%, 1.5%);
            }
        }

        .hero-slide:nth-child(4) img {
            animation: kenBurns4 25s ease infinite alternate;
        }

        @keyframes kenBurns4 {
            0% {
                transform: scale(1.1) translate(0.5%, -0.5%);
            }
            100% {
                transform: scale(1.02) translate(-0.5%, 0.5%);
            }
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background:  rgba(0, 0, 0, 0.5);
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 950px;
            padding: 0 25px;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: rgba(255, 255, 255, 0.12);
            backdrop-filter: blur(15px);
            padding: 12px 28px;
            border-radius: 50px;
            margin-bottom: 35px;
            animation: fadeInDown 1s ease 0.3s both;
            border: 1px solid rgba(255, 255, 255, 0.15);
        }

        .hero-badge i {
            color: var(--light-green);
        }

        .hero-badge span {
            color: var(--white);
            font-size: 0.8rem;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            font-weight: 400;
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2.8rem, 6vw, 5rem);
            font-weight: 400;
            color: var(--white);
            line-height: 1;
            margin-bottom: 28px;
            animation: fadeInUp 1s ease 0.5s both;
            letter-spacing: 0;
        }

        .hero h1 span {
            color: var(--light-green);
            font-weight: 400;
			font-style: italic;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero p {
            font-size: 1.35rem;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.85);
            max-width: 720px;
            margin: 0 auto 45px;
            line-height: 1.5;
            animation: fadeInUp 1s ease 0.7s both;
            letter-spacing: 0.3px;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
            animation: fadeInUp 1s ease 0.9s both;
        }

        .hero-btn {
            padding: 18px 42px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 500;
            font-size: 0.85rem;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .hero-btn.primary {
            background: linear-gradient(135deg, var(--primary-red) 0%, var(--accent-red) 100%);
            color: var(--white);
            box-shadow: 0 8px 30px rgba(224, 6, 20, 0.3);
        }

        .hero-btn.primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 45px rgba(224, 6, 20, 0.4);
        }

        .hero-btn.secondary {
            background: transparent;
            color: var(--white);
            border: 1.5px solid rgba(255, 255, 255, 0.5);
        }

        .hero-btn.secondary:hover {
            background: var(--white);
            color: var(--charcoal);
            border-color: var(--white);
            transform: translateY(-3px);
        }

        .hero-scroll {
            position: absolute;
            bottom: 50px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 2;
            animation: bounce 2.5s infinite ease-in-out;
        }

        .hero-scroll a {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            font-size: 0.7rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            font-weight: 400;
            transition: var(--transition);
        }

        .hero-scroll a:hover {
            color: var(--white);
        }

        .hero-scroll .mouse {
            width: 24px;
            height: 38px;
            border: 1.5px solid rgba(255, 255, 255, 0.5);
            border-radius: 12px;
            position: relative;
        }

        .hero-scroll .mouse::before {
            content: '';
            position: absolute;
            top: 8px;
            left: 50%;
            transform: translateX(-50%);
            width: 3px;
            height: 8px;
            background: var(--light-green);
            border-radius: 2px;
            animation: scroll 2s infinite;
        }

        @keyframes scroll {
            0%, 100% { opacity: 1; top: 8px; }
            50% { opacity: 0.3; top: 18px; }
        }

        @keyframes bounce {
            0%, 100% { transform: translateX(-50%) translateY(0); }
            50% { transform: translateX(-50%) translateY(-12px); }
        }

        /* Slider Dots */
        .hero-dots {
            position: absolute;
            bottom: 50px;
            right: 5%;
            z-index: 2;
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .hero-dot {
            width: 10px;
            height: 10px;
            border: 1.5px solid rgba(255, 255, 255, 0.5);
            border-radius: 50%;
            cursor: pointer;
            transition: var(--transition);
            position: relative;
        }

        .hero-dot::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(0);
            width: 100%;
            height: 100%;
            background: var(--light-green);
            border-radius: 50%;
            transition: var(--transition);
        }

        .hero-dot.active {
            border-color: var(--light-green);
        }

        .hero-dot.active::before {
            transform: translate(-50%, -50%) scale(0.6);
        }

        .hero-dot:hover {
            border-color: var(--white);
        }

        /* About Section */
        .about {
            padding: 80px 5%;
            background: var(--warm-white);
            position: relative;
            overflow: hidden;
        }

        .about::before {
            content: 'FRESH';
            position: absolute;
            top: 50%;
            left: -8%;
            transform: translateY(-50%) rotate(-90deg);
            font-size: 14vw;
            font-family: 'Poppins', sans-serif;
            font-weight: 200;
            color: var(--cream);
            z-index: 0;
            pointer-events: none;
            letter-spacing: 20px;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .section-header {
            text-align: center;
            margin-bottom: 90px;
        }

        .section-tag {
            display: inline-flex;
            align-items: center;
            gap: 15px;
            color: var(--brown);
            font-size: 0.8rem;
            letter-spacing: 4px;
            text-transform: uppercase;
            margin-bottom: 22px;
            font-weight: 400;
        }

        .section-tag::before,
        .section-tag::after {
            content: '';
            width: 40px;
            height: 1px;
            background: var(--tan);
        }

        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2.5rem, 5vw, 3.8rem);
            font-weight: 300;
            color: var(--charcoal);
            line-height: 1.25;
            margin-bottom: 25px;
            letter-spacing: 2px;
        }

        .section-title span {
            color: var(--primary-red);
            font-weight: 400;
        }

        .section-subtitle {
            font-size: 1.05rem;
            color: var(--gray);
            max-width: 650px;
            margin: 0 auto;
            line-height: 1.9;
            font-weight: 300;
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 100px;
            align-items: center;
        }

        .about-images {
            position: relative;
            height: 620px;
        }

        .about-img {
            position: absolute;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 30px 70px rgba(58, 58, 58, 0.12);
            transition: var(--transition);
        }

        .about-img:hover {
            transform: scale(1.02) translateY(-5px);
            box-shadow: 0 45px 90px rgba(58, 58, 58, 0.18);
        }

        .about-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .about-img.img-1 {
            width: 58%;
            height: 360px;
            top: 0;
            left: 0;
            border: 5px solid var(--white);
        }

        .about-img.img-2 {
            width: 55%;
            height: 300px;
            bottom: 0;
            right: 0;
            border: 5px solid var(--white);
        }

        .about-img.img-3 {
            width: 35%;
            height: 200px;
            bottom: 22%;
            left: 12%;
            z-index: 2;
            border: 5px solid var(--white);
        }
.about-img.logo {
  position: absolute;
  width: 45%;
  bottom: 52%;
  left: 50% !important;
}

        .about-experience {
            position: absolute;
            background: linear-gradient(135deg, var(--forest-green) 0%, var(--fresh-green) 100%);
            color: var(--white);
            padding: 30px 35px;
            border-radius: 16px;
            text-align: center;
            bottom: 26%;
            right: 5%;
            z-index: 3;
            box-shadow: 0 20px 50px rgba(46, 125, 50, 0.3);
        }

        .about-experience .number {
            font-family: 'Poppins', sans-serif;
            font-size: 3.5rem;
            font-weight: 300;
            display: block;
            line-height: 1;
            letter-spacing: 2px;
        }

        .about-experience span {
            font-size: 0.75rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            font-weight: 400;
            opacity: 0.9;
        }

        .about-content h3 {
            font-family: 'Playfair Display', serif;
            font-size: 2.4rem;
            font-weight: 300;
            color: var(--charcoal);
            margin-bottom: 28px;
            letter-spacing: 1px;
        }

        .about-content p {
            font-size: 1rem;
            color: var(--gray);
            line-height: 2;
            margin-bottom: 28px;
            font-weight: 300;
        }

        .about-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 25px;
            margin-bottom: 45px;
        }

        .about-feature {
            display: flex;
            align-items: flex-start;
            gap: 18px;
        }

        .about-feature-icon {
            width: 52px;
            height: 52px;
            background: var(--pale-green);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: var(--transition);
        }

        .about-feature:hover .about-feature-icon {
            background: var(--fresh-green);
            transform: scale(1.05);
        }

        .about-feature-icon i {
            color: var(--forest-green);
            font-size: 1.1rem;
            transition: var(--transition);
        }

        .about-feature:hover .about-feature-icon i {
            color: var(--white);
        }

        .about-feature h4 {
            font-size: 0.95rem;
            font-weight: 500;
            color: var(--charcoal);
            margin-bottom: 5px;
            letter-spacing: 0.5px;
        }

        .about-feature p {
            font-size: 0.85rem;
            margin: 0;
            line-height: 1.6;
        }

        .about-btn {
            display: inline-flex;
            align-items: center;
            gap: 14px;
            background: linear-gradient(135deg, var(--charcoal) 0%, var(--brown) 100%);
            color: var(--white);
            padding: 18px 38px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 500;
            font-size: 0.85rem;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            transition: var(--transition);
            box-shadow: 0 8px 30px rgba(58, 58, 58, 0.2);
        }

        .about-btn:hover {
            transform: translateX(8px);
            box-shadow: 0 15px 45px rgba(58, 58, 58, 0.3);
        }

        .about-btn i {
            transition: var(--transition);
        }

        .about-btn:hover i {
            transform: translateX(5px);
        }

        /* Divisions Section */
        .divisions {
            padding: 80px 5%;
            background: var(--cream);
            position: relative;
            overflow: hidden;
        }

        .divisions::before {
            content: '';
            position: absolute;
            top: -200px;
            right: -200px;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, var(--pale-green) 0%, transparent 70%);
            opacity: 0.5;
        }

        .divisions::after {
            content: '';
            position: absolute;
            bottom: -200px;
            left: -200px;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, var(--pale-red) 0%, transparent 70%);
            opacity: 0.5;
        }

        .divisions-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 35px;
        }
		.divisions-grid2 {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 45px;
        }

        .division-card {
            background: var(--white);
            border-radius: 20px;
            padding: 55px 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
            transition: var(--transition);
            box-shadow: 0 15px 50px rgba(58, 58, 58, 0.05);
            border: 1px solid var(--light-tan);
        }

        .division-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-red) 0%, var(--fresh-green) 100%);
            transform: scaleX(0);
            transform-origin: left;
            transition: var(--transition);
        }

        .division-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 35px 80px rgba(58, 58, 58, 0.1);
            border-color: transparent;
        }

        .division-card:hover::before {
            transform: scaleX(1);
        }

        .division-icon {
            width: 95px;
            height: 95px;
            background: linear-gradient(135deg, var(--tan) 0%, var(--brown) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 30px;
            transition: var(--transition);
            position: relative;
        }

        .division-icon::before {
            content: '';
            position: absolute;
            width: 110%;
            height: 110%;
            border: 1px dashed var(--tan);
            border-radius: 50%;
            animation: spin 20s linear infinite;
        }

        @keyframes spin {
            100% { transform: rotate(360deg); }
        }

        .division-card:hover .division-icon {
            transform: scale(1.08);
            background: linear-gradient(135deg, var(--primary-red) 0%, var(--accent-red) 100%);
        }

        .division-icon i {
            color: var(--white);
            font-size: 2.2rem;
        }

        .division-card h3 {
            font-family: 'Poppins', sans-serif;
            font-size: 1.9rem;
            font-weight: 400;
            color: var(--charcoal);
            margin-bottom: 18px;
            letter-spacing: 1px;
        }
		.division-card h4 {
            font-family: 'Poppins', sans-serif;
            font-size: 1.3rem;
            font-weight: 500;
            color: var(--charcoal);
            margin-bottom: 18px;
            letter-spacing: 1px;
        }

        .division-card p {
            font-size: 1.15rem;
            color: var(--gray);
            line-height: 1.85;
            margin-bottom: 30px;
            font-weight: 300;
        }

        .division-features {
            text-align: left;
            margin-bottom: 30px;
            list-style: none;
        }

        .division-features li {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 9px 0;
            color: var(--charcoal);
            font-size: 1..05rem;
            font-weight: 400;
            border-bottom: 1px solid var(--light-gray);
            transition: var(--transition);
        }
		
		.hero-bullets {
    list-style: none;
    padding: 0;
    margin: 10px 0 50px;
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.hero-bullets li {
    color: #fff;
    font-size: 1.5rem;
	font-weight: 600;
    letter-spacing: 0.5px;

}

.hero-bullets li i {
    color: #f0a500; /* or whatever your brand accent color is */
    margin-right: 6px;
}

        .division-features li:last-child {
            border-bottom: none;
        }

        .division-features li:hover {
            padding-left: 8px;
        }

        .division-features li i {
            color: var(--fresh-green);
            font-size: 0.75rem;
        }

        .division-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: var(--brown);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.85rem;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            transition: var(--transition);
        }

        .division-btn i {
            transition: var(--transition);
        }

        .division-btn:hover {
            color: var(--primary-red);
        }

        .division-btn:hover i {
            transform: translateX(5px);
        }

        /* Menu Section */
        .menu {
            padding: 160px 5%;
            background: var(--warm-white);
            position: relative;
        }

        .menu-tabs {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-bottom: 70px;
            flex-wrap: wrap;
        }

        .menu-tab {
            padding: 14px 32px;
            background: transparent;
            border: 1.5px solid var(--light-tan);
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 500;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            cursor: pointer;
            transition: var(--transition);
            font-family: 'Raleway', sans-serif;
            color: var(--charcoal);
        }

        .menu-tab:hover {
            border-color: var(--brown);
            color: var(--brown);
        }

        .menu-tab.active {
            background: linear-gradient(135deg, var(--primary-red) 0%, var(--accent-red) 100%);
            border-color: transparent;
            color: var(--white);
            box-shadow: 0 8px 25px rgba(224, 6, 20, 0.25);
        }

        .menu-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        .menu-item {
            background: var(--white);
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(58, 58, 58, 0.06);
            transition: var(--transition);
            position: relative;
            border: 1px solid var(--light-tan);
        }

        .menu-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 70px rgba(58, 58, 58, 0.12);
            border-color: transparent;
        }

        .menu-item-img {
            height: 220px;
            overflow: hidden;
            position: relative;
        }

        .menu-item-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .menu-item:hover .menu-item-img img {
            transform: scale(1.08);
        }

        .menu-item-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            background: linear-gradient(135deg, var(--primary-red) 0%, var(--accent-red) 100%);
            color: var(--white);
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 0.7rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .menu-item-badge.vegan {
            background: linear-gradient(135deg, var(--forest-green) 0%, var(--fresh-green) 100%);
        }

        .menu-item-badge.seasonal {
            background: linear-gradient(135deg, var(--brown) 0%, var(--tan) 100%);
        }

        .menu-item-quick {
            position: absolute;
            bottom: 15px;
            right: 15px;
            width: 44px;
            height: 44px;
            background: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transform: translateY(15px);
            transition: var(--transition);
            cursor: pointer;
            color: var(--charcoal);
            box-shadow: 0 5px 20px rgba(0,0,0,0.15);
        }

        .menu-item:hover .menu-item-quick {
            opacity: 1;
            transform: translateY(0);
        }

        .menu-item-quick:hover {
            background: var(--primary-red);
            color: var(--white);
        }

        .menu-item-content {
            padding: 25px;
        }

        .menu-item-content h4 {
            font-family: 'Poppins', sans-serif;
            font-size: 1.2rem;
            font-weight: 400;
            color: var(--charcoal);
            margin-bottom: 10px;
            letter-spacing: 0.5px;
        }

        .menu-item-content p {
            font-size: 0.85rem;
            color: var(--gray);
            line-height: 1.7;
            margin-bottom: 18px;
            font-weight: 300;
        }

        .menu-item-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .menu-item-price {
            font-family: 'Poppins', sans-serif;
            font-size: 1.4rem;
            font-weight: 500;
            color: var(--primary-red);
        }

        .menu-item-rating {
            display: flex;
            align-items: center;
            gap: 5px;
            color: var(--tan);
            font-size: 0.85rem;
        }

        .menu-item-rating i {
            color: #F4B400;
        }

        .menu-item-rating span {
            color: var(--gray);
            font-weight: 500;
        }

        /* Locations Section */
        .locations {
            padding: 160px 5%;
            background: linear-gradient(135deg, var(--charcoal) 0%, var(--brown) 100%);
            position: relative;
            overflow: hidden;
        }

        .locations::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1.5" fill="rgba(255,255,255,0.03)"/></svg>');
            background-size: 50px 50px;
        }

        .locations .section-header {
            color: var(--white);
        }

        .locations .section-tag {
            color: var(--tan);
        }

        .locations .section-tag::before,
        .locations .section-tag::after {
            background: rgba(255, 255, 255, 0.25);
        }

        .locations .section-title {
            color: var(--white);
        }

        .locations .section-title span {
            color: var(--light-green);
        }

        .locations .section-subtitle {
            color: rgba(255, 255, 255, 0.7);
        }

        .locations-slider {
            display: flex;
            gap: 30px;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            scrollbar-width: none;
            padding: 20px 0;
        }

        .locations-slider::-webkit-scrollbar {
            display: none;
        }

        .location-card {
            min-width: 360px;
            background: var(--white);
            border-radius: 20px;
            padding: 40px;
            scroll-snap-align: start;
            transition: var(--transition);
        }

        .location-card:hover {
            transform: translateY(-8px) scale(1.01);
            box-shadow: 0 35px 70px rgba(0, 0, 0, 0.25);
        }

        .location-card-header {
            display: flex;
            align-items: center;
            gap: 18px;
            margin-bottom: 28px;
        }

        .location-card-icon {
            width: 58px;
            height: 58px;
            background: var(--pale-green);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .location-card-icon i {
            color: var(--forest-green);
            font-size: 1.4rem;
        }

        .location-card-header h4 {
            font-family: 'Poppins', sans-serif;
            font-size: 1.3rem;
            font-weight: 400;
            color: var(--charcoal);
            letter-spacing: 0.5px;
        }

        .location-card-header span {
            font-size: 0.8rem;
            color: var(--brown);
            font-weight: 400;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .location-card-info {
            margin-bottom: 28px;
        }

        .location-card-info p {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 14px 0;
            color: var(--gray);
            font-size: 0.9rem;
            font-weight: 300;
            border-bottom: 1px solid var(--light-gray);
        }

        .location-card-info p:last-child {
            border-bottom: none;
        }

        .location-card-info i {
            color: var(--primary-red);
            width: 18px;
        }

        .location-card-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            width: 100%;
            padding: 16px;
            background: linear-gradient(135deg, var(--primary-red) 0%, var(--accent-red) 100%);
            color: var(--white);
            border-radius: 10px;
            text-decoration: none;
            font-weight: 500;
            font-size: 0.85rem;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            transition: var(--transition);
        }

        .location-card-btn:hover {
            transform: scale(1.03);
            box-shadow: 0 10px 30px rgba(224, 6, 20, 0.3);
        }

        /* Stats Section */
        .stats {
            padding: 120px 5%;
            background: var(--warm-white);
            position: relative;
        }

        .stats::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--tan), transparent);
        }

        .stats::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--tan), transparent);
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }

        .stat-item {
            text-align: center;
            padding: 45px;
            border-radius: 16px;
            transition: var(--transition);
            position: relative;
        }

        .stat-item::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 16px;
            background: var(--cream);
            opacity: 0;
            transition: var(--transition);
        }

        .stat-item:hover::before {
            opacity: 1;
        }

        .stat-item > * {
            position: relative;
            z-index: 1;
        }

        .stat-number {
            font-family: 'Poppins', sans-serif;
            font-size: 4rem;
            font-weight: 300;
            color: var(--primary-red);
            line-height: 1;
            margin-bottom: 12px;
            letter-spacing: 2px;
        }

        .stat-label {
            font-size: 0.85rem;
            color: var(--gray);
            text-transform: uppercase;
            letter-spacing: 2.5px;
            font-weight: 400;
        }

        /* Testimonials Section */
        .testimonials {
            padding: 160px 5%;
            background: var(--cream);
            position: relative;
            overflow: hidden;
        }

        .testimonials::before {
            content: '"';
            position: absolute;
            top: 10%;
            left: 5%;
            font-size: 40vw;
            font-family: Georgia, serif;
            color: var(--white);
            opacity: 0.5;
            line-height: 0.8;
            pointer-events: none;
        }

        .testimonial-slider {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
        }

        .testimonial-item {
            text-align: center;
            padding: 60px;
            background: var(--white);
            border-radius: 24px;
            box-shadow: 0 25px 70px rgba(58, 58, 58, 0.08);
            border: 1px solid var(--light-tan);
        }

        .testimonial-stars {
            margin-bottom: 30px;
            color: #F4B400;
            font-size: 1.2rem;
            letter-spacing: 5px;
        }

        .testimonial-text {
            font-size: 1.35rem;
            color: var(--charcoal);
            line-height: 1.9;
            margin-bottom: 40px;
            font-weight: 300;
            font-style: italic;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
        }

        .testimonial-author img {
            width: 65px;
            height: 65px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid var(--light-green);
        }

        .testimonial-author-info h5 {
            font-family: 'Poppins', sans-serif;
            font-size: 1.1rem;
            font-weight: 400;
            color: var(--charcoal);
            margin-bottom: 5px;
            letter-spacing: 0.5px;
        }

        .testimonial-author-info span {
            font-size: 0.85rem;
            color: var(--brown);
            font-weight: 300;
        }

        /* Newsletter Section */
        .newsletter {
            padding: 120px 5%;
            background: var(--charcoal);
            position: relative;
            overflow: hidden;
        }

        .newsletter::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -15%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, var(--brown) 0%, transparent 70%);
            opacity: 0.3;
        }

        .newsletter::after {
            content: '';
            position: absolute;
            bottom: -50%;
            left: -15%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, var(--primary-red) 0%, transparent 70%);
            opacity: 0.15;
        }

        .newsletter-content {
            max-width: 700px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .newsletter-icon {
            width: 70px;
            height: 70px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 30px;
        }

        .newsletter-icon i {
            color: var(--light-green);
            font-size: 1.5rem;
        }

        .newsletter h3 {
            font-family: 'Poppins', sans-serif;
            font-size: 2.4rem;
            font-weight: 300;
            color: var(--white);
            margin-bottom: 20px;
            letter-spacing: 1px;
        }

        .newsletter p {
            font-size: 1.05rem;
            color: rgba(255, 255, 255, 0.65);
            margin-bottom: 40px;
            font-weight: 300;
            line-height: 1.8;
        }

        .newsletter-form {
            display: flex;
            gap: 12px;
            max-width: 520px;
            margin: 0 auto;
        }

        .newsletter-form input {
            flex: 1;
            padding: 18px 28px;
            border: none;
            border-radius: 10px;
            font-size: 0.95rem;
            font-family: 'Raleway', sans-serif;
            font-weight: 300;
            outline: none;
            background: rgba(255, 255, 255, 0.95);
            transition: var(--transition);
        }

        .newsletter-form input:focus {
            background: var(--white);
            box-shadow: 0 0 0 3px rgba(224, 6, 20, 0.2);
        }

        .newsletter-form input::placeholder {
            color: var(--gray);
        }

        .newsletter-form button {
            padding: 18px 38px;
            background: linear-gradient(135deg, var(--primary-red) 0%, var(--accent-red) 100%);
            color: var(--white);
            border: none;
            border-radius: 10px;
            font-size: 0.85rem;
            font-weight: 500;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            cursor: pointer;
            transition: var(--transition);
            font-family: 'Raleway', sans-serif;
        }

        .newsletter-form button:hover {
            transform: scale(1.03);
            box-shadow: 0 10px 35px rgba(224, 6, 20, 0.4);
        }

        /* Footer */
        footer {
            background: #1a1a1a;
            padding: 100px 5% 35px;
            color: var(--white);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 60px;
            margin-bottom: 70px;
        }

        .footer-brand .logo {
            margin-bottom: 28px;
        }

        .footer-brand .logo-text {
            color: var(--white);
        }

        .footer-brand .logo-text span {
            color: var(--tan);
        }

        .footer-brand p {
            color: rgba(255, 255, 255, 0.55);
            line-height: 1.9;
            margin-bottom: 30px;
            font-weight: 300;
        }

        .footer-social {
            display: flex;
            gap: 12px;
        }

        .footer-social a {
            width: 44px;
            height: 44px;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            text-decoration: none;
            transition: var(--transition);
        }

        .footer-social a:hover {
            background: var(--primary-red);
            transform: translateY(-4px);
        }

        .footer-col h4 {
            font-family: 'Poppins', sans-serif;
            font-size: 1.2rem;
            font-weight: 400;
            margin-bottom: 28px;
            color: var(--white);
            letter-spacing: 1px;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 14px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.55);
            text-decoration: none;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-weight: 300;
            font-size: 0.95rem;
        }

        .footer-links a:hover {
            color: var(--light-red);
            padding-left: 8px;
        }

        .footer-contact p {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            color: rgba(255, 255, 255, 0.55);
            margin-bottom: 18px;
            font-weight: 300;
            font-size: 0.95rem;
            line-height: 1.6;
        }

        .footer-contact i {
            color: var(--light-green);
            margin-top: 4px;
            width: 18px;
        }

        .footer-bottom {
            padding-top: 35px;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 20px;
        }

        .footer-bottom p {
            color: rgba(255, 255, 255, 0.4);
            font-size: 0.85rem;
            font-weight: 300;
        }

        .footer-bottom-links {
            display: flex;
            gap: 35px;
        }

        .footer-bottom-links a {
            color: rgba(255, 255, 255, 0.4);
            text-decoration: none;
            font-size: 0.85rem;
            font-weight: 300;
            transition: var(--transition);
        }

        .footer-bottom-links a:hover {
            color: var(--light-red);
        }

        /* Back to Top */
        .back-to-top {
            position: fixed;
            bottom: 35px;
            right: 35px;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--charcoal) 0%, var(--brown) 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            text-decoration: none;
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
            transition: var(--transition);
            z-index: 999;
            box-shadow: 0 10px 30px rgba(58, 58, 58, 0.25);
        }

        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .back-to-top:hover {
            background: linear-gradient(135deg, var(--primary-red) 0%, var(--accent-red) 100%);
            transform: translateY(-5px);
        }

        /* Animations */
        .fade-in {
            opacity: 0;
            transform: translateY(50px);
            transition: opacity 0.9s ease, transform 0.9s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .fade-in-left {
            opacity: 0;
            transform: translateX(-50px);
            transition: opacity 0.9s ease, transform 0.9s ease;
        }

        .fade-in-left.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .fade-in-right {
            opacity: 0;
            transform: translateX(50px);
            transition: opacity 0.9s ease, transform 0.9s ease;
        }

        .fade-in-right.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .scale-in {
            opacity: 0;
            transform: scale(0.9);
            transition: opacity 0.9s ease, transform 0.9s ease;
        }

        .scale-in.visible {
            opacity: 1;
            transform: scale(1);
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .menu-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 1024px) {
            nav {
                display: none;
            }

            .hamburger {
                display: flex;
            }

            .about-grid {
                grid-template-columns: 1fr;
                gap: 70px;
            }

            .about-images {
                height: 520px;
                order: -1;
            }

            .divisions-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .menu-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.4rem;
            }

            .hero p {
                font-size: 1rem;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }

            .hero-btn {
                width: 100%;
                max-width: 280px;
                text-align: center;
            }

            .about-images {
                height: 420px;
            }

            .about-img.img-1 {
                width: 70%;
                height: 260px;
            }

            .about-img.img-2 {
                width: 60%;
                height: 200px;
            }

            .about-img.img-3 {
                display: none;
            }

            .about-experience {
                bottom: 25%;
                right: 5%;
                padding: 22px 28px;
            }

            .about-experience .number {
                font-size: 2.8rem;
            }

            .about-features {
                grid-template-columns: 1fr;
            }

            .divisions-grid {
                grid-template-columns: 1fr;
            }

            .menu-grid {
                grid-template-columns: 1fr;
            }

            .location-card {
                min-width: 300px;
            }

            .stats-grid {
                grid-template-columns: 1fr 1fr;
                gap: 20px;
            }

            .stat-item {
                padding: 30px 20px;
            }

            .stat-number {
                font-size: 3rem;
            }

            .newsletter-form {
                flex-direction: column;
            }

            .newsletter-form button {
                width: 100%;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 45px;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }

            .footer-bottom-links {
                justify-content: center;
            }

            .hero-dots {
                bottom: 120px;
                right: auto;
                left: 50%;
                transform: translateX(-50%);
                flex-direction: row;
            }

            .hero-scroll {
                display: none;
            }
			.hero-bullets li {
    font-size: 1rem;
	font-weight: 600;
    letter-spacing: 0.5px;

}
        }

        @media (max-width: 480px) {
            .logo-text {
                font-size: 1.15rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .testimonial-item {
                padding: 40px 25px;
            }

            .testimonial-text {
                font-size: 1.1rem;
            }

            .newsletter h3 {
                font-size: 1.8rem;
            }
        }
		.btn-wholesale {
			background: linear-gradient(135deg, var(--primary-red) 0%, var(--accent-red) 100%);
  color: var(--white);
  box-shadow: 0 8px 30px rgba(224, 6, 20, 0.3);
  padding: 18px 42px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  margin-top: 40px;
}

.hero-logo {
    display: block;
    margin: 0 auto 20px;
    width: 200px;
    height: auto;
}

@media (max-width: 768px) {
    .divisions-grid2 {
        grid-template-columns: 1fr;
    }
}

.hero-content h1 {
    white-space: nowrap;
}

@media (max-width: 768px) {
    .hero-content h1 {
        white-space: normal;
    }
}