/* Eco-farm Poultry Hub - Main Stylesheet */
:root {
    --primary: #15803D;
    --primary-dark: #166534;
    --primary-light: #DCFCE7;
    --secondary: #EA580C;
    --secondary-dark: #C2410C;
    --secondary-light: #FFEDD5;
    --accent: #F97316;
    --white: #FFFFFF;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;
    --font-primary: 'SUSE', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'SUSE', 'Inter', sans-serif;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    --shadow-md: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
    --shadow-xl: 0 25px 50px -12px rgba(0,0,0,0.25);
    --radius: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --glass-bg: rgba(255,255,255,0.85);
    --glass-border: rgba(255,255,255,0.3);
    --glass-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

/* Base */
html { scroll-behavior: smooth; height: 100%; }
body { font-family: var(--font-primary); color: var(--gray-800); overflow-x: hidden; min-height: 100%; display: flex; flex-direction: column; }
.site-wrapper { display: flex; flex-direction: column; flex: 1 0 auto; }
.footer { margin-top: auto; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 700; }
a { color: var(--primary); text-decoration: none; transition: all 0.3s ease; }
a:hover { color: var(--primary-dark); }
img { max-width: 100%; height: auto; }
::selection { background: var(--primary); color: var(--white); }

/* Glassmorphism */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
}
.glass-dark {
    background: rgba(17,24,39,0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.1);
}

/* Cards */
.card-premium {
    background: var(--white);
    border: none;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}
.card-premium:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}
.card-premium .card-img-top {
    height: 240px;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.card-premium:hover .card-img-top {
    transform: scale(1.05);
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border: none;
    border-radius: var(--radius);
    padding: 0.75rem 2rem;
    font-weight: 600;
    color: var(--white);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(220,38,38,0.3);
    color: var(--white);
}
.btn-outline-primary {
    background: transparent;
    border: 2px solid var(--primary);
    border-radius: var(--radius);
    padding: 0.75rem 2rem;
    font-weight: 600;
    color: var(--primary);
    transition: all 0.3s ease;
}
.btn-outline-primary:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}
.btn-secondary {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    border: none;
    border-radius: var(--radius);
    padding: 0.75rem 2rem;
    font-weight: 600;
    color: var(--white);
    transition: all 0.3s ease;
}
.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(22,163,74,0.3);
    color: var(--white);
}
.btn-white {
    background: var(--white);
    border: none;
    border-radius: var(--radius);
    padding: 0.75rem 2rem;
    font-weight: 600;
    color: var(--primary);
    transition: all 0.3s ease;
}
.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--primary-dark);
}

/* Navbar */
.navbar-main {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    padding: 0;
}
.navbar-main .navbar-brand {
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
}
.navbar-main .navbar-brand img { height: 45px; width: auto; }
.navbar-main .nav-link {
    color: var(--gray-700);
    font-weight: 500;
    padding: 1.5rem 1rem !important;
    transition: all 0.3s ease;
    position: relative;
}
.navbar-main .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--primary);
    transition: width 0.3s ease;
}
.navbar-main .nav-link:hover::after,
.navbar-main .nav-link.active::after { width: 80%; }
.navbar-main .nav-link:hover,
.navbar-main .nav-link.active { color: var(--primary); }
.navbar-main.scrolled {
    box-shadow: var(--shadow);
}
.navbar-main .dropdown-menu {
    border: none;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 0.5rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}
.navbar-main .dropdown-item {
    border-radius: var(--radius);
    padding: 0.6rem 1rem;
    transition: all 0.2s ease;
}
.navbar-main .dropdown-item:hover {
    background: var(--primary-light);
    color: var(--primary);
}

/* Hero Slider */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Background slides — crossfade + zoom */
.hero-bg-slides {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-bg-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease;
    will-change: opacity, transform;
}
.hero-bg-slide.active {
    opacity: 1;
    z-index: 1;
    animation: heroZoom 8s ease forwards;
}
@keyframes heroZoom {
    0%   { transform: scale(1); }
    100% { transform: scale(1.06); }
}

.hero-section .hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.2) 100%);
    z-index: 1;
}

