/********** Template CSS - WILLARD'S FRESH MEATS **********/

/* ===== CSS VARIABLES & GLOBAL STYLES ===== */
:root {
    /* Primary Brand Colors */
    --primary: #84060a;        /* Rich tomato red - for meats */
    --primary-color: #c52d2f;  /* Alternative red variant */
    
    /* Secondary & Accent Colors */
    --secondary: #18a100;      /* Seafoam green - for freshness/vegetables */
    --secondary-color: #18a100; /* Charcoal variant for some pages */
    
    /* Neutral Colors */
    --light: #F8F8F8;          /* Clean white/off-white */
    --light-color: #f8f9fa;    /* Light background variant */
    --dark: #2D2D2D;           /* Dark charcoal for text */
    --dark-color: #1a202c;     /* Dark variant */
    --neutral: #EDEDED;        /* Subtle background color */
    
    /* Accent Colors */
    --accent: #FFB347;         /* Warm orange accent for highlights */
    --accent-color: #f8b229;   /* Yellow accent variant */
}

/* ===== GLOBAL STYLES ===== */
body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: var(--dark);
}

/* ===== UTILITY CLASSES ===== */
/* Color Utilities */
.bg-primary {
    background-color: var(--primary) !important;
}

.bg-secondary {
    background-color: var(--secondary) !important;
}

.bg-accent {
    background-color: var(--accent) !important;
}

.bg-light {
    background-color: var(--light) !important;
}

.bg-dark {
    background-color: var(--dark) !important;
}

.bg-neutral {
    background-color: var(--neutral) !important;
}

.text-primary {
    color: var(--primary) !important;
}

.text-secondary {
    color: var(--secondary) !important;
}

.text-accent {
    color: var(--accent) !important;
}

.text-light {
    color: var(--light) !important;
}

.text-dark {
    color: var(--dark) !important;
}

.text-light-on-dark {
    color: var(--light) !important;
}

.text-dark-on-light {
    color: var(--dark) !important;
}

.border-primary {
    border-color: var(--primary) !important;
}

.border-secondary {
    border-color: var(--secondary) !important;
}

.border-neutral {
    border-color: var(--neutral) !important;
}

/* Section Styling */
.section-title {
    position: relative;
    margin-bottom: 60px;
}

.section-title h6 {
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-title h1:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -15px;
    width: 80px;
    height: 3px;
    background-color: var(--primary);
}

.text-center .section-title h1:after {
    left: 50%;
    transform: translateX(-50%);
}

/* ===== BUTTONS ===== */
.btn {
    font-family: 'Roboto', sans-serif;
    letter-spacing: 1px;
    font-weight: 700;
    transition: .5s;
}

