/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    overflow-x: hidden;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
*:focus {
    outline: 2px solid #F7931E;
    outline-offset: 2px;
}

/* Selection styles */
::selection {
    background-color: #F7931E;
    color: white;
}

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

/* Header Styles */
.header {
    background: #fff;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo h1 {
    color: #333;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.5px;
}

.logo-image {
    height: 60px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

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

.footer-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #F7931E;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: #F7931E;
}

.cart {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cart-icon {
    position: relative;
    background: #F7931E;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cart-icon:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(247, 147, 30, 0.3);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #333;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
    min-width: 20px;
}

.cart-total {
    font-weight: 600;
    color: #333;
    font-size: 0.9rem;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.search-icon {
    color: #333;
    font-size: 1.2rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.search-icon:hover {
    color: #F7931E;
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #333;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 4s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-slide-1 {
    background-image: url('images/slider images/Slider 1.jpg');
}

.hero-slide-2 {
    background-image: url('images/slider images/Slider 2.jpg');
}

.hero-slide-3 {
    background-image: url('images/slider images/Slider 3.jpg');
}

.hero-slide-4 {
    background-image: url('images/slider images/Slider 4.jpg');
}

.hero-slide-5 {
    background-image: url('images/slider images/Slider 5.jpg');
}

.hero-slide-6 {
    background-image: url('images/slider images/Slider 6.jpg');
}

.slider-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 3;
}

.slider-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-indicator.active {
    background: #F7931E;
    transform: scale(1.2);
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
}

.slider-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.1);
}

.hero-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.hero-main {
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #F7931E;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -1px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 500px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.cta-button {
    background: #333;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.cta-button:hover {
    background: #555;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.hero-image {
    position: relative;
    z-index: 1;
}

.product-showcase {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.product-item {
    background: white;
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: center;
    flex: 1;
    min-width: 120px;
}

.product-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 0.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.product-item h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.25rem;
}

.product-item p {
    font-size: 0.8rem;
    color: #666;
}

/* Sidebar */
.hero-sidebar {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    height: fit-content;
}

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

.sidebar-section:last-child {
    margin-bottom: 0;
}

.sidebar-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.benefit-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.benefit-card {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    background: #F7931E;
    color: white;
    transform: translateY(-2px);
}

.benefit-card i {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #F7931E;
}

.benefit-card:hover i {
    color: white;
}

.benefit-card h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.benefit-card p {
    font-size: 0.8rem;
    opacity: 0.8;
}