/* Glass content panel */
.hero-section .hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}
.hero-content-inner {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: var(--radius-xl);
    padding: 2.5rem 3rem;
    max-width: 680px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.12);
    color: var(--white);
}
.hero-content-inner .hero-badge {
    display: inline-block;
    background: rgba(220,38,38,0.85);
    color: var(--white);
    padding: 0.4rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    backdrop-filter: blur(4px);
}

/* Slide text — animated in/out */
.hero-slides-text {
    position: relative;
}
.hero-slide-text {
    display: none;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.hero-slide-text.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}
.hero-slide-text h1 {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
    text-shadow: 0 2px 12px rgba(0,0,0,0.25);
}
.hero-slide-text .hero-subtitle {
    font-size: 1.15rem;
    opacity: 0.92;
    margin-bottom: 1.75rem;
    max-width: 520px;
    line-height: 1.5;
}

/* Slider controls */
.hero-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 5;
    font-size: 1.1rem;
}
.hero-control:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-50%) scale(1.08);
}
.hero-prev  { left: 1.5rem; }
.hero-next  { right: 1.5rem; }

/* Dots */
.hero-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.6rem;
    z-index: 5;
}
.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.45);
    border: none;
    cursor: pointer;
    transition: all 0.35s ease;
    padding: 0;
}
.hero-dot.active {
    background: var(--primary);
    width: 30px;
    border-radius: 5px;
}
.hero-dot:hover {
    background: rgba(255,255,255,0.7);
}
.hero-dot.active:hover {
    background: var(--primary);
}

/* Hero responsive */
@media (max-width: 991.98px) {
    .hero-slide-text h1 { font-size: 2.5rem; }
    .hero-content-inner { padding: 2rem 2rem; max-width: 560px; }
    .hero-control { width: 40px; height: 40px; font-size: 0.95rem; }
    .hero-prev { left: 1rem; }
    .hero-next { right: 1rem; }
}
@media (max-width: 767.98px) {
    .hero-section { min-height: 80vh; }
    .hero-slide-text h1 { font-size: 1.8rem; }
    .hero-slide-text .hero-subtitle { font-size: 1rem; }
    .hero-content-inner { padding: 1.5rem; max-width: 100%; }
    .hero-content-inner .hero-badge { font-size: 0.75rem; padding: 0.3rem 1rem; }
    .hero-control { width: 36px; height: 36px; font-size: 0.85rem; }
    .hero-prev { left: 0.75rem; }
    .hero-next { right: 0.75rem; }
    .hero-dots { bottom: 1.25rem; gap: 0.5rem; }
    .hero-dot { width: 8px; height: 8px; }
    .hero-dot.active { width: 24px; }
}
@media (max-width: 575.98px) {
    .hero-section { min-height: 70vh; }
    .hero-slide-text h1 { font-size: 1.4rem; }
    .hero-slide-text .hero-subtitle { font-size: 0.9rem; margin-bottom: 1.25rem; }
    .hero-content-inner { padding: 1.25rem; border-radius: var(--radius-lg); }
    .hero-content-inner .hero-badge { font-size: 0.7rem; margin-bottom: 0.75rem; }
    .hero-slide-text .btn-lg { font-size: 0.85rem; padding: 0.45rem 1rem; }
    .hero-control { display: none; }
    .hero-dots { bottom: 1rem; }
}

/* Sections */
.section-padding { padding: 6rem 0; }
.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--gray-900);
}
.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto 3rem;
}
.section-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    margin: 1rem auto 1.5rem;
    border-radius: 2px;
}

/* Why Choose Us */
.why-card {
    text-align: center;
    padding: 2rem;
    border-radius: var(--radius-xl);
    background: var(--white);
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    height: 100%;
}
.why-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}
.why-card .icon-box {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-light), var(--secondary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--primary);
    transition: all 0.4s ease;
}
.why-card:hover .icon-box {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    transform: rotateY(180deg);
}

/* Stats Counter */
.stats-section {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    padding: 5rem 0;
}
.stats-section .stat-item { text-align: center; }
.stats-section .stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
    line-height: 1;
    margin-bottom: 0.5rem;
}
.stats-section .stat-label {
    font-size: 1.125rem;
    opacity: 0.85;
}