.btn-primary {
    background: var(--primary);
    border-color: var(--primary);
    color: #FFFFFF;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

/* .btn-primary:hover {
    background: #A51C22;
    border-color: #A51C22;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(132, 6, 10, 0.3);
} */

.btn-secondary {
    background: var(--secondary);
    border-color: var(--secondary);
    color: #FFFFFF;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #267349;
    border-color: #267349;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(24, 161, 0, 0.3);
}

.btn-accent {
    background: var(--accent);
    border-color: var(--accent);
    color: #FFFFFF;
    transition: all 0.3s ease;
}

.btn-accent:hover {
    background: #E69A40;
    border-color: #E69A40;
    color: #FFFFFF;
    transform: translateY(-2px);
}

/* Special Button Styles */
.order-now-btn {
    background: linear-gradient(135deg, var(--secondary), #18a100);
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.order-now-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(197, 45, 47, 0.3);
    color: white;
}

.filter-btn {
    background: white;
    border: 2px solid #e9ecef;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    margin: 0 5px 10px;
}

.filter-btn:hover, .filter-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* Square Buttons */
.btn-square {
    width: 36px;
    height: 36px;
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}

.btn-sm-square {
    width: 28px;
    height: 28px;
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}

.btn-lg-square {
    width: 46px;
    height: 46px;
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    transition: all 0.3s ease;
    border-radius: 0;
}

.back-to-top.show {
    opacity: 1;
}

/* ===== NAVIGATION ===== */
.navbar {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

.navbar-dark {
    background-color: rgba(132, 6, 10, 0.95) !important;
    backdrop-filter: blur(10px);
}

.navbar-dark .navbar-nav .nav-link {
    padding: 30px 15px;
    font-size: 16px;
    font-weight: 600;
    color: #FFFFFF;
    text-transform: uppercase;
    transition: .5s;
}

.nav-item .nav-link {
    font-weight: 500;
    padding: 8px 20px !important;
    margin: 0 5px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.nav-item .nav-link:hover,
.nav-item .nav-link.active,
.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    background-color: var(--secondary);
    color: white !important;
}

.sticky-top.navbar-dark .navbar-nav .nav-link {
    padding: 20px 15px;
}

@media (max-width: 991.98px) {
    .navbar-dark .navbar-nav .nav-link {
        padding: 10px;
    }
}

/* ===== HERO & CAROUSEL SECTIONS ===== */
/* Hero/Carousel Common */
.hero-section, .carousel-item {
    height: 90vh;
    min-height: 600px;
    position: relative;
}

.hero-section {
    padding: 120px 0;
    color: white;
}

.bg-hero, .hero-section {
    background-size: cover;
    background-position: center center;
}

.bg-hero {
    background: url(../img/carousel-1.jpg) top right no-repeat;
}

.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
}

.carousel-item img {
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.carousel-caption {
    z-index: 1;
    pointer-events: none;
}

.carousel-caption div {
    pointer-events: auto;
}

.carousel-caption h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
    color: white;
}

.carousel-caption h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--accent);
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    margin: 0 20px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background-color: var(--primary);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}

@media (max-width: 576px) {
    .carousel-caption h4 {
        font-size: 18px;
        font-weight: 500 !important;
    }

    .carousel-caption h1 {
        font-size: 30px;
        font-weight: 600 !important;
    }
}

/* ===== BANNER SECTION ===== */
.banner-section {
    position: relative;
}

@media (min-width: 991.98px) {
    .banner {
        position: relative;
        margin-top: -90px;
        z-index: 1;
    }
}

.banner-section .col-md-6:first-child .bg-primary {
    background: linear-gradient(rgba(10, 149, 0, 0.9), rgba(197, 45, 47, 0.9)), url('img/fresh-meats-bg.jpg') no-repeat center left / cover;
}

.banner-section .col-md-6:last-child .bg-secondary {
    background: linear-gradient(rgba(0, 145, 12, 0.9), rgba(45, 55, 72, 0.9)), url('img/products-bg.jpg') no-repeat center / cover;
}

.banner-section .bg-primary,
.banner-section .bg-secondary {
    padding: 50px !important;
    height: 350px !important;
    transition: transform 0.3s ease;
}

.banner-section .bg-primary:hover,
.banner-section .bg-secondary:hover {
    transform: translateY(-10px);
}

.banner-section a {
    position: relative;
    display: inline-block;
    transition: all 0.3s ease;
}

.banner-section a:hover {
    color: var(--accent) !important;
    transform: translateX(5px);
}

/* ===== ABOUT SECTION ===== */
.about-section img {
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.about-section img:hover {
    transform: scale(1.02);
}

.about i,
.service-item i {
    background-image: linear-gradient(var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: .5s;
}

/* ===== SERVICES ===== */
.service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid var(--neutral);
    background: var(--light);
    border-radius: 10px;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--primary);
    color: var(--light);
    background: var(--primary) !important;
}

.service-item:hover i {
    background-image: linear-gradient(var(--light), var(--light));
}

.service-item:hover h4 {
    color: var(--light);
    transition: .5s;
}

.service-item i {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

/* ===== PRODUCTS ===== */
/* Product Cards */
.product-card, .product-item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.product-item {
    padding: 20px;
    margin-bottom: 30px;
}

.product-card:hover,
.product-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--primary);
}

/* Product Image */
.product-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.product-carousel .product-item img,
.product-card .product-image img {
    height: 200px;
    object-fit: contain;
    transition: transform 0.3s ease;
    width: 100%;
}

.product-carousel .product-item:hover img,
.product-card:hover .product-image img {
    transform: scale(1.05);
}

/* Product Info */
.product-info {
    padding: 25px;
}

