/* ============================================
   SENTOLIA-STYLE OLIVE OIL EXPORT WEBSITE
   Clean, Modern, Professional Design
   ============================================ */

/* CSS Variables - Sentolia Color Palette */
:root {
    /* Primary Colors */
    --olive-dark: #4a5d23;           /* Dark Olive Green - Main brand color */
    --olive-medium: #6b7c32;         /* Medium Olive Green */
    --olive-light: #8fa33b;          /* Light Olive Green */
    
    /* Background Colors */
    --bg-white: #ffffff;             /* Clean White */
    --bg-cream: #faf8f5;             /* Light Cream/Beige */
    --bg-light: #f5f5f0;             /* Very Light Natural */
    
    /* Text Colors */
    --text-dark: #2c2c2c;            /* Dark text */
    --text-medium: #555555;          /* Medium text */
    --text-light: #777777;           /* Light text */
    
    /* Accent Colors */
    --gold-accent: #c9a227;          /* Gold for premium feel */
    --earth-brown: #8b6914;          /* Earth brown */
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
}

/* Smaller login link in navbar */
.nav-login-link {
    border: 1px solid var(--olive-dark);
    border-radius: 999px;
    padding: 6px 14px !important;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.nav-login-link:hover {
    background-color: var(--olive-dark);
    color: var(--bg-white) !important;
}

/* ============================================
   BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Almarai', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
    padding-top: 80px; /* For fixed navbar */
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Almarai', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 700;
    color: var(--olive-dark);
    line-height: 1.3;
}

p {
    color: var(--text-medium);
    font-size: 1rem;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
}

/* ============================================
   NAVIGATION - STICKY NAVBAR
   ============================================ */
.navbar {
    background-color: rgba(255, 255, 255, 0.35) !important;
    box-shadow: var(--shadow-sm);
    padding: 15px 0;
    transition: all 0.3s ease;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.navbar.scrolled {
    padding: 10px 0;
    background-color: rgba(255, 255, 255, 0.9) !important;
    box-shadow: var(--shadow-md);
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--olive-dark) !important;
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-brand img {
    height: 50px;
    width: auto;
}

.navbar-nav .nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 10px 18px !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--olive-dark);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 60%;
}

.navbar-nav .nav-link:hover {
    color: var(--olive-dark) !important;
}

.navbar-toggler {
    border: 2px solid var(--olive-dark);
    padding: 8px 12px;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%234a5d23' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ============================================
   HERO SECTION WITH VIDEO
   ============================================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    overflow: hidden;
    background-color: var(--bg-cream);
}

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

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.6));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: left;
    color: var(--bg-white);
    padding: 40px;
    margin-top: 20px;
    margin-left: 20px;
    max-width: 600px;
}

.hero-content.animate-fade-in {
    opacity: 1;
    transform: translateY(25px);
    animation: heroFadeInUp 1.4s ease-out 0.2s forwards;
}

.hero-content h1 {
    font-size: 3.2rem;
    color: var(--bg-white);
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
}

.hero-content .tagline {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 40px;
    letter-spacing: 2px;
}

/* Ensure all hero text and buttons show in white on top of the video/image */
.hero-content p,
.hero-content a,
.hero-content .btn {
    color: var(--bg-white) !important;
}

.hero-play-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background-color: var(--olive-dark);
    color: var(--bg-white);
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.hero-play-btn:hover {
    background-color: var(--olive-medium);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    color: var(--bg-white);
}

.hero-play-btn i {
    font-size: 1.2rem;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: var(--bg-white);
    font-size: 2rem;
    animation: bounce 2s infinite;
}

.animate-on-scroll {
    opacity: 1;
    transform: translateY(30px);
    transition: transform 0.9s ease-out;
}

.animate-on-scroll.animated {
    transform: translateY(0);
}

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

/* Services (/Services) hero background - smaller height */
.hero-section.products-hero {
    min-height: 10vh;
    padding-top: 50px;
    padding-bottom: 50px;
}

.products-hero {
    color: #ffffff;
}

.products-hero h1,
.products-hero p,
.products-hero .lead {
    color: #ffffff;
}

/* ============================================
   SECTION STYLES
   ============================================ */
.section {
    padding: 100px 0;
}

.section-light {
    background-color: var(--bg-white);
}