/* Products */
.product-card {
    border: none;
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all 0.4s ease;
    height: 100%;
    background: var(--white);
    box-shadow: var(--shadow);
}
.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}
.product-card .product-image {
    height: 260px;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.product-card:hover .product-image { transform: scale(1.08); }
.product-card .product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary);
    color: var(--white);
    padding: 0.25rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}
.product-card .card-body { padding: 1.5rem; }
.product-card .product-category {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    font-weight: 600;
}
.product-card .card-title {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}
.product-card .product-weight {
    color: var(--gray-500);
    font-size: 0.875rem;
}
.product-card .product-footer {
    border-top: 1px solid var(--gray-100);
    padding-top: 1rem;
    margin-top: 1rem;
}

/* Farm-to-Factory Process */
.process-timeline {
    position: relative;
    padding: 2rem 0;
}
.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary), var(--secondary));
    border-radius: 2px;
}
.process-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 3rem;
    position: relative;
}
.process-step:nth-child(odd) {
    flex-direction: row-reverse;
    text-align: right;
}
.process-step .step-number {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    box-shadow: 0 0 0 4px var(--white), 0 0 0 6px var(--primary);
}
.process-step .step-content {
    width: 45%;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}
.process-step .step-content:hover { box-shadow: var(--shadow-lg); }

/* Testimonials */
.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    height: 100%;
}
.testimonial-card:hover { box-shadow: var(--shadow-lg); }
.testimonial-card .quote-icon {
    color: var(--primary-light);
    font-size: 3rem;
    margin-bottom: 0.5rem;
}
.testimonial-card .testimonial-text {
    font-style: italic;
    color: var(--gray-600);
    line-height: 1.7;
}
.testimonial-card .testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}
.testimonial-card .author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

/* Partners */
.partner-logo {
    height: 80px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.4s ease;
}
.partner-logo:hover {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.1);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 50%, #14532D 100%);
    color: var(--white);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: bgMove 20s linear infinite;
}
@keyframes bgMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

/* Footer */
.footer {
    background: var(--gray-900);
    color: var(--gray-300);
    padding: 5rem 0 0;
}
.footer h5 {
    color: var(--white);
    font-family: var(--font-primary);
    font-weight: 700;
    margin-bottom: 1.5rem;
}
.footer a { color: var(--gray-400); }
.footer a:hover { color: var(--primary); }
.footer .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    margin-right: 0.5rem;
    transition: all 0.3s ease;
}
.footer .social-links a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}
.footer .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 1.5rem 0;
    margin-top: 3rem;
}
.footer .newsletter-input {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--white);
    border-radius: var(--radius);
    padding: 0.75rem 1rem;
}
.footer .newsletter-input::placeholder { color: var(--gray-500); }

/* Breadcrumbs */
.breadcrumb-section {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    padding: 8rem 0 3rem;
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.breadcrumb-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary), var(--accent), var(--primary));
}
.breadcrumb-section h1 { font-size: 2.5rem; font-weight: 800; }
.breadcrumb-section .breadcrumb { background: transparent; margin: 0; }
.breadcrumb-section .breadcrumb-item,
.breadcrumb-section .breadcrumb-item a { color: rgba(255,255,255,0.8); }
.breadcrumb-section .breadcrumb-item.active { color: var(--white); }
.breadcrumb-section .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.5); }

/* Gallery */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    cursor: pointer;
}
.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item .gallery-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item .gallery-overlay i {
    color: var(--white);
    font-size: 2rem;
}

/* Team */
.team-card {
    text-align: center;
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    height: 100%;
}
.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}
.team-card .team-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.5rem;
    border: 4px solid var(--primary-light);
    transition: all 0.4s ease;
}
.team-card:hover .team-avatar {
    border-color: var(--primary);
    transform: scale(1.05);
}
.team-card .team-name {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1.125rem;
}
.team-card .team-position {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.875rem;
}

/* Certification badges */
.cert-badge {
    text-align: center;
    padding: 2rem;
    border-radius: var(--radius-xl);
    background: var(--white);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    height: 100%;
}
.cert-badge:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.cert-badge img { height: 80px; margin-bottom: 1rem; }

