/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --primary: #FF6B00;
    --primary-dark: #E55A00;
    --red: #D32F2F;
    --red-dark: #B71C1C;
    --yellow: #FFB300;
    --yellow-light: #FFD54F;
    --white: #FFFFFF;
    --off-white: #FFF8F0;
    --light-gray: #F5F5F5;
    --gray: #9E9E9E;
    --dark: #2D2D2D;
    --text: #424242;
    --text-light: #757575;
    --shadow: 0 2px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
    --radius: 12px;
    --transition: all 0.3s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    color: var(--text);
    line-height: 1.6;
    background: var(--white);
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
h1, h2, h3, h4, h5, h6 { font-weight: 700; color: var(--dark); line-height: 1.3; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 32px; border-radius: 50px; font-weight: 600;
    font-size: 1rem; cursor: pointer; border: none;
    transition: var(--transition); text-transform: none;
}
.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--red));
    color: var(--white); box-shadow: 0 4px 15px rgba(255,107,0,0.4);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 25px rgba(255,107,0,0.5); }
.btn-outline {
    background: transparent; color: var(--white);
    border: 2px solid var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--primary); }
.btn-white {
    background: var(--white); color: var(--primary);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 6px 25px rgba(0,0,0,0.15); }

/* ===== TOPBAR ===== */
.topbar {
    background: var(--dark); color: var(--white);
    font-size: 0.85rem; padding: 8px 0;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.topbar a { color: var(--yellow); }
.topbar a:hover { color: var(--white); }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 16px; }
.topbar i { margin-right: 4px; }

/* ===== HEADER/NAV ===== */
.header {
    background: var(--white);
    position: sticky; top: 0; z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}
.header .container {
    display: flex; justify-content: space-between;
    align-items: center; padding: 10px 20px;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo img { height: 60px; width: auto; border-radius: 8px; }
.logo-text h1 { font-size: 1.4rem; color: var(--primary); line-height: 1.1; }
.logo-text span { font-size: 0.75rem; color: var(--text-light); }

.nav { display: flex; align-items: center; gap: 0; }
.nav a {
    padding: 12px 18px; font-weight: 500; font-size: 0.95rem;
    color: var(--dark); position: relative;
}
.nav a::after {
    content: ''; position: absolute; bottom: 0; left: 50%; width: 0;
    height: 3px; background: var(--primary); transition: var(--transition);
    transform: translateX(-50%); border-radius: 2px;
}
.nav a:hover, .nav a.active { color: var(--primary); }
.nav a:hover::after, .nav a.active::after { width: 60%; }

.nav-toggle { display: none; background: none; border: none; font-size: 1.5rem; color: var(--dark); cursor: pointer; padding: 8px; }

.nav-cta {
    background: var(--primary); color: var(--white) !important;
    border-radius: 50px; padding: 10px 24px !important;
    font-weight: 600 !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--red); color: var(--white) !important; }

/* ===== HERO ===== */
.hero {
    position: relative; height: 85vh; min-height: 500px;
    overflow: hidden; background: var(--dark);
}
.hero-slider { position: relative; height: 100%; }
.hero-slide {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    opacity: 0; transition: opacity 1s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide img {
    width: 100%; height: 100%; object-fit: cover;
    filter: brightness(0.6);
}
.hero-content {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    text-align: center; color: var(--white);
    z-index: 10; width: 90%; max-width: 800px;
}
.hero-content h1 {
    font-size: 3.5rem; color: var(--white);
    margin-bottom: 16px; text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}
.hero-content h1 span { color: var(--yellow); }
.hero-content p {
    font-size: 1.25rem; margin-bottom: 32px;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5); opacity: 0.95;
}
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.hero-dots {
    position: absolute; bottom: 30px; left: 50%;
    transform: translateX(-50%); display: flex; gap: 10px; z-index: 10;
}
.hero-dot {
    width: 12px; height: 12px; border-radius: 50%;
    background: rgba(255,255,255,0.4); cursor: pointer;
    transition: var(--transition);
}
.hero-dot.active { background: var(--yellow); transform: scale(1.2); }

/* ===== FEATURES BAR ===== */
.features-bar {
    background: linear-gradient(135deg, var(--primary), var(--red));
    padding: 30px 0; margin-top: -1px;
}
.features-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.feature-item {
    display: flex; align-items: center; gap: 16px;
    color: var(--white); padding: 10px;
}
.feature-item i { font-size: 2.5rem; color: var(--yellow); }
.feature-item h4 { font-size: 1rem; margin-bottom: 2px; color: var(--white); }
.feature-item p { font-size: 0.8rem; opacity: 0.85; }

/* ===== SECTION COMMONS ===== */
.section { padding: 80px 0; }
.section-alt { background: var(--off-white); }
.section-header { text-align: center; margin-bottom: 50px; }
.section-header h2 { font-size: 2.5rem; margin-bottom: 12px; }
.section-header h2 span { color: var(--primary); }
.section-header p { font-size: 1.1rem; color: var(--text-light); max-width: 600px; margin: 0 auto; }
.section-header .divider {
    width: 60px; height: 4px; background: linear-gradient(90deg, var(--primary), var(--yellow));
    margin: 16px auto 0; border-radius: 2px;
}