.product-category {
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.product-carousel::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 55%;
    bottom: 0;
    left: 0;
    background: url(../img/bg-product-1.png) left bottom no-repeat, 
                url(../img/bg-product-2.png) right bottom no-repeat;
    background-size: contain;
    background-color: rgba(24, 161, 0, 0.05);
    z-index: -1;
}

.product-carousel .owl-nav {
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
}

.product-carousel .owl-nav .owl-prev,
.product-carousel .owl-nav .owl-next{
    position: relative;
    width: 55px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: #FFFFFF;
    font-size: 22px;
    border: 1.5px solid var(--primary);
    transition: .5s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.product-carousel .owl-nav .owl-prev:hover,
.product-carousel .owl-nav .owl-next:hover {
    color: #FFFFFF;
    background: var(--primary);
}

/* Product Actions */
.product-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.product-actions .btn {
    flex: 1;
    padding: 10px;
    font-size: 0.9rem;
}

.btn-action a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.btn-action a:hover {
    transform: scale(1.1);
}

.product-item .btn-action {
    position: absolute;
    width: 100%;
    bottom: -40px;
    left: 0;
    opacity: 0;
    transition: .5s;
}

.product-item:hover .btn-action {
    bottom: 0;
    opacity: 1;
}

.product-item h5 {
    transition: .5s;
    color: var(--dark);
}

.product-item:hover h5 {
    opacity: 0;
}

/* ===== VALUE CARDS (About Page) ===== */
.value-card, .feature-card, .contact-card, .stats-box {
    background: white;
    border-radius: 10px;
    padding: 40px 30px;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.value-card:hover,
.feature-card:hover,
.contact-card:hover,
.stats-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--primary);
}

.value-card i,
.feature-card i,
.contact-card i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
}

/* ===== TIMELINE (About Page) ===== */
.timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    background-color: var(--primary);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
    border-radius: 3px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
}