/* Blog */
.blog-card {
    border: none;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    height: 100%;
}
.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}
.blog-card .blog-image {
    height: 240px;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.blog-card:hover .blog-image { transform: scale(1.05); }
.blog-card .card-body { padding: 1.5rem; }
.blog-card .blog-meta {
    font-size: 0.85rem;
    color: var(--gray-500);
}
.blog-card .blog-meta i { margin-right: 0.3rem; }
.blog-card .blog-category {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary);
    padding: 0.2rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Sidebar */
.sidebar-widget {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    box-shadow: var(--shadow);
    margin-bottom: 1.5rem;
}
.sidebar-widget .widget-title {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-light);
}

/* Back to top */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    cursor: pointer;
    z-index: 999;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
}
.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(37,211,102,0.4);
    transition: all 0.3s ease;
    animation: pulse-green 2s infinite;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    color: var(--white);
    box-shadow: 0 8px 20px rgba(37,211,102,0.5);
}
@keyframes pulse-green {
    0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.4); }
    70% { box-shadow: 0 0 0 15px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--gray-900);
    color: var(--white);
    padding: 1rem 0;
    z-index: 9998;
    display: none;
}

/* Newsletter popup */
.newsletter-popup {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 99999;
    align-items: center;
    justify-content: center;
}
.newsletter-popup .popup-content {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 3rem;
    max-width: 500px;
    width: 90%;
    position: relative;
    text-align: center;
}
.newsletter-popup .popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--gray-500);
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Filter buttons */
.filter-btn {
    background: var(--gray-100);
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    color: var(--gray-600);
    transition: all 0.3s ease;
    cursor: pointer;
}
.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    color: var(--white);
}

/* Product Detail */
.product-detail-gallery .main-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--radius-xl);
}
.product-detail-gallery .thumb-images img {
    width: 100px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}
.product-detail-gallery .thumb-images img:hover,
.product-detail-gallery .thumb-images img.active {
    border-color: var(--primary);
}

/* News Detail */
.news-detail .featured-image {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: var(--radius-xl);
}
.news-detail .content { line-height: 1.8; }
.news-detail .content p { margin-bottom: 1.5rem; }
.news-detail .content img { border-radius: var(--radius); margin: 1.5rem 0; }

/* Recipe Card */
.recipe-card {
    border: none;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    height: 100%;
}
.recipe-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}
.recipe-card .recipe-image {
    height: 240px;
    object-fit: cover;
}
.recipe-card .recipe-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--gray-500);
}
.recipe-card .recipe-meta i { margin-right: 0.3rem; }

/* ===== Hamburger Animation ===== */
.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
    position: relative;
    z-index: 1060;
    transition: all 0.3s ease;
}
.navbar-toggler:focus {
    box-shadow: none;
}
.navbar-toggler .navbar-toggler-icon {
    background-image: none;
    width: 24px;
    height: 2px;
    background: var(--gray-800);
    position: relative;
    transition: all 0.3s ease;
    display: block;
}
.navbar-toggler .navbar-toggler-icon::before,
.navbar-toggler .navbar-toggler-icon::after {
    content: '';
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gray-800);
    position: absolute;
    transition: all 0.3s ease;
}
.navbar-toggler .navbar-toggler-icon::before {
    top: -7px;
}
.navbar-toggler .navbar-toggler-icon::after {
    top: 7px;
}
.navbar-toggler.active .navbar-toggler-icon {
    background: transparent;
}
.navbar-toggler.active .navbar-toggler-icon::before {
    top: 0;
    transform: rotate(45deg);
    background: var(--primary);
}
.navbar-toggler.active .navbar-toggler-icon::after {
    top: 0;
    transform: rotate(-45deg);
    background: var(--primary);
}