.order-now-btn {
    background: #333;
    color: white;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.order-now-btn:hover {
    background: #555;
    transform: translateY(-2px);
}

.best-selling {
    margin-top: 2rem;
}

.best-selling h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.best-selling p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.best-selling-products {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.best-product-card {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.best-product-card:hover {
    background: #F7931E;
    color: white;
    transform: translateY(-2px);
}

.best-product-card img {
    width: 50px;
    height: 50px;
    border-radius: 6px;
    object-fit: cover;
}

.best-product-card h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.best-product-card p {
    font-size: 0.8rem;
    opacity: 0.8;
}

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: #333;
    letter-spacing: -0.5px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 80px 0;
    background: white;
}

.why-choose-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.why-choose-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.why-choose-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.product-showcase-panel {
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-panel {
    background: #f5f5f5;
    border-radius: 16px;
    padding: 2rem;
    width: 100%;
    max-width: 300px;
    position: relative;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.product-wrapper {
    position: relative;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-package {
    position: relative;
    z-index: 2;
}

.package-front {
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
    color: white;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    width: 120px;
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.package-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    color: white;
}

.package-subtitle {
    font-size: 0.7rem;
    opacity: 0.9;
    margin-bottom: 0.5rem;
    color: white;
}

.package-description {
    font-size: 0.6rem;
    opacity: 0.8;
    margin-bottom: 0.8rem;
    color: white;
    line-height: 1.2;
}

.package-features {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    margin-bottom: 1rem;
}

.feature-tag {
    background: rgba(255,255,255,0.2);
    padding: 0.15rem 0.4rem;
    border-radius: 3px;
    font-size: 0.6rem;
    font-weight: 600;
    color: white;
}

.package-highlight {
    font-size: 1.8rem;
    font-weight: 700;
    color: #F7931E;
    margin-bottom: 0.1rem;
}

.package-highlight-text {
    font-size: 0.6rem;
    font-weight: 600;
    color: #F7931E;
}

.product-pieces {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
}

.piece {
    position: absolute;
    background: #8B4513;
    border-radius: 4px;
    opacity: 0.8;
}

.piece-1 {
    width: 20px;
    height: 15px;
    bottom: 20px;
    left: 20px;
    transform: rotate(-15deg);
}

.piece-2 {
    width: 25px;
    height: 18px;
    bottom: 15px;
    left: 50px;
    transform: rotate(10deg);
}

.piece-3 {
    width: 18px;
    height: 12px;
    bottom: 25px;
    right: 30px;
    transform: rotate(-5deg);
}

.benefit-cards-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-card-modern {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.benefit-card-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.benefit-card-modern .benefit-icon {
    font-size: 1.5rem;
    color: #F7931E;
    margin-bottom: 0.8rem;
    display: block;
}

.benefit-card-modern h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
}

.benefit-card-modern p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.feature-icon {
    font-size: 3rem;
    color: #F7931E;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* Industries Section */
.industries {
    padding: 80px 0;
    background: #f8f9fa;
    position: relative;
    z-index: 1;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.industry-card {
    text-align: center;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.industry-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.industry-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    z-index: 1;
}

.industry-card > * {
    position: relative;
    z-index: 2;
}

.industry-card:nth-child(1) {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
}

.industry-card:nth-child(2) {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
}

.industry-card:nth-child(3) {
    background: linear-gradient(135deg, #f3e5f5 0%, #e1bee7 100%);
}

.industry-card:nth-child(4) {
    background: linear-gradient(135deg, #e8f5e8 0%, #c8e6c9 100%);
}

.industry-card:nth-child(5) {
    background: linear-gradient(135deg, #fff8e1 0%, #ffecb3 100%);
}

.industry-card:nth-child(6) {
    background: linear-gradient(135deg, #fce4ec 0%, #f8bbd9 100%);
}

.industry-icon {
    font-size: 3rem;
    color: #F7931E;
    margin-bottom: 1rem;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.industry-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.industry-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Products Section */
.products-preview {
    padding: 80px 0;
    background: #f8f9fa;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.product-image {
    height: 200px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

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

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

.placeholder-image {
    color: #666;
    font-weight: 600;
    font-size: 1.1rem;
}

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.product-info p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.product-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #F7931E;
    margin-bottom: 1rem;
}

.add-to-cart-btn {
    background: #F7931E;
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.add-to-cart-btn:hover {
    background: #e6850e;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(247, 147, 30, 0.3);
}

.add-to-cart-btn.added {
    background: #4CAF50;
    animation: pulse 0.6s ease-in-out;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* About Section Styles */
.about-preview {
    padding: 100px 40px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    text-align: center;
}

.about-content {
    max-width: 800px;
    margin: 0 auto 4rem;
    padding: 0 20px;
}

.about-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #F7931E 0%, #e6850e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-content p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.certifications {
    margin-top: 3rem;
}

.certifications h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 2rem;
    text-align: center;
}

.promise-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.promise-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.promise-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #F7931E 0%, #e6850e 100%);
}

.promise-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
    border-color: #F7931E;
}

.promise-icon {
    font-size: 3rem;
    color: #F7931E;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.promise-card:hover .promise-icon {
    transform: scale(1.1);
    color: #e6850e;
}

.promise-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.promise-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* About Page Styles */
.page-header {
    background: linear-gradient(135deg, #F7931E 0%, #e6850e 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.about-content {
    padding: 80px 0;
    background: white;
}

.about-story {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.about-story h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #333;
}

.about-story p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.mission-vision {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin: 4rem 0;
}

.mission, .vision {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 12px;
}

.mission h3, .vision h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #F7931E;
}

.values {
    margin: 4rem 0;
}

.values h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #333;
}

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

.value-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.value-icon {
    font-size: 3rem;
    color: #F7931E;
    margin-bottom: 1rem;
}

.value-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.value-card p {
    color: #666;
    line-height: 1.6;
}

/* Chef Section */
.meet-chef {
    margin: 4rem 0;
    padding: 3rem;
    background: #f8f9fa;
    border-radius: 16px;
}

.meet-chef h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #333;
}

.chef-profile {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: start;
    max-width: 1000px;
    margin: 0 auto;
}

.chef-image {
    text-align: center;
}

.chef-placeholder {
    width: 250px;
    height: 300px;
    background: linear-gradient(135deg, #F7931E 0%, #e6850e 100%);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    margin: 0 auto;
}

.chef-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.chef-placeholder p {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.chef-details h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #F7931E;
    margin-bottom: 0.5rem;
}

.chef-title {
    font-size: 1.2rem;
    color: #666;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.chef-bio {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.chef-credentials {
    margin-bottom: 2rem;
}

.chef-credentials h4 {
    color: #333;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.chef-credentials ul {
    list-style: none;
    padding: 0;
}

.chef-credentials li {
    padding: 0.5rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.chef-credentials li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #F7931E;
    font-weight: bold;
    font-size: 1.1rem;
}

.chef-philosophy {
    margin-bottom: 2rem;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    border-left: 4px solid #F7931E;
}

.chef-philosophy h4 {
    color: #333;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.chef-philosophy p {
    color: #666;
    line-height: 1.8;
    font-style: italic;
    margin: 0;
}

.chef-signature {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, #F7931E 0%, #e6850e 100%);
    border-radius: 12px;
    color: white;
}

.signature-text {
    font-size: 1.3rem;
    font-style: italic;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.signature-name {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
}

/* Products Page */
.product-categories {
    padding: 40px 0;
    background: #f8f9fa;
}

.category-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: white;
    border: 2px solid #F7931E;
    color: #F7931E;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: #F7931E;
    color: white;
}

.products-section {
    padding: 80px 0;
}

/* Services Page */
.main-services {
    padding: 80px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.service-icon {
    font-size: 3rem;
    color: #F7931E;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.service-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    text-align: left;
    margin-bottom: 1.5rem;
}

.service-features li {
    padding: 0.5rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #F7931E;
    font-weight: bold;
}

.quote-btn {
    background: #F7931E;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.quote-btn:hover {
    background: #e6850e;
    transform: translateY(-2px);
}

/* Contact Page */
.contact-info {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.contact-icon {
    font-size: 3rem;
    color: #F7931E;
    margin-bottom: 1rem;
}

.contact-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.contact-card p {
    color: #666;
    margin-bottom: 0.5rem;
}

.contact-link {
    color: #F7931E;
    text-decoration: none;
    font-weight: 600;
    margin-top: 1rem;
    display: inline-block;
}

.contact-link:hover {
    text-decoration: underline;
}

.contact-form-section {
    padding: 80px 0;
    background: white;
}

.form-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.form-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.form-content p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-form {
    display: grid;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #F7931E;
}

.submit-btn {
    background: #F7931E;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #e6850e;
    transform: translateY(-2px);
}

.form-sidebar {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
}

.sidebar-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.sidebar-content p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.quick-contact {
    margin-bottom: 2rem;
}

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

.quick-contact-item i {
    font-size: 1.5rem;
    color: #F7931E;
    width: 30px;
}

.quick-contact-item strong {
    color: #333;
    display: block;
    font-weight: 600;
}

.quick-contact-item p {
    color: #666;
    margin: 0;
}

.response-time {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #F7931E;
}

.response-time h4 {
    color: #333;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.response-time p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    animation: pulse 2s infinite;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    background: #25D366;
    color: white;
    padding: 15px 20px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 14px;
    min-width: 60px;
    justify-content: center;
}

.whatsapp-btn:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
    color: white;
    text-decoration: none;
}

.whatsapp-btn i {
    font-size: 24px;
    margin-right: 8px;
}

.whatsapp-text {
    white-space: nowrap;
    font-size: 14px;
}

/* WhatsApp Button Animation */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* WhatsApp Button Responsive */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-btn {
        padding: 12px 16px;
        font-size: 13px;
    }
    
    .whatsapp-btn i {
        font-size: 20px;
        margin-right: 6px;
    }
    
    .whatsapp-text {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-btn {
        padding: 10px 14px;
        min-width: 50px;
    }
    
    .whatsapp-text {
        display: none;
    }
    
    .whatsapp-btn i {
        margin-right: 0;
    }
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #F7931E;
    font-weight: 600;
}

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

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

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #F7931E;
}

.footer-section p {
    color: #ccc;
    margin-bottom: 0.5rem;
}

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

.social-links a {
    color: #ccc;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #F7931E;
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 1rem;
    text-align: center;
    color: #999;
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes popOut {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
        transform: scale(1);
    }
    to {
        opacity: 0;
        transform: scale(0.95);
    }
}

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

/* Animation classes */
.animate-fade-in {
    animation: fadeIn 0.6s ease-out forwards;
    opacity: 1 !important;
    transform: scale(1) !important;
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 1 !important;
    transform: translateY(0) scale(1) !important;
}

.animate-slide-in-left {
    animation: slideInLeft 0.6s ease-out forwards;
    opacity: 1 !important;
    transform: translateX(0) scale(1) !important;
}

.animate-slide-in-right {
    animation: slideInRight 0.6s ease-out forwards;
    opacity: 1 !important;
    transform: translateX(0) scale(1) !important;
}

.animate-pop-out {
    animation: popOut 0.5s ease-out forwards;
    opacity: 1 !important;
    transform: scale(1) !important;
}

.animate-fade-out {
    animation: fadeOut 0.4s ease-in forwards;
}

.animate-slide-in-up {
    animation: slideInUp 0.6s ease-out forwards;
    opacity: 1 !important;
    transform: translateY(0) scale(1) !important;
}

/* Smooth transitions for all interactive elements */
.product-card,
.service-card,
.industry-card,
.feature-card,
.benefit-card,
.contact-card,
.value-card,
.faq-item {
    transition: all 0.3s ease;
    opacity: 1;
    transform: scale(1);
}

/* Ensure elements are visible by default */
.industry-card,
.product-card,
.service-card,
.feature-card,
.benefit-card,
.contact-card,
.benefit-card-modern,
.value-card,
.faq-item {
    opacity: 1;
    transform: scale(1);
    visibility: visible;
}

/* Override inline styles when animation classes are applied */
.animate-fade-in,
.animate-fade-in-up,
.animate-slide-in-left,
.animate-slide-in-right,
.animate-pop-out,
.animate-slide-in-up {
    opacity: 1 !important;
    visibility: visible !important;
}

.animate-fade-in {
    transform: scale(1) !important;
}

.animate-fade-in-up {
    transform: translateY(0) scale(1) !important;
}

.animate-slide-in-left {
    transform: translateX(0) scale(1) !important;
}

.animate-slide-in-right {
    transform: translateX(0) scale(1) !important;
}

.animate-pop-out {
    transform: scale(1) !important;
}

.animate-slide-in-up {
    transform: translateY(0) scale(1) !important;
}

.product-card:hover,
.service-card:hover,
.industry-card:hover,
.feature-card:hover,
.benefit-card:hover,
.contact-card:hover,
.value-card:hover,
.faq-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

/* Button animations */
.cta-button,
.add-to-cart-btn,
.quote-btn,
.submit-btn,
.checkout-btn {
    transition: all 0.3s ease;
    transform: scale(1);
}

.cta-button:hover,
.add-to-cart-btn:hover,
.quote-btn:hover,
.submit-btn:hover,
.checkout-btn:hover {
    transform: translateY(-2px) scale(1.05);
}

.cta-button:active,
.add-to-cart-btn:active,
.quote-btn:active,
.submit-btn:active,
.checkout-btn:active {
    transform: translateY(0) scale(0.98);
}

/* Loading states */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Mobile menu styles */
.nav.active {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    padding: 1rem;
    z-index: 1000;
    animation: slideInUp 0.3s ease-out;
    transform-origin: top;
}

.nav.active .nav-list {
    flex-direction: column;
    gap: 1rem;
}

/* Search Modal */
.search-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.search-modal-content {
    background: white;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow: hidden;
    animation: popOut 0.3s ease-out;
    transform-origin: center;
}

.search-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #e0e0e0;
}

.search-modal-header h3 {
    margin: 0;
    color: #333;
    font-size: 1.3rem;
}

.close-search {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-search:hover {
    background: #f0f0f0;
    color: #333;
}

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

.search-input {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: #F7931E;
}

.search-results {
    margin-top: 1rem;
    max-height: 300px;
    overflow-y: auto;
}

.search-result-item {
    padding: 0.75rem;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    transition: background 0.3s ease;
}

.search-result-item:hover {
    background: #f8f9fa;
}

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

/* Enhanced form styles */
.field-error {
    color: #f44336;
    font-size: 0.8rem;
    margin-top: 0.25rem;
}

.error {
    border-color: #f44336 !important;
}

/* Loading states */
.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #F7931E;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Enhanced button styles */
.cta-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}

/* Improved accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus visible for better keyboard navigation */
.cta-button:focus-visible,
.nav-link:focus-visible,
.slider-btn:focus-visible {
    outline: 2px solid #F7931E;
    outline-offset: 2px;
}

/* Cart Dropdown Styles */
.cart {
    position: relative;
}

.cart-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    width: 350px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    z-index: 1000;
    margin-top: 0.5rem;
    border: 1px solid #e0e0e0;
    animation: popOut 0.3s ease-out;
    transform-origin: top right;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #e0e0e0;
    background: #f8f9fa;
    border-radius: 12px 12px 0 0;
}

.cart-header h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}

.close-cart {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
    padding: 0.25rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-cart:hover {
    background: #e0e0e0;
    color: #333;
}

.cart-items {
    max-height: 300px;
    overflow-y: auto;
    padding: 1rem 0;
}

.empty-cart {
    text-align: center;
    padding: 2rem 1rem;
    color: #666;
}

.empty-cart i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #ccc;
}

.empty-cart p {
    margin: 0;
    font-size: 0.9rem;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.3s ease;
}

.cart-item:hover {
    background: #f8f9fa;
}

.cart-item-image {
    width: 40px;
    height: 40px;
    background: #F7931E;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
}

.cart-item-details {
    flex: 1;
}

.cart-item-name {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
}

.cart-item-price {
    color: #666;
    font-size: 0.8rem;
}

.cart-item-remove {
    background: none;
    border: none;
    color: #f44336;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cart-item-remove:hover {
    background: #ffebee;
}

.cart-footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid #e0e0e0;
    background: #f8f9fa;
    border-radius: 0 0 12px 12px;
}

.cart-total-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 1.1rem;
    color: #333;
}

.checkout-btn {
    width: 100%;
    background: #F7931E;
    color: white;
    border: none;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.checkout-btn:hover:not(:disabled) {
    background: #e6850e;
    transform: translateY(-1px);
}

.checkout-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

/* Product Filter Styles */
.filter-btn {
    background: white;
    border: 2px solid #F7931E;
    color: #F7931E;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    margin: 0.25rem;
}

.filter-btn:hover,
.filter-btn.active {
    background: #F7931E;
    color: white;
    transform: translateY(-1px);
}

/* Quote Form Styles */
.quote-form {
    display: none;
    margin-top: 2rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
}

.quote-form.active {
    display: block;
    animation: popOut 0.5s ease-out;
}

.quotation-form {
    display: grid;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.submit-quote {
    background: #F7931E;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-quote:hover {
    background: #e6850e;
    transform: translateY(-1px);
}

.cancel-quote {
    background: #6c757d;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cancel-quote:hover {
    background: #5a6268;
    transform: translateY(-1px);
}

/* Product Badge Styles */
.healthier-badge {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: #4caf50;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
}

.premium-badge {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: #ff9800;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
}

/* FAQ Styles */
.faq-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.faq-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Map Section Styles */
.map-section {
    padding: 80px 0;
    background: white;
}

.map-placeholder {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 4rem 2rem;
    text-align: center;
    border: 2px dashed #e0e0e0;
}

.map-content i {
    font-size: 3rem;
    color: #F7931E;
    margin-bottom: 1rem;
}

.map-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.map-content p {
    color: #666;
    margin-bottom: 0.25rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .chef-profile {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .chef-placeholder {
        width: 200px;
        height: 250px;
    }
    
    .form-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .benefit-cards {
        grid-template-columns: 1fr;
    }
    
    .why-choose-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .benefit-cards-column {
        flex-direction: row;
        gap: 1rem;
    }
    
    .slider-nav {
        display: none;
    }
    
    .slider-indicators {
        bottom: 1rem;
    }
    
    .cart-dropdown {
        width: 300px;
        right: -50px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .category-filters {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-btn {
        width: 200px;
        text-align: center;
    }
    
    .about-preview {
        padding: 80px 20px;
    }
    
    .about-content {
        padding: 0 15px;
    }
    
    .about-content h2 {
        font-size: 2rem;
    }
    
    .about-content p {
        font-size: 1rem;
    }
    
    .promise-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .promise-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .about-preview {
        padding: 60px 15px;
    }
    
    .about-content {
        padding: 0 10px;
    }
    
    .about-content h2 {
        font-size: 1.8rem;
    }
}