.timeline-item:nth-child(odd) {
    left: 0;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-content {
    padding: 20px 30px;
    background-color: white;
    position: relative;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.timeline-content::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    background-color: white;
    top: 30px;
    border-radius: 50%;
    z-index: 1;
    transform: rotate(45deg);
}

.timeline-item:nth-child(even) .timeline-content::after {
    left: -10px;
    right: auto;
}

.timeline-date {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 10px;
    display: block;
}

/* ===== PROCESS STEPS ===== */
.process-step {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 auto 20px;
}

/* ===== TEAM CARDS ===== */
.team-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.team-card img {
    height: 250px;
    object-fit: cover;
    width: 100%;
}

.team-info {
    padding: 20px;
}

/* ===== CONTACT PAGE ===== */
.contact-form {
    background: white;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.form-control, .form-select {
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.25rem rgba(197, 45, 47, 0.25);
}

.form-label {
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.contact-info {
    background: linear-gradient(135deg, var(--secondary), var(--dark));
    border-radius: 10px;
    padding: 40px;
    color: white;
    height: 100%;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.contact-info-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.contact-info-icon i {
    font-size: 1.5rem;
    color: white;
}

.contact-info-content h5 {
    color: white;
    margin-bottom: 5px;
}

.contact-info-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* Business Hours */
.business-hours {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.hour-item {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #e9ecef;
}

.hour-item:last-child {
    border-bottom: none;
}

.hour-day {
    font-weight: 600;
    color: var(--secondary-color);
}

.hour-time {
    color: var(--primary);
    font-weight: 500;
}

/* FAQ Section */
.faq-item {
    border: 1px solid #e9ecef;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    background: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--secondary-color);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 500px;
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* Emergency Contact */
.emergency-contact {
    background: linear-gradient(135deg, var(--primary), #a82426);
    color: white;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    margin-top: 30px;
}

.emergency-contact h4 {
    color: white;
    margin-bottom: 15px;
}

.emergency-contact .phone-number {
    font-size: 1.8rem;
    font-weight: 700;
    display: block;
    margin-bottom: 15px;
}

/* ===== SOCIAL LINKS ===== */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-link {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-5px);
}

/* ===== TESTIMONIALS ===== */
.bg-testimonial {
    background: url(../img/testimonial.jpg) top center no-repeat;
    background-size: cover;
}

.testimonial-carousel {
    background: rgba(132, 6, 10, 0.9);
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: calc(100% + 46px);
    height: 46px;
    top: calc(50% - 23px);
    left: -23px;
    display: flex;
    justify-content: space-between;
    z-index: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: var(--light);
    font-size: 22px;
    transition: .5s;
    border: 2px solid var(--primary);
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--light);
    background: var(--primary);
}

.testimonial-carousel .owl-item img {
    width: 120px;
    height: 120px;
    border: 3px solid var(--light);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* ===== BLOG ===== */
.blog-item img {
    transition: .5s;
}

.blog-item:hover img {
    transform: scale(1.2);
}

.blog-overlay {
    position: absolute;
    padding: 30px;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    background: linear-gradient(rgba(132, 6, 10, 0), rgba(132, 6, 10, 0.85));
    z-index: 1;
}

/* ===== BACKGROUND SECTIONS ===== */
.bg-light-section {
    background-color: #f8f9fa;
    position: relative;
}

.bg-vegetable {
    background: linear-gradient(rgba(24, 161, 0, 0.1), rgba(24, 161, 0, 0.1)), url(../img/vegetable.png) bottom right no-repeat;
    background-size: contain;
}

.bg-fruit {
    background: linear-gradient(rgba(255, 179, 71, 0.1), rgba(255, 179, 71, 0.1)), url(../img/fruit.png) bottom right no-repeat;
    background-size: contain;
}

/* ===== BADGES & TAGS ===== */
.quality-badge,
.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--primary);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.certification-badge {
    display: inline-block;
    background-color: var(--light);
    color: var(--primary);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin: 5px;
    border: 1px solid var(--primary);
}

.quality-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #e8f5e9;
    color: #2e7d32;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    margin-right: 5px;
}

/* ===== BREADCRUMB NAV ===== */
.breadcrumb-nav {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 15px 30px;
    border-radius: 50px;
    display: inline-block;
}

.breadcrumb-nav a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.breadcrumb-nav a:hover {
    color: var(--accent);
}

.breadcrumb-nav .active {
    color: var(--accent);
    font-weight: 600;
}

/* ===== FOOTER ===== */
.bg-footer {
    background: linear-gradient(#2D2D2D, #2D2D2D), url(../img/footer.png) center bottom no-repeat;
    background-size: contain;
    padding-top: 80px;
    padding-bottom: 30px;
}

.bg-footer a {
    transition: all 0.3s ease;
}

.bg-footer a:hover {
    color: var(--accent) !important;
    padding-left: 10px;
}

@media (min-width: 991.98px) {
    .bg-footer {
        margin-top: 90px !important;
    }
}

/* ===== STATS BOX ===== */
.stats-box {
    text-align: center;
}

.stats-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.stats-label {
    color: var(--dark);
    font-size: 1rem;
    font-weight: 500;
}

/* ===== IMAGE STYLES ===== */
.farm-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.farm-image:hover {
    transform: scale(1.02);
}

/* ===== NUTRITION INFO ===== */
.nutrition-info {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
}

.nutrition-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #dee2e6;
}

.nutrition-item:last-child {
    border-bottom: none;
}

/* ===== SHADOWS ===== */
.shadow-subtle {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08) !important;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .carousel-item,
    .hero-section {
        height: 70vh;
        min-height: 500px;
    }
    
    .carousel-caption h1,
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .carousel-caption h3 {
        font-size: 1.2rem;
    }
    
    .section-title h1 {
        font-size: 2rem;
    }
    
    .product-card {
        margin-bottom: 30px;
    }
    
    .filter-btn {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .contact-info {
        padding: 30px 20px;
    }
    
    .contact-info-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-info-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .timeline::after {
        left: 31px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }
    
    .timeline-item:nth-child(even) {
        left: 0;
    }
    
    .timeline-content::after {
        left: -10px;
        right: auto;
    }
}

@media (max-width: 991.98px) {
    .banner {
        position: relative;
        margin-top: 0;
    }
}

/* ===== TEXT UTILITIES ===== */
.text-justify {
    text-align: justify !important;
    text-justify: inter-word;
}