.section-cream {
    background-color: var(--bg-cream);
}

.section-olive {
    background-color: var(--olive-dark);
    color: var(--bg-white);
}

.section-olive h2,
.section-olive h3,
.section-olive h4 {
    color: var(--bg-white);
}

.section-olive p {
    color: rgba(255, 255, 255, 0.9);
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--olive-dark);
}

.section-olive .section-title::after {
    background-color: var(--gold-accent);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
}

.text-center .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

/* ============================================
   OUR STORY SECTION
   ============================================ */
.story-section {
    padding: 100px 0;
}

.story-content h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.story-content p {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 20px;
}

.story-stats {
    display: flex;
    gap: 50px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--olive-dark);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
}

/* ============================================
   PRODUCTS SECTION
   ============================================ */
.products-section {
    background-color: var(--bg-cream);
}

.product-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.product-list li {
    padding: 15px 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

.product-list li i {
    color: var(--olive-dark);
    font-size: 1.2rem;
}

/* Home categories hover/active styles */
#home-category-list .home-category-item {
    transition: color 0.25s ease, transform 0.25s ease;
}

#home-category-list .home-category-item:hover,
#home-category-list .home-category-item.active {
    color: var(--olive-dark);
    transform: translateX(-4px);
}

/* Animation when filtering products in home carousel */
.products-filter-anim {
    animation: fadeInUp 0.7s ease-out;
}

.product-card {
    background: var(--bg-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.product-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.product-card-body {
    padding: 25px;
}

.product-card h5 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.product-card p {
    font-size: 0.95rem;
}

/* ============================================
   QUALITY SECTION
   ============================================ */
.quality-section {
    background-color: var(--bg-white);
}

.quality-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.quality-item {
    background: var(--bg-cream);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
}

.quality-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.quality-icon {
    width: 80px;
    height: 80px;
    background: var(--olive-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.quality-icon i {
    font-size: 2rem;
    color: var(--bg-white);
}

.quality-item h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.quality-item p {
    font-size: 0.95rem;
}

/* ============================================
   CERTIFICATIONS SECTION
   ============================================ */
.certifications-section {
    background-color: var(--olive-dark);
    color: var(--bg-white);
}

.cert-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 50px;
}

.cert-logo {
    background: var(--bg-white);
    padding: 20px 30px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

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

.cert-logo img {
    height: 60px;
    width: auto;
    filter: grayscale(0);
}

/* ============================================
   WHY TUNISIAN SECTION
   ============================================ */
.why-tunisian-section {
    background-color: var(--bg-cream);
    position: relative;
}

.why-tunisian-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/images/olive-pattern.png') repeat;
    opacity: 0.03;
}

.tunisian-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.tunisian-stat {
    text-align: center;
    padding: 40px 20px;
    background: var(--bg-white);
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
}

.tunisian-stat .number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--olive-dark);
    line-height: 1;
}

.tunisian-stat .label {
    font-size: 1rem;
    color: var(--text-medium);
    margin-top: 15px;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
    background-color: var(--bg-white);
    text-align: center;
}

.contact-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact-section .lead {
    font-size: 1.2rem;
    color: var(--text-medium);
    margin-bottom: 40px;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-control {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 15px 20px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--olive-dark);
    box-shadow: 0 0 0 3px rgba(74, 93, 35, 0.1);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    font-weight: 600;
    padding: 15px 35px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.btn-olive {
    background-color: var(--olive-dark);
    color: var(--bg-white);
    border: none;
}

.btn-olive:hover {
    background-color: var(--olive-medium);
    color: var(--bg-white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-outline-olive {
    background-color: transparent;
    color: var(--olive-dark);
    border: 2px solid var(--olive-dark);
}

.btn-outline-olive:hover {
    background-color: var(--olive-dark);
    color: var(--bg-white);
    transform: translateY(-3px);
}

.btn-white {
    background-color: var(--bg-white);
    color: var(--olive-dark);
    border: none;
}

.btn-white:hover {
    background-color: var(--bg-cream);
    color: var(--olive-dark);
    transform: translateY(-3px);
}

.btn-lg {
    padding: 18px 45px;
    font-size: 1rem;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    background-color: var(--olive-dark);
    color: var(--bg-white);
    padding: 80px 0 30px;
}

.footer-brand {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--bg-white);
    margin-bottom: 20px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--bg-white);
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--bg-white);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact i {
    color: var(--gold-accent);
    font-size: 1.1rem;
    margin-top: 3px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--gold-accent);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    margin-top: 50px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-15px);
    }
    60% {
        transform: translateX(-50%) translateY(-8px);
    }
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.animate-fade-in {
    animation: fadeIn 1s ease-out;
}