/* ===== Mobile Offcanvas Menu ===== */
.offcanvas#mobileMenu {
    width: 300px;
    background: var(--white);
}
.offcanvas#mobileMenu .offcanvas-header {
    background: var(--white);
    padding: 1rem 1.25rem;
}
.offcanvas#mobileMenu .offcanvas-header .navbar-brand {
    display: flex;
    align-items: center;
}
.offcanvas#mobileMenu .offcanvas-header .navbar-brand img { height: 40px; width: auto; }
.offcanvas#mobileMenu .offcanvas-header .btn-close {
    font-size: 0.9rem;
}
.offcanvas#mobileMenu .offcanvas-body {
    background: var(--white);
}
.offcanvas#mobileMenu .navbar-nav {
    flex-direction: column;
    width: 100%;
}
.offcanvas#mobileMenu .nav-link {
    padding: 1rem 1.25rem;
    font-weight: 500;
    color: var(--gray-700);
    border-bottom: 1px solid var(--gray-100);
    transition: all 0.2s ease;
}
.offcanvas#mobileMenu .nav-link:hover,
.offcanvas#mobileMenu .nav-link.active {
    color: var(--primary);
    background: var(--primary-light);
}
.offcanvas#mobileMenu .dropdown-menu {
    position: static !important;
    border: none;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
    margin: 0;
    background: var(--gray-50);
}
.offcanvas#mobileMenu .dropdown-menu .dropdown-item {
    padding: 0.8rem 1.25rem 0.8rem 2.5rem;
    font-size: 0.95rem;
    border-bottom: 1px solid var(--gray-100);
    color: var(--gray-600);
}
.offcanvas#mobileMenu .dropdown-menu .dropdown-item:hover {
    background: var(--primary-light);
    color: var(--primary);
}
.offcanvas#mobileMenu .dropdown-toggle::after {
    float: right;
    margin-top: 0.5rem;
}
.offcanvas-backdrop {
    background: rgba(0,0,0,0.6);
}

/* Responsive */
@media (max-width: 991.98px) {
    .section-padding { padding: 4rem 0; }
    .section-subtitle { font-size: 1rem; }
    .process-timeline::before { left: 30px; }
    .process-step { flex-direction: column !important; text-align: left !important; padding-left: 60px; }
    .process-step .step-number { left: 0; transform: none; }
    .process-step .step-content { width: 100%; }
    .product-image { height: 220px; }
    .blog-image { height: 200px; }
    .recipe-image { height: 200px; }
    .card-premium .card-img-top { height: 200px; }
}
@media (max-width: 767.98px) {
    .section-title { font-size: 1.8rem; }
    .stats-section .stat-number { font-size: 2.5rem; }
    .stats-section { padding: 3.5rem 0; }
    .cta-section { padding: 3.5rem 0; }
    .navbar-main .navbar-brand img { height: 35px; }
    .navbar-main .nav-link { padding: 0.75rem 1rem !important; }
    .gallery-item img { height: 200px; }
    .product-detail-gallery .main-image { height: 300px; }
    .product-image { height: 200px; }
    .blog-image { height: 180px; }
    .recipe-image { height: 180px; }
    .card-premium .card-img-top { height: 180px; }
    .why-card h5 { font-size: 1.05rem; }
    .product-card .card-title { font-size: 1rem; }
    .blog-card .card-title { font-size: 1rem; }
    .whatsapp-float { width: 50px; height: 50px; font-size: 1.5rem; bottom: 1.5rem; left: 1.5rem; }
    .back-to-top { width: 40px; height: 40px; font-size: 1rem; bottom: 1.5rem; right: 1.5rem; }
}
@media (max-width: 575.98px) {
    .breadcrumb-section { padding: 6rem 0 2rem; }
    .breadcrumb-section h1 { font-size: 1.8rem; }
    .section-padding { padding: 3rem 0; }
    .section-title { font-size: 1.5rem; }
    .section-subtitle { font-size: 0.95rem; }
    .product-image { height: 180px; }
    .blog-image { height: 160px; }
    .recipe-image { height: 160px; }
    .card-premium .card-img-top { height: 160px; }
    .gallery-item img { height: 160px; }
    .stats-section { padding: 3rem 0; }
    .cta-section { padding: 3rem 0; }
    .stats-section .stat-number { font-size: 2rem; }
    .why-card h5 { font-size: 1rem; }
    .team-card .team-name { font-size: 1rem; }
    .newsletter-popup .modal-content { padding: 2rem 1.5rem; }
    .product-detail-gallery .main-image { height: 250px; }
}
@media (max-width: 400px) {
    .section-title { font-size: 1.3rem; }
    .product-image { height: 160px; }
    .blog-image, .recipe-image, .card-premium .card-img-top { height: 140px; }
}