/* ===== PRODUCTS ===== */
.products-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.product-card {
    background: var(--white); border-radius: var(--radius);
    overflow: hidden; box-shadow: var(--shadow);
    transition: var(--transition); position: relative;
}
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.product-card .badge {
    position: absolute; top: 16px; left: 16px;
    background: var(--red); color: var(--white);
    padding: 4px 14px; border-radius: 20px; font-size: 0.8rem; font-weight: 600;
    z-index: 5;
}
.product-card .img-wrap {
    position: relative; overflow: hidden;
    aspect-ratio: 1; background: var(--light-gray);
}
.product-card .img-wrap img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.5s ease;
}
.product-card:hover .img-wrap img { transform: scale(1.08); }
.product-card .content { padding: 20px; text-align: center; }
.product-card .content h3 { font-size: 1.15rem; margin-bottom: 8px; }
.product-card .content p { font-size: 0.9rem; color: var(--text-light); margin-bottom: 12px; }
.product-card .tag {
    display: inline-block; padding: 4px 12px;
    background: var(--off-white); color: var(--primary);
    border-radius: 20px; font-size: 0.8rem; font-weight: 500;
}

/* ===== ABOUT ===== */
.about-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 60px; align-items: center;
}
.about-img { position: relative; }
.about-img img { border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.about-img .exp-badge {
    position: absolute; bottom: -20px; right: -20px;
    background: linear-gradient(135deg, var(--primary), var(--red));
    color: var(--white); padding: 24px; border-radius: var(--radius);
    text-align: center; box-shadow: var(--shadow-lg);
}
.about-img .exp-badge .num { font-size: 2.5rem; font-weight: 800; line-height: 1; }
.about-img .exp-badge span { font-size: 0.85rem; }
.about-text h2 { font-size: 2.2rem; margin-bottom: 20px; }
.about-text h2 span { color: var(--primary); }
.about-text p { margin-bottom: 16px; color: var(--text-light); }
.about-features { display: flex; flex-direction: column; gap: 16px; margin: 24px 0; }
.about-feature {
    display: flex; align-items: center; gap: 12px;
}
.about-feature i {
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(255,107,0,0.1); color: var(--primary);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; font-size: 1rem;
}
.about-feature span { font-weight: 500; }

/* ===== STATS ===== */
.stats {
    background: linear-gradient(135deg, var(--primary), var(--red));
    padding: 60px 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.stat-item { text-align: center; color: var(--white); }
.stat-item .num { font-size: 3rem; font-weight: 800; color: var(--yellow); }
.stat-item p { font-size: 1rem; opacity: 0.9; margin-top: 4px; }

/* ===== BULK ORDER ===== */
.bulk-section { position: relative; overflow: hidden; }
.bulk-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover; background-position: center;
    filter: brightness(0.35);
}
.bulk-content {
    position: relative; z-index: 2; text-align: center;
    color: var(--white); padding: 100px 0;
}
.bulk-content h2 { font-size: 2.5rem; color: var(--white); margin-bottom: 16px; }
.bulk-content h2 span { color: var(--yellow); }
.bulk-content p { font-size: 1.15rem; max-width: 700px; margin: 0 auto 32px; opacity: 0.9; }
.bulk-features {
    display: flex; justify-content: center; gap: 40px;
    flex-wrap: wrap; margin-bottom: 40px;
}
.bulk-feature {
    display: flex; align-items: center; gap: 10px;
    font-size: 1.05rem; font-weight: 500;
}
.bulk-feature i { font-size: 1.5rem; color: var(--yellow); }

/* ===== RECIPES ===== */
.recipes-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.recipe-card {
    background: var(--white); border-radius: var(--radius);
    overflow: hidden; box-shadow: var(--shadow);
    transition: var(--transition);
}
.recipe-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.recipe-card .img-wrap {
    position: relative; aspect-ratio: 4/3;
    overflow: hidden; background: var(--light-gray);
}
.recipe-card .img-wrap img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.5s ease;
}
.recipe-card:hover .img-wrap img { transform: scale(1.05); }
.recipe-card .time-badge {
    position: absolute; bottom: 12px; right: 12px;
    background: rgba(0,0,0,0.7); color: var(--white);
    padding: 4px 12px; border-radius: 20px; font-size: 0.8rem;
}
.recipe-card .content { padding: 20px; }
.recipe-card .content h3 { font-size: 1.1rem; margin-bottom: 8px; }
.recipe-card .content p { font-size: 0.88rem; color: var(--text-light); }

/* ===== BRANCHES / CONTACT ===== */
.branches-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.branch-card {
    background: var(--white); border-radius: var(--radius);
    overflow: hidden; box-shadow: var(--shadow);
}
.branch-card .map-wrap { height: 250px; }
.branch-card .map-wrap iframe { width: 100%; height: 100%; border: 0; }
.branch-card .info { padding: 24px; }
.branch-card .info h3 {
    font-size: 1.3rem; margin-bottom: 16px;
    color: var(--primary); display: flex; align-items: center; gap: 8px;
}
.branch-card .info-row {
    display: flex; align-items: flex-start; gap: 12px;
    margin-bottom: 12px; font-size: 0.95rem;
}
.branch-card .info-row i {
    color: var(--primary); width: 20px; text-align: center;
    margin-top: 3px; flex-shrink: 0;
}
.branch-card .info-row a { color: var(--primary); font-weight: 500; }