.animate-fade-in-up {
    animation: fadeInUp 1s ease-out;
}

.animate-delay-1 {
    animation-delay: 0.2s;
}

.animate-delay-2 {
    animation-delay: 0.4s;
}

.animate-delay-3 {
    animation-delay: 0.6s;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-olive {
    color: var(--olive-dark) !important;
}

.text-gold {
    color: var(--gold-accent) !important;
}

.bg-olive {
    background-color: var(--olive-dark) !important;
}

.bg-cream {
    background-color: var(--bg-cream) !important;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 992px) {
    body {
        padding-top: 70px;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .quality-grid {
        grid-template-columns: 1fr;
    }
    
    .tunisian-stats {
        grid-template-columns: 1fr;
    }
    
    .story-stats {
        flex-wrap: wrap;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 60px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-content .tagline {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .navbar-nav .nav-link {
        padding: 12px 0 !important;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }
    
    .footer-col {
        margin-bottom: 40px;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 0.85rem;
    }
    
    .btn-lg {
        padding: 15px 35px;
    }
}

/* ============================================
   CUSTOM SCROLLBAR
   ============================================ */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-cream);
}

::-webkit-scrollbar-thumb {
    background: var(--olive-dark);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--olive-medium);
}

/* ============================================
   PAGE HEADER (For internal pages)
   ============================================ */
.page-header {
    background-color: var(--olive-dark);
    padding: 80px 0;
    text-align: center;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/images/olive-leaves-pattern.png') repeat;
    opacity: 0.05;
}

.page-header h1 {
    color: var(--bg-white);
    font-size: 3rem;
    margin-bottom: 15px;
    position: relative;
}

.page-header .breadcrumb {
    justify-content: center;
    background: transparent;
    margin-bottom: 0;
    position: relative;
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.7);
}

.page-header .breadcrumb-item.active {
    color: var(--bg-white);
}

/* ============================================
   FEATURE CARDS (Services/Products)
   ============================================ */
.feature-card {
    background: var(--bg-white);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 90px;
    height: 90px;
    background: var(--bg-cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: var(--olive-dark);
}

.feature-icon i {
    font-size: 2.2rem;
    color: var(--olive-dark);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon i {
    color: var(--bg-white);
}

.feature-card h5 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--text-light);
}

/* ============================================
   NEWS/BLOG CARDS
   ============================================ */
.news-card {
    background: var(--bg-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    height: 100%;
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.news-card .news-image {
    position: relative;
    overflow: hidden;
}

.news-card .news-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.1);
}

.news-card .news-content {
    padding: 25px;
}

.news-card .news-date {
    font-size: 0.85rem;
    color: var(--olive-dark);
    font-weight: 600;
    margin-bottom: 10px;
}

.news-card h5 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

.news-card p {
    font-size: 0.95rem;
    color: var(--text-light);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonial-card {
    background: var(--bg-white);
    border-radius: 15px;
    padding: 40px;
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
}

.testimonial-card::before {
    content: '"';
    font-family: 'Playfair Display', serif;
    font-size: 6rem;
    color: var(--olive-dark);
    opacity: 0.1;
    position: absolute;
    top: 10px;
    left: 30px;
    line-height: 1;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-medium);
    margin-bottom: 25px;
    position: relative;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h6 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.testimonial-author span {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* ============================================
   PRIVATE LABEL SECTION
   ============================================ */
.private-label-section {
    background: linear-gradient(135deg, var(--olive-dark) 0%, #3a4a1c 100%);
    color: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.private-label-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: rgba(255, 255, 255, 0.03);
    transform: rotate(15deg);
}

.private-label-content {
    position: relative;
    z-index: 2;
}

.private-label-features {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.private-label-features li {
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.05rem;
}

.private-label-features li i {
    color: var(--gold-accent);
    font-size: 1.2rem;
}