/* ===== CTA BANNER ===== */
.cta-banner {
    background: linear-gradient(135deg, var(--primary), var(--red-dark));
    padding: 60px 0; text-align: center;
}
.cta-banner h2 { font-size: 2.2rem; color: var(--white); margin-bottom: 12px; }
.cta-banner p { color: rgba(255,255,255,0.9); font-size: 1.1rem; margin-bottom: 28px; }
.cta-banner .btn-white { font-size: 1.1rem; padding: 16px 40px; }

/* ===== FOOTER ===== */
.footer { background: var(--dark); color: rgba(255,255,255,0.8); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; margin-bottom: 40px; }
.footer h4 { color: var(--white); font-size: 1.1rem; margin-bottom: 20px; position: relative; padding-bottom: 12px; }
.footer h4::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 40px; height: 3px; background: var(--primary); border-radius: 2px;
}
.footer-about img { height: 50px; margin-bottom: 12px; border-radius: 6px; }
.footer-about p { font-size: 0.9rem; line-height: 1.7; }
.footer-links a { display: block; padding: 6px 0; font-size: 0.9rem; transition: var(--transition); }
.footer-links a:hover { color: var(--primary); padding-left: 8px; }
.footer-links a i { margin-right: 8px; color: var(--primary); font-size: 0.8rem; }
.footer-contact .info-row { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; font-size: 0.9rem; }
.footer-contact .info-row i { color: var(--primary); margin-top: 3px; }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a {
    width: 40px; height: 40px; border-radius: 50%;
    background: rgba(255,255,255,0.1); color: var(--white);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; transition: var(--transition);
}
.footer-social a:hover { background: var(--primary); transform: translateY(-3px); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0; text-align: center; font-size: 0.85rem;
}
.footer-bottom a { color: var(--primary); }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float-btn:hover { transform: scale(1.05); box-shadow: 0 6px 30px rgba(37,211,102,0.5) !important; }

@keyframes pulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 4px 30px rgba(37,211,102,0.6); }
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
    position: fixed; bottom: 140px; right: 24px; z-index: 999;
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--primary); color: var(--white);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; cursor: pointer; border: none;
    box-shadow: var(--shadow); transition: var(--transition);
    opacity: 0; visibility: hidden;
}
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { background: var(--red); transform: translateY(-3px); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .products-grid, .recipes-grid { grid-template-columns: repeat(2, 1fr); }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .about-grid { gap: 40px; }
}

@media (max-width: 768px) {
    .topbar-right { display: none; }
    .nav {
        position: fixed; top: 80px; left: 0; width: 100%;
        background: var(--white); flex-direction: column;
        padding: 20px; box-shadow: var(--shadow-lg);
        transform: translateY(-120%); transition: var(--transition);
        z-index: 999;
    }
    .nav.open { transform: translateY(0); }
    .nav a { padding: 12px 0; width: 100%; text-align: center; border-bottom: 1px solid var(--light-gray); }
    .nav-toggle { display: block; }

    .hero { height: 70vh; min-height: 400px; }
    .hero-content h1 { font-size: 2rem; }
    .hero-content p { font-size: 1rem; }

    .section { padding: 50px 0; }
    .section-header h2 { font-size: 1.8rem; }

    .about-grid { grid-template-columns: 1fr; }
    .about-img { order: -1; }
    .about-img .exp-badge { bottom: -10px; right: 10px; padding: 16px; }

    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-item .num { font-size: 2.2rem; }

    .branches-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .bulk-features { flex-direction: column; align-items: center; gap: 16px; }
}

@media (max-width: 480px) {
    .hero-content h1 { font-size: 1.6rem; }
    .products-grid, .recipes-grid { grid-template-columns: 1fr; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .btn { width: 100%; justify-content: center; }
    .logo img { height: 45px; }
    .logo-text h1 { font-size: 1.1rem; }
}

/* ===== ANIMATIONS ===== */
.fade-up {
    opacity: 0; transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ===== RECIPE DETAIL MODAL ===== */
.modal-overlay {
    display: none; position: fixed; top: 0; left: 0;
    width: 100%; height: 100%; background: rgba(0,0,0,0.6);
    z-index: 2000; align-items: center; justify-content: center;
}
.modal-overlay.active { display: flex; }
.modal {
    background: var(--white); border-radius: var(--radius);
    max-width: 700px; width: 90%; max-height: 85vh;
    overflow-y: auto; padding: 32px; position: relative;
}
.modal-close {
    position: absolute; top: 16px; right: 16px;
    background: var(--light-gray); border: none; width: 36px; height: 36px;
    border-radius: 50%; font-size: 1.2rem; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: var(--transition);
}
.modal-close:hover { background: var(--red); color: var(--white); }
